json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "properties": { "include_lowercase": { "description": "Include lowercase characters", "type": "boolean" }, "include_numbers": { "description": "Include numbers", "type": "boolean" }, "include_symbols": { "description": "Include symbols", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase characters", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_813db764
{ "properties": { "cuisine": { "description": "The desired cuisine of the recipe", "type": "string" }, "dietary_restrictions": { "description": "Any dietary restrictions to consider", "items": { "type": "string" }, "type": "array" }, "keywords": { "description": "Keywords related to the desired recipe", "items": { "type": "string" }, "type": "array" }, "max_prep_time": { "description": "The maximum preparation time in minutes", "type": "integer" } }, "required": [ "keywords" ], "type": "object" }
search_recipe_8096f36e
{ "$id": "https://json.schemastore.org/esmrc.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cjs": { "description": "A boolean or object for toggling CJS features in ESM", "default": true, "oneOf": [ { "type": "boolean", "default": true }, { "type": "object", "properties": { "cache": { "type": "boolean", "description": "A boolean for storing ES modules in require.cache", "default": true }, "esModule": { "type": "boolean", "description": "A boolean for __esModule interoperability", "default": true }, "extensions": { "type": "boolean", "description": "A boolean for respecting require.extensions in ESM", "default": true }, "mutableNamespace": { "type": "boolean", "description": "A boolean for importing named exports of CJS modules", "$comment": "https://ponyfoo.com/articles/es6-modules-in-depth#import-all-the-things", "default": true }, "namedExports": { "type": "boolean", "description": "A boolean for importing named exports of CJS modules", "$comment": "https://ponyfoo.com/articles/es6-modules-in-depth#importing-named-exports", "default": true }, "paths": { "type": "boolean", "description": "A boolean for following CJS path rules in ESM", "$comment": "https://github.com/nodejs/node-eps/blob/master/002-es-modules.md#432-removal-of-non-local-dependencies", "default": true }, "vars": { "type": "boolean", "description": "A boolean for __dirname, __filename, and require in ESM", "default": true }, "dedefault": { "type": "boolean", "description": "A boolean for requiring ES modules without the dangling require().default", "default": false }, "topLevelReturn": { "type": "boolean", "description": "A boolean for top-level return support", "default": false } } } ] }, "mainFields": { "type": "array", "description": "An array of fields checked when importing a package", "default": ["main"], "uniqueItems": true, "items": { "type": "string", "description": "Fields from package.json" } }, "mode": { "type": "string", "description": "A string describing the mode in which to detect ESM module files", "default": "auto", "oneOf": [ { "const": "auto", "description": "'auto' detect files with import, import.meta, export, 'use module', or .mjs as ESM", "$comment": "https://github.com/tc39/proposal-modules-pragma" }, { "const": "all", "description": "'all' files besides those with 'use script' or .cjs are treated as ESM" }, { "const": "strict", "description": "'strict to treat only .mjs files as ESM" } ] }, "await": { "type": "boolean", "description": "A boolean for top-level await in modules without ESM exports. (Node 10+)", "$comment": "https://github.com/tc39/proposal-top-level-await", "default": false }, "force": { "type": "boolean", "description": "A boolean to apply these options to all module loads", "default": false }, "wasm": { "type": "boolean", "description": "A boolean for WebAssembly module support. (Node 8+)", "$comment": "https://nodejs.org/api/globals.html#globals_webassembly", "default": false }, "cache": { "type": "boolean", "description": "[dev] A boolean for toggling cache creation or a cache directory path", "default": true }, "sourceMap": { "type": "boolean", "description": "[dev] A boolean for including inline source maps", "default": false } }, "title": "Configuration files for the esm module/package in Node.js" }
esmrc
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "Configuration for a piece of video content, over a stream.", "properties": { "audio_codec": { "description": "The audio codec.", "type": "string" }, "bitrate": { "description": "The bitrate of the video", "type": "number" }, "filesize": { "description": "The size of the video, in bytes.", "type": "number" }, "height": { "description": "The height of the video.", "type": "number" }, "provider": { "description": "The provider of the video.", "type": "string" }, "stream_type": { "description": "The type of video (e.g. mp4).", "type": "string" }, "url": { "description": "Where to get the stream from.", "type": "string" }, "video_codec": { "description": "The video codec.", "type": "string" }, "width": { "description": "The width of the video.", "type": "number" } }, "title": "A stream of video.", "type": "object" }
wp_121_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/mimmi20/ua-result/master/schema/headers.json", "definitions": { "headers": { "type": "object", "properties": { "user-agent": { "type": "string" } } } }, "$ref": "#/definitions/headers" }
o60854
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Get a Thing by Id", "descrption": "This is used for retrieved thing response", "type": "object", "properties": { "id": { "descrption": "The thing's id remembered by annie.", "type": "string" }, "value": { "descrption": "The thing", "type": "string" } }, "required": [ "id", "thing" ] }
o89498
{ "properties": { "date": { "description": "The date of the event", "type": "string" }, "end_time": { "description": "The end time of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "date", "start_time", "end_time" ], "type": "object" }
create_calendar_event_60914aa2
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Referral Codes", "description": "A map of programs to referral codes.", "type": "object", "patternProperties": { "^[a-zA-Z0-9-]{1,64}$": { "type": "string", "title": "Referral Code", "description": "The referral code associated with the programId key" } }, "additionalProperties": false }
o72194
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "image": { "$ref": "#/definitions/image" } }, "required": [ "body", "image" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "image": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "credit": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "high_resolution_url": { "_format": "uri", "description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.", "type": "string" }, "url": { "_format": "uri", "description": "URL to the image. The image should be in a suitable resolution for display on the page.", "type": "string" } }, "required": [ "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "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": [ "take_part" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "take_part" ], "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" }
o21395
{ "properties": { "nginx": { "properties": { "bridge": { "default": true, "description": "Whether to use BRIDGE networking mode for Docker container. By default, this is true and BRIDGE mode networking is used.", "type": "boolean" }, "configUrl": { "description": "URL to Nginx configuration that needs to be hosted (e.g., load balancing, reverse proxy, etc). Can NOT be combined with contentUrl or contentDir.", "type": "string" }, "contentDir": { "description": "Path of directory, relative to sandbox, containing HTML code. Can NOT be combined with configUrl.", "type": "string" }, "contentUrl": { "description": "URL of content that needs to be hosted. Can NOT be combined with configUrl.", "type": "string" }, "cpus": { "default": 1, "description": "CPU shares to allocate to each nginx instance.", "minimum": 1, "type": "number" }, "https-redirect": { "default": false, "description": "Whether Marathon-lb should redirect HTTP traffic to HTTPS. This requires 'virtual-host' to be set. By default, this is false.", "type": "boolean" }, "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 nginx task.", "minimum": 256.0, "type": "number" }, "minimumHealthCapacity": { "default": 0.5, "description": "Minimum health capacity.", "minimum": 0, "type": "number" }, "name": { "default": "nginx", "description": "Name for this nginx application", "type": "string" }, "role": { "default": "*", "description": "Deploy nginx only on nodes with this role.", "type": "string" }, "virtual-host": { "description": "The virtual host address to configure for integration with Marathon-lb.", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" } }, "type": "object" }
o90797
{ "type": "object", "properties": { "val": { "type": "number" }, "valNullable": { "type": [ "null", "number" ] }, "valUndef": { "type": "number" }, "valOpt": { "type": "number" }, "valTrue": { "enum": [ true ], "type": "boolean" }, "valTrueOpt": { "enum": [ true ], "type": "boolean" }, "valTrueOrNull": { "anyOf": [ { "enum": [ true ], "type": "boolean" }, { "type": "null" } ] } }, "required": [ "val", "valNullable", "valTrueOrNull", "valTrue" ], "$schema": "http://json-schema.org/draft-04/schema#" }
o25962
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "anitya_response": { "type": "object", "description": "Anitya maps upstream components to downstream packages", "properties": {}, "additionalProperties": true }, "changes": { "type": "object", "description": "Breakdown of changed lines per given file", "properties": { "lines": { "type": "array", "items": { "type": "string" } }, "file": { "type": "string" } }, "required": [ "lines", "file" ], "additionalProperties": false }, "diff": { "type": "object", "description": "Information about changed files and lines", "properties": { "files": { "type": "integer" }, "lines": { "type": "integer" }, "changes": { "type": "array", "items": { "$ref": "#/definitions/changes" } } }, "required": [ "files", "lines", "changes" ], "additionalProperties": false }, "downstream": { "type": "object", "description": "Patch information about downstream SRPM", "properties": { "diff": { "$ref": "#/definitions/diff" }, "patch_files": { "type": "array", "items": { "type": "string" } }, "package": { "type": "string" } }, "required": [ "diff", "patch_files", "package" ], "additionalProperties": false }, "downstream_usage_summary": { "type": "object", "properties": { "package_names": { "type": "array", "items": { "type": "string" } }, "registered_srpms": { "type": "array", "items": { "$ref": "#/definitions/srpm_record" } }, "all_rhn_channels": { "type": "array", "items": { "type": "string" } }, "all_rhsm_content_sets": { "type": "array", "items": { "type": "string" } } }, "required": [ "package_names", "registered_srpms", "all_rhn_channels", "all_rhsm_content_sets" ], "additionalProperties": false }, "pulp_cdn_response": { "type": "object", "description": "The Pulp CDN handles Red Hat's SRPM publication", "properties": { "srpm_filename": { "type": "string" } }, "required": [ "srpm_filename" ], "additionalProperties": true }, "srpm_record": { "type": "object", "description": "Summary of Red Hat tracked SRPM", "properties": { "package_name": { "type": "string" }, "epoch": { "type": "number" }, "version": { "type": "string" }, "release": { "type": "string" }, "patch_count": { "type": "number" }, "modified_line_count": { "type": "number" }, "modified_file_count": { "type": "number" }, "published_in": { "type": "array", "items": { "type": "string" } }, "tags": { "type": "array", "items": { "type": "string" } }, "architectures": { "type": "array", "items": { "type": "string" } }, "hashes": { "type": "object", "properties": { "md5": { "type": "string" }, "sha1": { "type": "string" }, "sha256": { "type": "string" } } } }, "required": [ "package_name", "epoch", "version", "release", "patch_count", "modified_line_count", "modified_file_count" ], "additionalProperties": false }, "toolchain_responses": { "type": "object", "properties": { "redhat_anitya": { "$ref": "#/definitions/anitya_response" }, "brew": { "type": "array", "items": { "$ref": "#/definitions/downstream" } }, "pulp_cdn": { "type": "array", "items": { "$ref": "#/definitions/pulp_cdn_response" } } }, "additionalProperties": false } }, "type": "object", "description": "Result of DownstreamUsage worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "status": { "type": "string", "enum": [ "success", "error" ] }, "details": { "$ref": "#/definitions/toolchain_responses" }, "summary": { "$ref": "#/definitions/downstream_usage_summary" } }, "required": [ "status", "summary" ], "additionalProperties": false, "title": "downstream_usage_result-v2-1-0" }
o42056
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentCondition": { "description": "Information about the condition of a component.", "properties": { "error": { "description": "Condition error code for a component. For example, a health check error code.", "type": "string" }, "message": { "description": "Message about the condition for a component. For example, information about a health check.", "type": "string" }, "status": { "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".", "type": "string" }, "type": { "description": "Type of condition for a component. Valid value: \"Healthy\"", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentStatus": { "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info.", "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" }, "conditions": { "description": "List of component conditions observed", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "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": [ "ComponentStatus" ], "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" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ComponentStatus", "version": "v1" } ] }, "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": "Status of all the conditions for the component as a list of ComponentStatus 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": [ "v1" ], "type": [ "string", "null" ] }, "items": { "description": "List of ComponentStatus objects.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentStatus" }, "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": [ "ComponentStatusList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ComponentStatusList", "version": "v1" } ] }
kb_103_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://localhost:3000/schemas/get-device-request.json#", "title": "Device", "type": "object", "additionalProperties": false, "required": [ "id" ], "properties": { "id": { "type": "string", "minLength": 1 } } }
o20466
{ "properties": { "destination": { "description": "The destination of the package", "type": "string" }, "dimensions": { "properties": { "height": { "description": "The height of the package in centimeters", "type": "number" }, "length": { "description": "The length of the package in centimeters", "type": "number" }, "width": { "description": "The width of the package in centimeters", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "weight": { "description": "The weight of the package in kilograms", "type": "number" } }, "required": [ "weight", "destination", "dimensions" ], "type": "object" }
calculate_shipping_cost_69ff7613
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://github.com/route4me/json-schemas/blob/master/note.dtd", "type": "object", "title": "Note", "properties": { "note_id": { "type": "integer", "title": "Note ID", "description": "the id of the note in the system" }, "route_id": { "type": "string", "title": "Route ID", "description": "Route ID" }, "route_destination_id": { "type": "integer", "title": "Route Destination ID", "description": "Route Destination ID" }, "upload_id": { "type": "string", "title": "Upload ID", "description": "The unique and randomly generated ID of the file attachment that is associated with this note" }, "ts_added": { "type": "integer", "title": "TS Added", "description": "The unix timestamp when the note was added" }, "lat": { "type": "number", "minimum": -90, "maximum": 90, "title": "Latitude", "description": "Latitude" }, "lng": { "type": "number", "minimum": -180, "maximum": 180, "title": "Longitude", "description": "Longitude" }, "activity_type": { "type": "string", "title": "Activity Type", "description": "Activity Type" }, "contents": { "type": "string", "title": "Contents", "description": "Contents" }, "upload_type": { "type": "string", "enum": [ "DRIVER_IMG", "VEHICLE_IMG", "ADDRESS_IMG", "CSV_FILE", "XLS_FILE", "ANY_FILE" ], "title": "Upload Type", "description": "Upload Type" }, "upload_url": { "type": "string", "title": "Upload url", "description": "The direct CDN URL of the attachment uploaded with a note" }, "upload_extension": { "type": "string", "title": "Upload Extension", "description": "The extension of the attachment ('pdf', 'csv' etc)" }, "device_type": { "type": "string", "title": "Device Type", "description": "Device type ('web', 'phone', 'ipad', 'android phone', 'android tablet' etc)" } }, "required": [ "route_destination_id" ] }
o71409
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Generated from kata/spec/fixtures/examples/servers.json with shasum 568cdaa5cef13f7b5ece95a9dc6d65460d8362ba", "type": "object", "required": [ "servers" ], "properties": { "servers": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "required": [ "id", "links", "name" ], "properties": { "id": { "type": "string", "default": "616fb98f-46ca-475e-917e-2563e5a8cd19" }, "links": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "required": [ "href", "rel" ], "properties": { "href": { "type": "string", "default": "http://openstack.example.com/v2/openstack/servers/616fb98f-46ca-475e-917e-2563e5a8cd19" }, "rel": { "type": "string", "default": "self" } } } }, "name": { "type": "string", "default": "new-server-test" } } } } } }
o59669
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceRecipeId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "deviceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "deviceDescription": { "type": "string", "maxLength": 32767 }, "tags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "required": [ "key", "value" ], "additionalProperties": false } }, "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" ] } }, "required": [ "name", "dataType" ], "additionalProperties": false } }, "deviceClass": { "type": "string", "enum": [ "standalone", "master", "owned", "floating", "virtual" ] }, "masterId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } } }
o6195
{ "properties": { "date": { "description": "The date for tracking", "format": "date", "type": "string" }, "meals": { "description": "The meals consumed on the specified date", "items": { "properties": { "calories": { "description": "The calories consumed in the meal", "type": "number" }, "name": { "description": "The name of the meal", "type": "string" } }, "required": [ "name", "calories" ], "type": "object" }, "type": "array" } }, "required": [ "date", "meals" ], "type": "object" }
track_calories_ecbd9766
{ "properties": { "include_numbers": { "description": "Include numbers in the password", "type": "boolean" }, "include_special_characters": { "description": "Include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The desired length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_password_dc7141c8
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "http://sport-archive.com/input-schema/activities#", "properties": { "activityTaskList": { "description": "Tasklist (queue) where task are stacked and polled from", "maxLength": 64, "minLength": 3, "pattern": "^[\\w\\.\\- ]+$", "type": "string" }, "class": { "description": "Class name implementing this activity", "maxLength": 256, "minLength": 8, "pattern": "^[\\w\\-]+$", "type": "string" }, "description": { "description": "Activity description", "maxLength": 256, "minLength": 1, "type": "string" }, "file": { "description": "File implementing this activity", "maxLength": 1024, "minLength": 16, "pattern": "^[\\w\\-\\./]+\\.php+$", "type": "string" }, "heartbeatTimeout": { "description": "Max time between heartbeat", "maximum": 99999999, "minimum": 1, "type": "integer" }, "name": { "description": "Activity name", "maxLength": 64, "minLength": 3, "type": "string" }, "scheduleToCloseTimeout": { "description": "Max time from schedule to close for a task", "maximum": 31536000, "minimum": 1, "type": "integer" }, "scheduleToStartTimeout": { "description": "Max time from schedule to start for a task", "maximum": 31536000, "minimum": 1, "type": "integer" }, "startToCloseTimeout": { "description": "Max time from start to close for a task", "maximum": 31536000, "minimum": 1, "type": "integer" }, "version": { "description": "Activity version", "maxLength": 32, "minLength": 1, "pattern": "^[\\w\\.\\- ]+$", "type": "string" } }, "required": [ "name", "version", "description", "file", "class", "activityTaskList", "scheduleToStartTimeout", "scheduleToCloseTimeout", "startToCloseTimeout", "heartbeatTimeout" ], "title": "Schemas for activities items in activities array of main config file", "type": "object" }
o63939
{ "properties": { "acl": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "alg": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "appflowexport": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "contentinspectionlog": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dateformat": { "enum": [ "MMDDYYYY", "DDMMYYYY", "YYYYMMDD" ], "type": "string" }, "dns": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "domainresolvenow": { "type": "boolean" }, "domainresolveretry": { "type": "integer" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "ip": { "readonly": true, "type": "string" }, "lbvservername": { "type": "string" }, "logfacility": { "enum": [ "LOCAL0", "LOCAL1", "LOCAL2", "LOCAL3", "LOCAL4", "LOCAL5", "LOCAL6", "LOCAL7" ], "type": "string" }, "loglevel": { "enum": [ "ALL", "EMERGENCY", "ALERT", "CRITICAL", "ERROR", "WARNING", "NOTICE", "INFORMATIONAL", "DEBUG", "NONE" ], "type": "object" }, "lsn": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "maxlogdatasizetohold": { "type": "integer" }, "name": { "type": "string" }, "netprofile": { "type": "string" }, "serverdomainname": { "type": "string" }, "serverip": { "type": "string" }, "serverport": { "type": "integer" }, "sslinterception": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "subscriberlog": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "tcp": { "enum": [ "NONE", "ALL" ], "type": "string" }, "tcpprofilename": { "type": "string" }, "timezone": { "enum": [ "GMT_TIME", "LOCAL_TIME" ], "type": "string" }, "transport": { "enum": [ "TCP", "UDP" ], "type": "string" }, "urlfiltering": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "userdefinedauditlog": { "enum": [ "YES", "NO" ], "type": "string" } }, "title": "auditsyslogaction", "type": "object" }
o30059
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ServiceRendered", "type": "object", "properties": { "serviceId": { "description": "ID of service", "type": "string", "minLength": 1 }, "serviceName": { "description": "Name of service", "type": "string", "minLength": 1 }, "serviceType": { "description": "Type of the service", "type": "string", "enum": [ "Full", "EFAP", "Supplemental", "Non-food", "Baby", "Other" ] }, "servicePounds": { "description": "Number of pounds of service rendered", "type": "number" } }, "required": [ "serviceId", "serviceName", "serviceType", "servicePounds" ] }
o53621
{ "additionalProperties": false, "definitions": { "browser_statement": { "additionalProperties": false, "properties": { "name": { "description": "Browser name, avoid using unnecessary English (e.g. prefer 'Chrome Android' over 'Chrome for Android').", "type": "string" }, "pref_url": { "description": "URL of the page where feature flags can be changed (e.g. 'about:config' or 'chrome://flags').", "type": "string" }, "releases": { "additionalProperties": { "$ref": "#/definitions/release_statement" }, "type": "object" } }, "required": [ "name", "releases" ], "type": "object" }, "browsers": { "additionalProperties": false, "properties": { "chrome": { "$ref": "#/definitions/browser_statement" }, "chrome_android": { "$ref": "#/definitions/browser_statement" }, "edge": { "$ref": "#/definitions/browser_statement" }, "firefox": { "$ref": "#/definitions/browser_statement" }, "firefox_android": { "$ref": "#/definitions/browser_statement" }, "ie": { "$ref": "#/definitions/browser_statement" }, "nodejs": { "$ref": "#/definitions/browser_statement" }, "opera": { "$ref": "#/definitions/browser_statement" }, "opera_android": { "$ref": "#/definitions/browser_statement" }, "qq_android": { "$ref": "#/definitions/browser_statement" }, "safari": { "$ref": "#/definitions/browser_statement" }, "safari_ios": { "$ref": "#/definitions/browser_statement" }, "samsunginternet_android": { "$ref": "#/definitions/browser_statement" }, "uc_android": { "$ref": "#/definitions/browser_statement" }, "uc_chinese_android": { "$ref": "#/definitions/browser_statement" }, "webview_android": { "$ref": "#/definitions/browser_statement" } }, "type": "object" }, "release_statement": { "additionalProperties": false, "properties": { "engine": { "description": "Name of the browser's underlying engine.", "enum": [ "Blink", "EdgeHTML", "Gecko", "Presto", "Trident", "WebKit", "V8" ], "type": "string" }, "engine_version": { "description": "Version of the engine corresponding to the browser version.", "type": "string" }, "release_date": { "description": "Release date", "format": "date", "type": "string" }, "release_notes": { "description": "A link to the release notes or changelog for a given release.", "format": "uri", "type": "string" }, "status": { "description": "The status of the given browser release (e.g. current, retired, beta, nightly).", "enum": [ "retired", "current", "exclusive", "beta", "nightly", "esr", "planned" ], "type": "string" } }, "type": "object" } }, "properties": { "browsers": { "$ref": "#/definitions/browsers" } }, "type": "object" }
o60099
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JS Options Schema", "description": "Defines how squatch js interacts.", "type": "object", "properties": { "widget": { "type": "object", "properties": { "defaultWidgetType": { "type": "string", "title": "Default Widget Type", "default": "REFERRER_WIDGET" } } }, "conversionUrls": { "type": "array", "items": { "type": "string" } }, "widgetUrlMappings": { "type": "array", "items": { "type": "object", "properties": { "url": { "type": "string" }, "showAsCTA": { "type": "boolean" }, "displayOnLoad": { "type": "boolean" }, "widgetType": { "type": "string" } } } }, "fuelTankAutofillUrls": { "type": "array", "items": { "type": "object", "properties": { "url": { "type": "string" }, "formSelector": { "type": "string" } } } } } }
o72184
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "description": { "description": "The description of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "description", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate to be applied", "type": "number" } }, "required": [ "client_name", "items" ], "type": "object" }
generate_invoice_67a84e80
{ "properties": { "date": { "description": "The date of the meeting", "type": "string" }, "location": { "description": "The location of the meeting", "type": "string" }, "participants": { "description": "The participants of the meeting", "items": { "type": "string" }, "type": "array" }, "time": { "description": "The time of the meeting", "type": "string" }, "title": { "description": "The title of the meeting", "type": "string" } }, "required": [ "title", "participants", "date", "time" ], "type": "object" }
schedule_meeting_9ed64d34
{ "definitions": { "StackedRequisitionPack": { "$ref": "#" } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "largeImageUrl": { "type": "string" }, "isStack": { "type": "boolean" }, "isFeatured": { "type": "boolean" }, "isNew": { "type": "boolean" }, "creditPrice": { "type": "integer" }, "isPurchasableWithCredits": { "type": "boolean" }, "isPurchasableFromMarketplace": { "type": "boolean" }, "xboxMarketplaceProductId": { "type": [ "string", "null" ] }, "xboxMarketplaceProductUrl": { "type": [ "string", "null" ] }, "merchandisingOrder": { "type": "integer" }, "flair": { "type": "null" }, "stackedRequisitionPacks": { "type": "array", "items": { "$ref": "#/definitions/StackedRequisitionPack" } }, "id": { "type": "string" }, "contentId": { "type": "string" } }, "required": [ "name", "description", "largeImageUrl", "isStack", "isFeatured", "isNew", "creditPrice", "isPurchasableWithCredits", "isPurchasableFromMarketplace", "xboxMarketplaceProductId", "xboxMarketplaceProductUrl", "merchandisingOrder", "flair", "stackedRequisitionPacks", "id", "contentId" ] }
o5462
{ "additionalProperties": false, "description": "Schema for AMP user identification", "properties": { "ampClientId": { "description": "AMP client ID - unique to AMP user", "maxLength": 128, "type": "string" }, "domainUserid": { "description": "Snowplow domain_userid - tracked if available", "maxLength": 128, "type": [ "string", "null" ] }, "userId": { "description": "User-defined user_id - tracked if available", "maxLength": 255, "type": [ "string", "null" ] } }, "required": [ "ampClientId" ], "self": { "format": "jsonschema", "name": "amp_id", "vendor": "dev.amp.snowplow", "version": "1-0-0" }, "type": "object" }
sp_403_Normalized
{ "title": "featureExpressionInfo", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "An object that defines an expression for per-feature elevation.", "properties": { "expression": { "type": "string", "description": "An [Arcade expression](https://developers.arcgis.com/arcade/) evaluating to a number.", "minLength": 1 }, "title": { "type": "string", "description": "Title of the expression.", "minLength": 1 } }, "required": [ "expression" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "Zero expression", "description": "Do not use geometry.z values", "code": { "featureExpressionInfo": { "expression": "0" } } }, { "title": "Expression with field name", "description": "Elevation from field value without geometry.z", "code": { "featureExpressionInfo": { "expression": "$feature.ELEVATION_FOOT" } } } ] } }
o90201
{ "properties": { "courses": { "items": { "properties": { "credit_hours": { "description": "The number of credit hours for the course", "type": "number" }, "grade": { "description": "The grade earned in the course", "enum": [ "A", "B", "C", "D", "F" ], "type": "string" }, "name": { "description": "The name of the course", "type": "string" } }, "required": [ "name", "credit_hours", "grade" ], "type": "object" }, "type": "array" } }, "required": [ "courses" ], "type": "object" }
calculate_gpa_98fdff57
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "deviceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "deviceDescription": { "type": "string", "maxLength": 32767 }, "tags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "required": [ "key", "value" ], "additionalProperties": false }, "maxItems": 100 }, "attributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "dataType": { "type": "string", "enum": [ "string", "number", "gps", "boolean", "blob" ] }, "contentType": { "type": "string", "maxLength": 64 }, "description": { "type": "string", "maxLength": 32767 }, "attributeTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "system": { "type": "object", "properties": { "aggregation": { "type": "string", "enum": [ "FIRST", "LAST", "COUNT", "MAX", "MIN", "MEDIAN", "MEAN", "SUM", "STD_DEV" ] }, "aggregationOptions": { "type": "array", "items": { "type": "object", "additionalProperties": false }, "additionalProperties": false, "maxItems": 0 }, "childAttributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "mode": { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 } }, "required": [ "name", "mode" ], "additionalProperties": false }, "maxItems": 256 } }, "additionalProperties": false } }, "required": [ "name", "dataType" ], "additionalProperties": false }, "maxItems": 256 }, "deviceClass": { "type": "string", "enum": [ "standalone", "gateway", "peripheral", "floating", "edgeCompute", "system" ] }, "gatewayId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] }, "systemInterval": { "type": "integer", "minimum": 5, "maximum": 3600 }, "keepDuplicates": { "type": "boolean" } }, "additionalProperties": false }
o9836
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "encalgo": { "enum": [ "AES", "3DES", "AES192", "AES256" ], "type": "object" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "hashalgo": { "enum": [ "HMAC_SHA1", "HMAC_SHA256", "HMAC_SHA384", "HMAC_SHA512", "HMAC_MD5" ], "type": "object" }, "ikeretryinterval": { "type": "integer" }, "ikeversion": { "enum": [ "V1", "V2" ], "type": "string" }, "lifetime": { "type": "integer" }, "livenesscheckinterval": { "type": "integer" }, "name": { "type": "string" }, "peerpublickey": { "type": "string" }, "perfectforwardsecrecy": { "enum": [ "ENABLE", "DISABLE" ], "type": "string" }, "privatekey": { "type": "string" }, "psk": { "type": "string" }, "publickey": { "type": "string" }, "replaywindowsize": { "type": "integer" }, "responderonly": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "retransmissiontime": { "type": "integer" } }, "title": "ipsecprofile", "type": "object" }
o30518
{ "additionalProperties": false, "description": "Schema for HTTP header extractor enrichment", "properties": { "enabled": { "type": "boolean" }, "name": { "type": "string" }, "parameters": { "additionalProperties": false, "properties": { "headersPattern": { "type": "string" } }, "required": [ "headersPattern" ], "type": "object" }, "vendor": { "type": "string" } }, "required": [ "name", "vendor", "enabled", "parameters" ], "self": { "format": "jsonschema", "name": "http_header_extractor_config", "vendor": "com.snowplowanalytics.snowplow.enrichments", "version": "1-0-0" }, "type": "object" }
sp_349_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Git LFS HTTPS Batch API Response", "type": "object", "definitions": { "action": { "type": "object", "properties": { "href": { "type": "string" }, "header": { "type": "object", "additionalProperties": true }, "expires_in": { "type": "number", "maximum": 2147483647, "minimum": -2147483647 }, "expires_at": { "type": "string" } }, "required": [ "href" ], "additionalProperties": false } }, "properties": { "transfer": { "type": "string" }, "objects": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "size": { "type": "number", "minimum": 0 }, "authenticated": { "type": "boolean" }, "actions": { "type": "object", "properties": { "download": { "$ref": "#/definitions/action" }, "upload": { "$ref": "#/definitions/action" }, "verify": { "$ref": "#/definitions/action" } }, "additionalProperties": false }, "error": { "type": "object", "properties": { "code": { "type": "number" }, "message": { "type": "string" } }, "required": [ "code", "message" ], "additionalProperties": false } }, "required": [ "oid", "size" ], "additionalProperties": false } }, "message": { "type": "string" }, "request_id": { "type": "string" }, "documentation_url": { "type": "string" } }, "required": [ "objects" ] }
o43298
{ "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": "TokenRequestStatus is the result of a token request.", "properties": { "expirationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "ExpirationTimestamp is the time of expiration of the returned token." }, "token": { "description": "Token is the opaque bearer token.", "type": [ "string", "null" ] } }, "required": [ "token", "expirationTimestamp" ], "type": "object" }
kb_1069_Normalized
{ "id": "https://treeherder.mozilla.org/schemas/v1/resultset-action-message.json#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Notification of triggering jobs in a resultset", "description": "Event is dispatched when user/service issues a (trigger_missing_jobs, trigger_all_talos_jobs) action on a resultset", "type": "object", "properties": { "version": { "title": "Message-format version", "enum": [ 1 ] }, "project": { "title": "Project Name", "description": "Identifier for treeherder project, like `try` or `mozilla-central`.", "type": "string" }, "resultset_id": { "title": "Resultset ID", "description": "Project unique identifier for a resultset", "type": "string" }, "times": { "title": "Times", "description": "Number of times to execute the command for a resultset.", "type": "number" }, "action": { "title": "Action", "description": "Type of action issued on task", "enum": [ "cancel_all", "trigger_missing_jobs", "trigger_all_talos_jobs" ], "type": "string" }, "requester": { "title": "Requester", "description": "The requester of the action (usually an email)", "type": "string" } }, "additionalProperties": true, "required": [ "version", "resultset_id", "project", "action", "requester" ] }
o89230
{ "properties": { "scheme": { "title": "INSPIRE", "type": "string" }, "source": { "enum": [ "INSPIRE", "submitter", "conference", "curator", "publisher", "magpie" ], "type": "string" }, "term": { "enum": [ "Accelerators", "Astrophysics", "Computing", "Data Analysis and Statistics", "Experiment-HEP", "Experiment-Nucl", "General Physics", "Gravitation and Cosmology", "Instrumentation", "Lattice", "Math and Math Physics", "Other", "Phenomenology-HEP", "Theory-HEP", "Theory-Nucl" ], "title": "INSPIRE term", "type": "string" } }, "type": "object" }
o35154
{ "properties": { "point1": { "properties": { "latitude": { "description": "The latitude of point1", "type": "number" }, "longitude": { "description": "The longitude of point1", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }, "point2": { "properties": { "latitude": { "description": "The latitude of point2", "type": "number" }, "longitude": { "description": "The longitude of point2", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" } }, "required": [ "point1", "point2" ], "type": "object" }
calculate_distance_0f21608e
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "government": { "description": "The government associated with this document", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "people": { "description": "People that are associated with this document, typically the person part of a role association", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related_policies": { "$ref": "#/definitions/guid_list" }, "roles": { "description": "Government roles that are associated with this document, typically the role part of a role association", "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topical_events": { "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21174
{ "properties": { "discounts": { "items": { "properties": { "type": { "description": "The type of discount (e.g. percentage, amount)", "type": "string" }, "value": { "description": "The value of the discount", "type": "number" } }, "required": [ "type", "value" ], "type": "object" }, "type": "array" }, "original_price": { "description": "The original price of the product", "type": "number" } }, "required": [ "original_price", "discounts" ], "type": "object" }
calculate_discounted_price_9c048268
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DeploymentStrategy": { "description": "DeploymentStrategy describes how to replace existing pods with new ones.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDeployment", "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." }, "type": { "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateDeployment": { "description": "Spec to control the desired behavior of rolling update.", "properties": { "maxSurge": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." }, "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "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" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "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" }, "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" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", "properties": { "minReadySeconds": { "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", "format": "int32", "type": [ "integer", "null" ] }, "paused": { "description": "Indicates that the deployment is paused.", "type": [ "boolean", "null" ] }, "progressDeadlineSeconds": { "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", "format": "int32", "type": [ "integer", "null" ] }, "replicas": { "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", "format": "int32", "type": [ "integer", "null" ] }, "revisionHistoryLimit": { "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "format": "int32", "type": [ "integer", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels." }, "strategy": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DeploymentStrategy", "description": "The deployment strategy to use to replace existing pods with new ones.", "x-kubernetes-patch-strategy": "retainKeys" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Template describes the pods that will be created." } }, "required": [ "selector", "template" ], "type": "object" }
kb_269_Normalized
{ "id": "http://schemas.taskcluster.net/base/v1/api-reference.json#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "API Reference File", "description": "Reference of methods implemented by API", "type": "object", "properties": { "version": { "description": "API reference version", "enum": [ 0, "0.2.0" ] }, "$schema": { "description": "Link to schema for this reference. That is a link to this very document. Typically used to identify what kind of reference this file is.", "title": "Schema Reference", "type": "string", "_format": "uri" }, "title": { "description": "API title in markdown", "type": "string" }, "description": { "description": "API description in markdown", "type": "string" }, "baseUrl": { "description": "BaseUrl for all _routes_ described in this document", "type": "string", "_format": "uri" }, "entries": { "type": "array", "title": "Entries", "description": "Array of methods in this reference", "items": { "type": "object", "properties": { "type": { "description": "Type of entry, currently only `function`.", "type": "string", "enum": [ "function" ] }, "method": { "description": "HTTP method (verb) used to access the function", "type": "string", "enum": [ "get", "post", "put", "head", "delete", "options", "trace", "copy", "lock", "mkcol", "move", "purge", "propfind", "proppatch", "unlock", "report", "mkactivity", "checkout", "merge", "m-search", "notify", "subscribe", "unsubscribe", "patch", "search" ] }, "route": { "type": "string", "description": "Route for the call, note that arguments wrapped with brackets, like `/v1/user/<userId>/` must be replaced. And the route must be appended to the `baseUrl`" }, "args": { "type": "array", "description": "Arguments from `route` that must be replaced, they'll appear wrapped in brackets inside `route`.", "items": { "type": "string", "description": "Argument that appears in `route` warpped in angle brackets. It must be replaced to call the function." } }, "name": { "type": "string", "description": "Name of the `function` this is a stable identifier for use in auto-generated client libraries" }, "stability": { "title": "Stability-Level", "description": "Stability level of the API", "type": "string", "enum": [ "deprecated", "experimental", "stable" ] }, "scopes": { "type": "array", "description": "List of scope-sets of which the client must satisfy at least one of the sets of scopes. Not provided if authentication isn't required.", "items": { "type": "array", "description": "A set of scopes that grants access if all the scopes in the set is satisfied. Scopes must be composed of printable ASCII characters and spaces.", "items": { "type": "string", "description": "Scope identifier", "pattern": "^[\\x20-\\x7e]*" } } }, "input": { "type": "string", "_format": "uri", "description": "JSON schema for input, if input is taken otherwise not present." }, "output": { "type": "string", "_format": "uri", "description": "JSON schema for output, if output is provided otherwise not present." }, "title": { "type": "string", "description": "Title of API entry" }, "description": { "type": "string", "description": "Description (ie. documentation) for the API entry" } }, "additionalProperties": false, "required": [ "type", "method", "route", "args", "name", "stability", "title", "description" ] } } }, "additionalProperties": false, "required": [ "version", "$schema", "title", "description", "baseUrl", "entries" ] }
o36457
{ "title": "Invocation manifest for fMRIPREP: A Robust Preprocessing Pipeline for fMRI Data", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "skip-bids-validation": { "type": "boolean", "default": true }, "task-id": { "type": "string", "default": "" }, "echo-idx": { "type": "string", "default": "" }, "anat-only": { "type": "boolean", "default": false }, "error-on-aroma-warnings": { "type": "boolean", "default": false }, "ignore": { "type": "string", "enum": [ "", "fieldmaps", "slicetiming", "sbref" ], "default": "" }, "longitudinal": { "type": "boolean", "default": false }, "t2s-coreg": { "type": "boolean", "default": false }, "bold2t1w-dof": { "type": "integer", "enum": [ 6, 9, 12 ], "default": 6 }, "output-spaces": { "type": "string", "default": "MNI152NLin2009cAsym" }, "force-bbr": { "type": "boolean", "default": false }, "force-no-bbr": { "type": "boolean", "default": false }, "medial-surface-nan": { "type": "boolean", "default": false }, "dummy-scans": { "type": "integer", "default": 0 }, "use-aroma": { "type": "boolean", "default": false }, "aroma-melodic-dimensionality": { "type": "integer", "default": 200 }, "return-all-components": { "type": "boolean", "default": false }, "fd-spike-threshold": { "type": "number", "default": 2 }, "dvars-spike-threshold": { "type": "number", "default": 2 }, "skull-strip-fixed-seed": { "type": "boolean", "default": false }, "skull-strip-template": { "type": "string", "enum": [ "", "OASIS30ANTs", "NKI" ], "default": "OASIS30ANTs" }, "fmap-bspline": { "type": "boolean", "default": false }, "fmap-no-demean": { "type": "boolean", "default": true }, "use-syn-sdc": { "type": "boolean", "default": false }, "force-syn": { "type": "boolean", "default": false }, "no-submm-recon": { "type": "boolean", "default": false }, "cifti-output": { "type": "boolean", "default": false }, "fs-no-reconall": { "type": "boolean", "default": false }, "no-track": { "type": "boolean", "default": false }, "save-outputs": { "type": "boolean", "default": false }, "save-intermediate-work": { "type": "boolean", "default": false }, "intermediate-files": { "default": "", "type": "string" }, "intermediate-folders": { "default": "", "type": "string" }, "FREESURFER_LICENSE": { "type": "string" }, "reports-only": { "type": "boolean", "default": false }, "write-graph": { "type": "boolean", "default": true }, "sloppy": { "type": "boolean", "default": false }, "gear-log-level": { "default": "INFO", "type": "string", "enum": [ "ERROR", "WARNING", "INFO", "DEBUG" ] }, "gear-dry-run": { "default": false, "type": "boolean" }, "gear-run-bids-validation": { "default": false, "type": "boolean" } }, "required": [ "skip-bids-validation", "task-id", "echo-idx", "anat-only", "error-on-aroma-warnings", "ignore", "longitudinal", "t2s-coreg", "bold2t1w-dof", "output-spaces", "force-bbr", "force-no-bbr", "medial-surface-nan", "dummy-scans", "use-aroma", "aroma-melodic-dimensionality", "return-all-components", "fd-spike-threshold", "dvars-spike-threshold", "skull-strip-fixed-seed", "skull-strip-template", "fmap-bspline", "fmap-no-demean", "use-syn-sdc", "force-syn", "no-submm-recon", "cifti-output", "fs-no-reconall", "no-track", "save-outputs", "save-intermediate-work", "intermediate-files", "intermediate-folders", "reports-only", "write-graph", "sloppy", "gear-log-level", "gear-dry-run", "gear-run-bids-validation" ] }, "inputs": { "type": "object", "properties": { "api_key": { "type": "object" }, "t1w-anatomy": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "t2w-anatomy": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "freesurfer_license": { "type": "object", "properties": {} } }, "required": [ "api_key" ] } }, "required": [ "config", "inputs" ] }
o41251
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "KnittingPattern", "description": "A knitting pattern specification. Defines a file name and knitting specs.", "type": "object", "properties": { "file_url": { "description": "The name of the file that holds the pattern.", "type": "string" }, "pattern_name": { "description": "Name of the pattern", "type": "string" }, "dimensions": { "type": "object", "properties": { "image_length": { "type": "integer" }, "image_width": { "type": "integer" }, "physical_length": { "type": "number" }, "physical_width": { "type": "number" }, "units": { "type": "string" }, "yarn_strength": { "type": "object", "properties": { "units": { "type": "string" }, "value": { "type": "number" } } } } }, "colors": { "type": "integer" } }, "required": [ "file_url", "colors" ] }
o40179
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Data origin schema", "type": "object", "properties": { "scope": { "type": "array", "enum": [ "runtime", "data build" ], "description": "The scope/use case the data is used for, e.g. data is part of the infrastructure needed on runtime to execute scripts (bowtie indices) or an input/import product to build other data products (M5NR)" }, "name": { "type": "string", "description": "original (file)name of the data downloaded from (data)source" }, "version": { "type": "object", "properties": { "external": { "type": "string", "description": "external version number assigned by data source, e.g. Refseq version 54" }, "internal": { "type": "string", "pattern": "^\\d+(\\.\\d+(\\.\\d+)?)?$", "description": "internal/local version number" } } }, "download_date": { "type": "string", "description": "This is the date the file was downloaded from the external source" }, "creation_date": { "type": "string", "description": "Creation data of the data at external source" }, "origin_url": { "type": "string", "description": "This is the url of the location from which the data was downloaded" }, "format": { "type": "string", "enum": [ "FASTA", "FASTQ", "GENBBANK", "BIOM", "TEXT", "BOWTIE INDEX", "UNIPROT", "TAB" ], "description": "Controlled vocabulary for the file format of the data, e.g. fasta, BIOM, text, bowtie index" }, "type": { "type": "string", "enum": [ "PROTEIN", "NUCLEOTIDE", "RNA", "EXPRESSION" ], "description": "Controlled CV describing the scope/semantic of the data, e.g. data describes protein sequences, expression data" }, "content": { "type": "array", "enum": [ "ORGANISM", "HUMAN", "" ], "description": "Controlled CV describing the specific semantic of the data, e.g. data from/for Ecoli" }, "source": { "type": "object", "$ref": "#/definitions/source", "definition": "Main data source/repository data is retrieved from, e.g. Uniprot" }, "description": { "type": "string", "description": "Long description of the data" }, "citation": { "type": "string", "description": "This is a citation or doi" } }, "required": [ "runtime_data", "source", "type", "name", "version" ], "definitions": { "source": { "type": "object", "properties": { "name": { "type": "string", "enum": [ "UniProt" ], "description": "Controlled identifier provided by the external source, e.g. PATRIC, UniProt" }, "url": { "type": "string", "description": "Primary URL for the source, e.g. uniprot.org" }, "description": { "type": "string", "description": "Short description describing the source" }, "citation": { "type": "object", "$ref": "#/definitions/citation" } }, "required": [ "name" ] }, "citation": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "DOI", "Pubmed", "URL" ], "description": "CV for citation type" }, "id": { "type": "string", "anyOf": [ { "type": "string", "pattern": "^DOI*$" }, { "type": "string" }, { "type": "string", "pattern": "^PUBMED:\\{d}" } ] } } } } }
o54973
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/node-ref-block/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "css_class": { "type": "string", "pattern": "^[\\w\\s-]+$", "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pbj": { "type": "string", "rule": "single" } }, "updated_date": { "type": "string", "format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "type": "date-time", "rule": "single" } }, "aside": { "type": "boolean", "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "type": "boolean", "rule": "single" } }, "node_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82674
{ "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": "ReplicationControllerCondition describes the state of a replication controller 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 replication controller condition.", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_817_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://footown.com/generic/person#", "type": "object", "required": [ "firstname", "lastname" ], "properties": { "firstname": { "$ref": "#/definitions/name" }, "lastname": { "$ref": "#/definitions/name" }, "title": { "type": "string", "enum": [ "mr", "mrs", "ms", "dr", "prof" ] } }, "definitions": { "name": { "type": "string", "minLength": 1 } } }
o48875
{ "properties": { "height": { "description": "Height of the triangle", "type": "number" }, "length": { "description": "Length of the rectangle or base of the triangle", "type": "number" }, "radius": { "description": "Radius of the circle", "type": "number" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "Width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_771478b4
{ "properties": { "discount": { "description": "The discount amount (if any)", "type": "number" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate as a percentage", "type": "number" } }, "required": [ "items" ], "type": "object" }
generate_invoice_7953d15f
{ "description": "A release is a digital construction of a pinball game.", "properties": { "_created_by": { "description": "Reference to the user who created this release. Only visible by contributors and above.", "readOnly": true, "type": "string" }, "_game": { "description": "Reference to the game.", "type": "string" }, "_id": { "description": "Unique identifier for a release. Gets generated automatically on creation.", "pattern": "^[a-z0-9-]{7,}$", "readOnly": true, "type": "string" }, "_tags": { "description": "None, one or multiple reference to tags.", "items": { "type": "string" }, "type": "array" }, "acknowledgements": { "description": "Free text describing people who helped creating this release but are not considered as authors.", "type": "string" }, "authors": { "description": "One or more authors of this release.", "items": { "properties": { "_user": { "description": "Reference to the user.", "type": "string" }, "roles": { "description": "One or more roles of the user.", "items": { "type": "string" }, "type": "array" } }, "title": "Author", "type": "object" }, "type": "array" }, "created_at": { "description": "Timestamp when the release was added to the database.", "readOnly": true, "type": "string" }, "description": { "description": "A short description of the release. Will be Markdown formatted.", "type": "string" }, "links": { "description": "A list of links related to this release.", "items": { "properties": { "label": { "description": "A short label describing the link", "type": "string" }, "url": { "description": "The full URL.", "type": "string" } }, "title": "Link", "type": "object" }, "type": "array" }, "name": { "description": "Name of the release.", "minLength": 3, "type": "string" }, "original_version": { "description": "In case of a mod, this refers to the original version of the release (i.e. the \"modded release\").\n\nIt can either be a direct link within VPDB, or a label and URL to an external resource.", "properties": { "_ref": { "description": "Reference to the original version within VPDB.", "type": "string" }, "release": { "description": "In case the modded release is not on VPDB, this links to an external resource.", "properties": { "name": { "description": "Name of the modded release", "type": "string" }, "url": { "description": "URL when the modded release can be found.", "type": "string" } }, "title": "External Release Resource", "type": "object" } }, "title": "Original Release", "type": "object" }, "versions": { "description": "A version of the release.", "items": { "properties": { "changes": { "description": "Changelog. A list of changes for this version.", "type": "string" }, "files": { "items": { "properties": { "_compatibility": { "description": "Reference to one or more compatible builds.", "items": { "title": "Build", "type": "string" }, "type": "array" }, "_file": { "description": "Reference to the file.", "type": "string" }, "_media": { "description": "References to media related to the file.", "properties": { "playfield_image": { "description": "Reference to the playfield image.", "type": "string" }, "playfield_video": { "description": "Reference to the playfield video.", "type": "string" } }, "title": "Media References", "type": "object" }, "flavor": { "description": "Defines the flavor of the file.", "properties": { "lightning": { "description": "Playfield illumination. Values:\n\n* `day` - Illuminated playfield.\n* `night` - Dark playfield.", "enum": [ "day", "night" ] }, "orientation": { "description": "Table orientation. Values:\n\n* `ws` - Widescreen, for playing on desktop PCs.\n* `fs` - Fullscreen or portrait, used on cabinets.", "enum": [ "ws", "fs" ] } }, "title": "Flavor", "type": "object" } }, "title": "File" }, "type": "array" }, "version": { "description": "Version number. Semantic versioning recommended (major.minor.patch).", "minLength": 1, "type": "string" } }, "title": "Version", "type": "object" }, "type": "array" } }, "required": [ "name", "versions.0.version" ], "title": "Release", "type": "object" }
o84348
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A hash of keys that should be returned, to paths to the data from each item that should be returned.", "additionalProperties": { "description": "A path to the data that should be returned for this key, for each item. Each entry in the array represents a key that should be traversed in the results.", "type": "array", "items": { "description": "The next key to traverse (['a', 'b', 'c'] means look up { \"a\": { \"b\": { \"c\": ... } } }) and assign that value to the key.", "type": "string" } }, "example": { "node_name": [ "name" ], "apache_port": [ "apache", "http_port" ] } }
o78131
{ "properties": { "end_date": { "description": "The end date and time of the event in YYYY-MM-DD HH:MM format", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_date": { "description": "The start date and time of the event in YYYY-MM-DD HH:MM format", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_date", "end_date" ], "type": "object" }
create_calendar_event_7a93de0e
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Use cases schema", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "thumbnail": { "type": "string" }, "order": { "type": "integer" }, "howTo": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "guides": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "interfaceExplained": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "shortcuts": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "videos": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "helpTopics": { "anyOf": [ { "type": "array", "items": { "type": "object", "properties": { "title": { "type": "string" }, "url": { "type": "string" } }, "required": [ "title", "url" ] } }, { "type": "null" } ] }, "tutorials": { "anyOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] } }, "required": [ "title", "description", "order", "thumbnail" ] }
o11171
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "T2", "T1", "FreeSurferLicense" ], "type": "object", "properties": { "GradientCoeff": { "type": "object", "properties": {} }, "SpinEchoNegative": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "T2": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "T1": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "SiemensGREPhase": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "FreeSurferLicense": { "type": "object", "properties": {} }, "SiemensGREMagnitude": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "SpinEchoPositive": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "StructuralUnwarpDirection", "TemplateSize", "BrainSize", "Subject" ], "type": "object", "properties": { "StructuralUnwarpDirection": { "default": "z", "type": "string" }, "TemplateSize": { "default": "0.8mm", "type": "string" }, "BrainSize": { "default": 150, "type": "integer" }, "Subject": { "default": "000000", "type": "string" } } } }, "title": "Invocation manifest for HCP: Structural Preprocessing Pipeline" }
o41318
{ "properties": { "include_digits": { "description": "Include digits in the password", "type": "boolean" }, "include_lowercase": { "description": "Include lowercase letters in the password", "type": "boolean" }, "include_special_chars": { "description": "Include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The desired length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_f0248d47
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of a triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of a triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of a rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of a circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of a rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_8a72b9f8
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Diffs", "description": "Diffs Controller", "definitions": { "actions": { "single_commit": { "type": "object", "required": [ "data" ], "properties": { "data": { "type": "object", "required": [ "repository" ], "properties": { "repository": { "oneOf": [ { "type": "object", "required": [ "commit" ], "properties": { "commit": { "oneOf": [ { "type": "object", "required": [ "diff" ], "properties": { "diff": { "type": "array", "items": { "$ref": "#/definitions/diff" } } } }, { "type": "null" } ] } } }, { "type": "null" } ] } } } } }, "commit_range": { "type": "object", "required": [ "data" ], "properties": { "data": { "type": "object", "required": [ "repository" ], "properties": { "repository": { "oneOf": [ { "type": "object", "required": [ "diff" ], "properties": { "diff": { "type": "array", "items": { "$ref": "#/definitions/diff" } } } }, { "type": "null" } ] } } }, "errors": { "type": "array", "items": { "type": "object", "required": [ "locations", "message", "path" ], "properties": { "locations": { "type": "array", "items": { "type": "object", "required": [ "column", "line" ], "properties": { "column": { "type": "integer", "example": 13, "description": "The column of the error in the input data" }, "line": { "type": "integer", "example": 3, "description": "The line of the error in the input data" } } } }, "message": { "type": "string", "example": "\"from\" revspec 'mastor' not found", "description": "The error message" }, "path": { "type": "array", "items": { "type": "string", "example": "repository", "description": "A path segment pointing to the error in the input data" } } } } } } } }, "diff": { "type": "object", "required": [ "deletedFile", "diff", "lineCount", "newFile", "newMode", "newPath", "oldMode", "oldPath", "renamedFile" ], "properites": { "deletedFile": { "type": "boolean", "example": false, "description": "True if the file was deleted" }, "diff": { "type": "string", "example": "--- /dev/null\n+++ b/texts/ontohub_changed.txt\n@@ -0,0 +1 @@\n+The main Ontohub service that serves the data for the frontend and other clients via the GraphQL API.\n", "description": "The actual diff" }, "lineCount": { "type": "integer", "example": 4, "description": "The number of changed lines" }, "newFile": { "type": "boolean", "example": true, "description": "True if the file was added" }, "newMode": { "type": "string", "example": "100644", "description": "The file mode in the new state" }, "newPath": { "type": "string", "example": "texts/ontohub_changed.txt", "description": "The new path of the file" }, "oldMode": { "type": "string", "example": "0", "description": "The file mode in the old state" }, "renamedFile": { "type": "boolean", "example": false, "description": "True if the file was renamed" } } }, "organizational_unit_id": { "type": "string", "example": "ada", "description": "The id of the organizational unit that owns the repository" }, "repository_id": { "type": "string", "example": "fixtures", "description": "The id of the repository" }, "revision": { "type": "string", "example": "master~2", "description": "A revision" } }, "links": [ { "title": "Single commit", "description": "Contains the changes of a single commit", "rel": "self", "method": "GET", "mediaType": "application/json", "href": "/{#/definitions/organizational_unit_id}/{#/definitions/repository_id}/diff/{#/definitions/revision}", "targetSchema": { "$ref": "#/definitions/actions/single_commit" } }, { "title": "Commit range", "description": "Contains the changes of a commit range", "rel": "self", "method": "GET", "mediaType": "application/json", "href": "/{#/definitions/organizational_unit_id}/{#/definitions/repository_id}/diff/{#/definitions/revision}..{#/definitions/revision}", "targetSchema": { "$ref": "#/definitions/actions/commit_range" } } ], "properties": { "actions.single_commit": { "$ref": "#/definitions/actions/single_commit" }, "actions.commit_range": { "$ref": "#/definitions/actions/commit_range" }, "diff.properites.deletedFile": { "$ref": "#/definitions/diff/properites/deletedFile" }, "diff.properites.diff": { "$ref": "#/definitions/diff/properites/diff" }, "diff.properites.lineCount": { "$ref": "#/definitions/diff/properites/lineCount" }, "diff.properites.newFile": { "$ref": "#/definitions/diff/properites/newFile" }, "diff.properites.newMode": { "$ref": "#/definitions/diff/properites/newMode" }, "diff.properites.newPath": { "$ref": "#/definitions/diff/properites/newPath" }, "diff.properites.oldMode": { "$ref": "#/definitions/diff/properites/oldMode" }, "diff.properites.renamedFile": { "$ref": "#/definitions/diff/properites/renamedFile" }, "organizational_unit_id": { "$ref": "#/definitions/organizational_unit_id" }, "repository_id": { "$ref": "#/definitions/repository_id" }, "revision": { "$ref": "#/definitions/revision" } }, "required": [ "actions.single_commit", "actions.commit_range", "diff.properites.deletedFile", "diff.properites.diff", "diff.properites.lineCount", "diff.properites.newFile", "diff.properites.newMode", "diff.properites.newPath", "diff.properites.oldMode", "diff.properites.renamedFile", "organizational_unit_id", "repository_id", "revision" ] }
o65310
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Other", "description": "Other", "type": "object", "properties": { "nonResidentLandlord": { "title": "Non Resident Landlord", "description": "An explicit declaration that the user is a Non-Resident Landlord. The default is FALSE", "type": "boolean", "example": "true" }, "rarJointLet": { "title": "Other Capital allowance", "description": "A notification that the Rent A Room income (RAR) is shared with another individual.", "type": "boolean", "example": "true" } }, "additionalProperties": false }
o46428
{ "$schema": "http://json-schema.org/draft-04/schema", "$id": "segment", "description": "define segments to insert into a jinja template", "type": "object", "additionalProperties": true, "required": [ "identifier", "description", "segments" ], "properties": { "$schema": { "type": "string" }, "identifier": { "description": "the identification of the segments", "type": "string" }, "description": { "description": "the purpose of this group of segments", "type": "string" }, "segments": { "additionalProperties": false, "description": "the segments to insert", "patternProperties": { ".+": { "description": "a segment of the template, each line should be a separate list item", "type": [ "string", "array" ], "items": { "type": "string" } } } }, "overwrite": { "description": "a list of segment keys that may overwrite previously defined entries", "type": "array", "items": { "type": "string" } } } }
o31293
{ "properties": { "openldap-admin": { "description": "OpenLDAP Admin service configuration properties", "properties": { "cpus": { "default": 0.1, "description": "CPU shares to allocate to each OpenLDAP node.", "minimum": 0.1, "type": "number" }, "ldap_host": { "default": "openldap", "description": "The name of the OpenLDAP instance to connect to.", "type": "string" }, "ldap_host_port": { "default": 389, "description": "The port where the OpenLDAP server is listening on. Defaults to 389", "type": "number" }, "mem": { "default": 128.0, "description": "Memory to allocate to each OpenLDAP node.", "minimum": 128.0, "type": "number" }, "name": { "default": "openldap-admin", "description": "Package name.", "type": "string" }, "port": { "default": 11389, "description": "Port number to be used for external clear web traffic", "type": "number" }, "port_https": { "default": 11636, "description": "Port number to be used for external secure web traffic", "type": "number" }, "version": { "default": "0.1", "description": "Package version.", "type": "string" }, "virtual_host": { "default": "phpldapadmin.example.org", "description": "Virtual host to be used to publish the UI", "type": "string" } }, "required": [ "cpus", "mem" ], "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "name": { "default": "openldap-admin", "description": "The name of the OpenLDAP Admin service instance", "type": "string" } }, "type": "object" } } }
o90801
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "shape": { "description": "The shape for which volume needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_volume_4016aecf
{ "properties": { "limit": { "maximum": 100, "minimum": 1, "type": "number" }, "term": { "type": "string" } }, "type": "object" }
o67193
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The asset.json file for mesh settings objects.", "type": "object", "properties": { "asset_type": { "type": "string", "pattern": "mesh_settings" }, "mesh": { "type": "string", "description": "A path to a mesh asset" }, "material": { "description": "A path to a material asset", "type": "string" } }, "required": [ "asset_type", "mesh", "material" ] }
o42982
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "kind": { "type": "string", "default": "req", "readonly": "true", "description": "Defines that the message is a request" }, "id": { "type": "string", "description": "Request ID generated by the client. It should be unique per WebSocket session in order to identify the request. This ID will be reflected by the server in the response to the request.", "minLength": 1, "maxLength": 64, "default": "0" }, "type": { "description": "Contains one of the APIs request type names", "type": "string" }, "body": { "type": "object" } }, "required": [ "kind", "id", "type" ] }
o9583
{ "items": { "additionalProperties": false, "properties": { "canUninstall": { "type": "boolean" }, "componentClasses": { "items": { "type": "string" }, "type": "array" }, "description": { "type": "string" }, "helpUrl": { "type": "string" }, "id": { "type": "string" }, "installerClass": { "type": "string" }, "markerClass": { "type": [ "null", "string" ] }, "name": { "type": "string" }, "screenshotUrl": { "type": "string" }, "vendor": { "type": "string" }, "versions": { "patternProperties": { "^\\d+(\\.\\d+)*(-\\w+)?$": { "additionalProperties": false, "properties": { "changes": { "type": "string" }, "depends": { "items": { "type": "string" }, "type": "array" }, "downloadUrl": { "type": [ "null", "string" ] }, "libs": { "patternProperties": { ".+": { "type": "string" } }, "type": "object" } }, "required": [ "downloadUrl" ], "type": "object" } }, "properties": { "": { "additionalProperties": false, "properties": { "downloadUrl": { "type": "string" }, "libs": { "patternProperties": { ".+": { "type": "string" } }, "type": "object" } }, "required": [ "downloadUrl" ], "type": "object" } }, "type": "object" } }, "required": [ "description", "helpUrl", "id", "markerClass", "name", "screenshotUrl", "vendor", "versions" ], "type": "object" }, "type": "array" }
o68630
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Light Sensor JSON Schema", "name": "light_sensor", "type": "object", "properties": { "id": { "description": "Fibaro Home Center device ID", "type": "integer", "minimum": 2 }, "name": { "description": "Device name", "type": "string", "maxLength": 20 }, "roomID": { "description": "Room ID defined in Home Center GUI", "type": "integer", "minimum": 0 }, "type": { "description": "Zwave device type", "enum": [ "light_sensor" ] }, "remoteGatewayId": { "description": "Remote Gateway ID", "type": "integer", "minimum": 0 }, "remoteDeviceID": { "description": "Remote Device ID", "type": "integer", "minimum": 0 }, "properties": { "type": "object", "properties": { "UIMessageSendTime": { "type": "string" }, "classConfigure": { "type": "string" }, "classGeneric": { "type": "string" }, "classSupport": { "type": "string" }, "classVersion": { "type": "string" }, "dead": { "type": "string" }, "deviceControlType": { "type": "string" }, "deviceIcon": { "type": "string" }, "disabled": { "type": "string" }, "emailNotificationID": { "type": "string" }, "emailNotificationType": { "type": "string" }, "endPoint": { "type": "string" }, "isBatteryOperated": { "enum": [ "0", "1" ] }, "log": { "type": "string" }, "logTemp": { "type": "string" }, "needConfigure": { "type": "string" }, "nodeID": { "type": "string" }, "parametersTemplate": { "type": "string" }, "parentID": { "type": "string" }, "pollingRetryError": { "type": "string" }, "pollingTime": { "type": "string" }, "pollingTimeNext": { "type": "string" }, "pollingTimeSec": { "type": "string" }, "productInfo": { "type": "string" }, "pushNotificationID": { "type": "string" }, "pushNotificationType": { "type": "string" }, "saveLogs": { "enum": [ "0", "1" ] }, "showChildren": { "enum": [ "0", "1" ] }, "smsNotificationID": { "type": "string" }, "smsNotificationType": { "type": "string" }, "sortOrder": { "type": "string" }, "unit": { "type": "string" }, "useTemplate": { "enum": [ "0", "1" ] }, "userDescription": { "type": "string" }, "value": { "type": "string" }, "zwaveCompany": { "type": "string" }, "zwaveInfo": { "type": "string" }, "zwaveVersion": { "type": "string" }, "parameters": { "type": "array", "minItems": 0, "items": { "type": "object", "properties": { "id": { "type": "number" }, "size": { "type": "number" }, "value": { "type": "number" }, "lastSetValue": { "type": "number" } } }, "_uniqueItems": false }, "associationView": { "type": "array", "minItems": 0, "maxItems": 3, "items": { "$ref": "#/definitions/associationItem" } }, "associationSet": { "type": "array", "minItems": 0, "maxItems": 3, "items": { "$ref": "#/definitions/associationItem" } } }, "required": [ "UIMessageSendTime", "classConfigure", "classGeneric", "classSupport", "classVersion", "dead", "deviceControlType", "deviceIcon", "disabled", "emailNotificationID", "emailNotificationType", "endPoint", "isBatteryOperated", "log", "logTemp", "needConfigure", "nodeID", "parametersTemplate", "parentID", "pollingRetryError", "pollingTime", "pollingTimeNext", "pollingTimeSec", "productInfo", "pushNotificationID", "pushNotificationType", "saveLogs", "showChildren", "smsNotificationID", "smsNotificationType", "sortOrder", "unit", "useTemplate", "userDescription", "value", "zwaveCompany", "zwaveInfo", "zwaveVersion" ], "additionalProperties": false }, "actions": { "type": "object", "properties": {}, "additionalProperties": false }, "created": { "type": "number" }, "modified": { "type": "number" }, "sortOrder": { "type": "number" } }, "definitions": { "associationItem": { "properties": { "groupID": { "type": "number" }, "devices": { "type": "array", "minItems": 1, "maxItems": 254, "items": { "type": "number", "minimum": 1, "maximum": 254 } } } } }, "additionalProperties": false }
o56008
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://github.com/route4me/json-schemas/blob/master/RouteParameters.dtd", "title": "Route Parameters", "type": "object", "properties": { "is_upload": { "type": [ "boolean", "null" ], "title": "Is Upload", "description": "Let the R4M api know if this sdk request is coming from a file upload within your environment (for analytics)" }, "rt": { "type": [ "boolean", "null" ], "title": "Round Trip", "description": "The tour type of this route. rt is short for round trip, the optimization engine changes its behavior for round trip routes" }, "disable_optimization": { "type": [ "boolean", "null" ], "title": "Disable Optimization", "description": "By disabling optimization, the route optimization engine will not resequence the stops in your" }, "route_name": { "type": [ "string", "null" ], "title": "Route Name", "description": "The name of this route. this route name will be accessible in the search API, and also will be displayed on the mobile device of a user" }, "route_date": { "type": [ "integer", "null" ], "title": "Route Date", "description": "The route start date in UTC, unix timestamp seconds. Used to show users when the route will begin, also used for reporting and analytics" }, "route_time": { "type": "integer", "default": 0, "title": "Route Time", "description": "Time when the route starts (relative to route_date)\u00a0(Seconds). UTC timezone as well" }, "shared_publicly": { "type": [ "string", "null" ], "title": "Shared Publicly", "description": "Deprecated. Specify if the route can be viewed by unauthenticated users" }, "optimize": { "type": [ "string", "null" ], "enum": [ "Distance", "Time", "timeWithTraffic" ], "title": "Optimize", "description": "The driving directions will be generated biased for this selection. This has no impact on route sequencing" }, "lock_last": { "type": [ "boolean", "null" ], "title": "Lock Last", "description": "A flag to indicate if the last stop in the route should be fixed" }, "vehicle_capacity": { "type": [ "string", "null" ], "title": "Vehicle Capacity", "description": "How much cargo can the vehicle carry\u00a0(units, e.g. cubic meters)" }, "vehicle_max_cargo_weight": { "type": [ "number", "null" ], "title": "Vehicle Maximum Cargo Weight", "description": "Max cargo weight a vehicle can cary" }, "vehicle_max_cargo_volume": { "type": [ "number", "null" ], "title": "Vehicle Maximum Cargo Volume", "description": "Max cargo volum a vehicle can cary" }, "vehicle_max_distance_mi": { "type": [ "string", "null" ], "title": "Vehicle Maximum Distance (mi)", "description": "Max distance for a single vehicle in this route\u00a0(always in miles)" }, "subtour_max_revenue": { "type": [ "string", "null" ], "title": "Subtour Max Revenue", "description": "Max allowed revenue from a subtour" }, "distance_unit": { "type": [ "string", "null" ], "title": "Distance Unit", "description": "The distance measurement unit for the route" }, "travel_mode": { "type": [ "string", "null" ], "enum": [ "Driving", "Walking", "Trucking", "Cycling", "Transit" ], "title": "Travel Mode", "description": "The mode of travel that the directions should be optimized for" }, "avoid": { "type": [ "string", "null" ], "enum": [ "Highways", "Tolls", "minimizeHighways", "minimizeTolls", "" ], "title": "Avoid", "description": "Options which let the user choose which road obstacles to avoid. This has no impact on route sequencing" }, "avoidance_zones": { "type": "array", "items": { "type": "string" }, "title": "Avoidance Zones", "description": "Array of the Avoidance zones IDs" }, "vehicle_id": { "type": [ "string", "null" ], "title": "Vehicle ID", "description": "The unique internal id of a vehicle" }, "driver_id": { "type": [ "string", "null" ], "title": "Driver ID", "description": "The unique internal id of a driver" }, "dev_lat": { "type": [ "number", "null" ], "title": "Device Latitude", "description": "The latitude location of where a mobile device was located when it made a request to create the route." }, "dev_lng": { "type": [ "number", "null" ], "title": "Device Longitude", "description": "The longitude location of where a mobile device was located when it made a request to create the route" }, "route_max_duration": { "type": "integer", "default": 86400, "title": "Route Maximum Duration", "description": "How many seconds a route can last at most. Default is 24 hours = 86400 seconds" }, "route_email": { "type": [ "string", "null" ], "title": "Route Email", "format": "email", "description": "Addresses where this route was shared after completion" }, "route_type": { "type": [ "string", "null" ], "title": "Route Type", "description": "Type of route being created: ENUM(api,null)" }, "store_route": { "type": [ "boolean", "null" ], "title": "Store Route", "description": "Always true" }, "metric": { "type": "integer", "enum": [ 1, 2, 3, 4, 5 ], "title": "Metric", "description": "1 = ROUTE4ME_METRIC_EUCLIDEAN, 2 = ROUTE4ME_METRIC_MANHATTAN, 3 = ROUTE4ME_METRIC_GEODESIC, 4 = ROUTE4ME_METRIC_MATRIX, 5 = ROUTE4ME_METRIC_EXACT_2D" }, "algorithm_type": { "type": "integer", "enum": [ 1, 2, 3, 4, 5, 6, 7, 100, 101 ], "title": "Algorithm Type", "description": "The algorithm to be used: 1 = TSP, 2 = VRP, 3 = CVRP_TW_SD, 4 = CVRP_TW_MD, 5 = TSP_TW, 6 = TSP_TW_CR, 7 = BBCVRP, 100 = ALG_NONE, 101 = ALG_LEGACY_DISTRIBUTED" }, "member_id": { "type": [ "string", "null" ], "title": "Member ID", "description": "User ID who is assigned to the route" }, "ip": { "type": [ "string", "null" ], "title": "IP", "description": "IP Address in decimal form of user who created the route" }, "dm": { "type": [ "integer", "null" ], "title": "DM", "description": "Undocumented/not publicly shown" }, "dirm": { "type": [ "integer", "null" ], "title": "Directions Method", "description": "Undocumented/not publicly shown" }, "parts": { "type": [ "integer", "null" ], "title": "Parts", "description": "Legacy feature which permits a user to request an example number of optimized routes" }, "device_id": { "type": [ "string", "null" ], "title": "Device ID", "description": "32 Character MD5 String ID of the device that was used to plan this route" }, "device_type": { "type": [ "string", "null" ], "enum": [ "web", "iphone", "ipad", "android_phone", "android_tablet" ], "title": "Device Type", "description": "The type of the device that is creating this route" }, "first_drive_then_wait_between_stops": { "type": [ "boolean", "null" ], "title": "First Drive Then Wait Between Stops", "description": "First drive then wait between stops" }, "has_trailer": { "type": [ "boolean", "null" ], "title": "Has Trailer", "description": "if True vehicle has trailer" }, "trailer_weight_t": { "type": [ "number", "null" ], "title": "Trailer Weight (t)", "description": "If has_trailer = true, specifies the weight of the trailer\u00a0(required)" }, "limited_weight_t": { "type": [ "number", "null" ], "title": "Limited Weight (t)", "description": "If travel_mode = 'Trucking', specifies the truck weight\u00a0(required)" }, "weight_per_axle_t": { "type": [ "number", "null" ], "title": "Weight per Axle (t)", "description": "If travel_mode = 'Trucking', specifies the weight per axle\u00a0(required)" }, "truck_height": { "type": [ "integer", "null" ], "title": "Truck Height", "description": "If travel_mode = 'Trucking', specifies the truck height\u00a0(required)" }, "truck_width": { "type": [ "integer", "null" ], "title": "Truck Width", "description": "If travel_mode = 'Trucking', specifies the truck width\u00a0(required)" }, "truck_length": { "type": [ "integer", "null" ], "title": "Truck Length", "description": "If travel_mode = 'Trucking', specifies the truck length\u00a0(required)" }, "truck_hazardous_goods": { "type": "array", "items": { "type": "string" }, "title": "Truck Hazardous Goods", "description": "Array of the truck hazardous goods" }, "min_tour_size": { "type": [ "integer", "null" ], "title": "Minimum Tour Size", "description": "Must be > 0; the minimum number of stops allowed in a subtour.\u00a0null\u00a0means there is no minimum" }, "max_tour_size": { "type": [ "integer", "null" ], "title": "Maximum Tour Size", "description": "Must be > 0; the maximum number of stops allowed in a subtour.\u00a0null\u00a0means there is no maximum" }, "optimization_quality": { "type": [ "integer", "null" ], "title": "Optimization Quality", "description": "there are 3 types of optimization qualities that are optimizations goals (1 - Generate Optimized Routes As Quickly as Possible, 2 - Generate Routes That Look Better On A Map, 3 - Generate The Shortest And Quickest Possible Routes)" }, "uturn": { "type": [ "integer", "null" ], "title": "uturn", "description": "Available with:1 = UTURN_DEPART_SHORTEST (Allows U-turns), 2 = UTURN_DEPART_TO_RIGHT (Forbids U-turns), 3 = UTURN_DEPART_TO_LEFT (Deprecated)" }, "leftturn": { "type": [ "integer", "null" ], "title": "leftturn", "description": "Available with: 1 = LEFTTURN_ALLOW, 2 = LEFTTURN_FORBID, 3 = LEFTTURN_MULTIAPPROACH (assumes points are intersections and visits them from all sides. Ignores uturn and leftturn constraints.)" }, "rightturn": { "type": [ "integer", "null" ], "title": "rightturn", "description": "Available with: 1 = RIGHTTURN_ALLOW, 2 = RIGHTTURN_FORBID, 3 = RIGHTTURN_MULTIAPPROACH (assumes points are intersections and visits them from all sides. Ignores uturn and leftturn constraints.)" } } }
o71412
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_links": { "type": "object", "patternProperties": { "": { "type": "object", "properties": { "href": { "type": "string" } } } } } } }
o69533
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Esquema Contenido tabla", "definitions": { "contenido": { "type": "object", "properties": { "titulos": { "type": "array", "items": { "type": "string" }, "minItems": 6, "maxItems": 6 }, "filas": { "type": "array", "items": { "$ref": "#/definitions/valoresFila" }, "minItems": 1 }, "fuente": { "type": "string" } }, "required": [ "titulos", "filas" ] }, "valoresFila": { "type": "object", "properties": { "mes": { "type": "string" }, "porcentajes": { "type": "array", "items": { "type": "number" }, "minItems": 5, "maxItems": 5 } }, "required": [ "mes", "porcentajes" ] } }, "type": "object", "properties": { "contenido": { "$ref": "#/definitions/contenido" } }, "required": [ "contenido" ] }
o7540
{ "$id": "https://json.schemastore.org/asmdef.json", "$schema": "http://json-schema.org/draft-07/schema#", "anyOf": [ { "properties": { "includePlatforms": { "minItems": 1 }, "excludePlatforms": { "maxItems": 0 } } }, { "properties": { "includePlatforms": { "maxItems": 0 }, "excludePlatforms": { "minItems": 1 } } }, { "properties": { "includePlatforms": { "maxItems": 0 }, "excludePlatforms": { "maxItems": 0 } } } ], "definitions": { "platformValues": { "type": "array", "uniqueItems": true, "items": { "enum": [ "Android", "Editor", "iOS", "LinuxStandalone32", "LinuxStandalone64", "LinuxStandaloneUniversal", "Lumin", "macOSStandalone", "Nintendo3DS", "PS4", "PSVita", "Stadia", "Switch", "tvOS", "WSA", "WebGL", "WindowsStandalone32", "WindowsStandalone64", "XboxOne" ] } } }, "description": "Defines an assembly in the Unity compilation pipeline", "properties": { "name": { "description": "The name of the assembly being defined", "type": "string", "minLength": 1 }, "rootNamespace": { "description": "The root namespace of the assembly. Requires Unity 2020.2", "type": "string", "minLength": 1 }, "references": { "description": "A list of assembly names or assembly asset GUIDs to reference", "type": "array", "items": { "type": "string", "minLength": 1 }, "uniqueItems": true }, "includePlatforms": { "description": "Platforms to target", "$ref": "#/definitions/platformValues" }, "excludePlatforms": { "description": "Platforms that are explicitly not targeted", "$ref": "#/definitions/platformValues" }, "allowUnsafeCode": { "description": "Allow unsafe code", "type": "boolean", "default": false }, "autoReferenced": { "description": "When true, this assembly definition is automatically referenced by predefined assemblies (Assembly-CSharp, Assembly-CSharp-firstpass, etc.)", "type": "boolean", "default": true }, "noEngineReferences": { "description": "When true, no references to UnityEngine or UnityEditor will be added to this assembly project", "type": "boolean", "default": false }, "overrideReferences": { "description": "When true, any references to precompiled assembly assets are manually chosen. When false, all precompiled assembly assets are automatically referenced", "type": "boolean", "default": "false" }, "precompiledReferences": { "description": "A list of precompiled assembly assets that will be referenced. Only valid when overrideReferences is true", "type": "array", "uniqueItems": true }, "defineConstraints": { "description": "A list of the C# compiler define symbols that must evaluate to true in order for the assembly to be compiled or referenced. Absence of a symbol can be checked with a bang symbol (!DEFINE)", "type": "array", "uniqueItems": true }, "optionalUnityReferences": { "description": "Additional optional Unity features to reference", "type": "array", "items": { "enum": ["TestAssemblies"] }, "uniqueItems": true }, "versionDefines": { "description": "A set of expressions that will define a symbol in the C# project if a package or module version matches the given expression", "type": "array", "uniqueItems": true, "items": { "type": "object", "properties": { "name": { "description": "The package or module that will provide the version to be checked in the expression", "type": "string" }, "expression": { "description": "The semantic version range of the chosen package or module", "type": "string" }, "define": { "description": "The name of the define that is added to the project file when expression evaluates to true", "type": "string" } }, "required": ["name", "expression", "define"] } } }, "required": ["name"], "title": "Unity Assembly Definition", "type": "object" }
asmdef
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Grading Queue Message", "description": "A message describing a grading job to be run.", "type": "object", "additionalProperties": true, "required": [ "jobId", "image", "entrypoint", "s3Bucket", "s3RootKey" ], "properties": { "jobId": { "description": "The unique ID for this job.", "type": [ "string", "integer" ] }, "image": { "description": "The image that this job will be executed in.", "type": "string" }, "entrypoint": { "description": "The script that will be run to start this job.", "type": "string" }, "timeout": { "description": "The number of seconds after which the grading job will timeout.", "type": "integer" }, "s3Bucket": { "description": "The AWS S3 bucket containing this job's files.", "type": "string" }, "s3RootKey": { "description": "The root key for th job's files.", "type": "string" } } }
o12970
{ "$id": "https://json.schemastore.org/one-service-descriptor-schema-0.1.json", "$ref": "#/definitions/ServiceDescriptor", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "ServiceDescriptor": { "type": "object", "additionalProperties": false, "properties": { "description": { "type": "string" }, "requires": { "type": "array", "items": { "$ref": "#/definitions/Require" } }, "events": { "$ref": "#/definitions/Events" } }, "required": ["description", "requires", "events"], "title": "ServiceDescriptor" }, "Events": { "type": "object", "additionalProperties": false, "properties": { "produces": { "$ref": "#/definitions/Consumes" }, "consumes": { "$ref": "#/definitions/Produces" } }, "required": ["consumes", "produces"], "title": "Events" }, "Consumes": { "type": "array", "items": { "type": "string" }, "title": "Consumes" }, "Produces": { "type": "array", "items": { "type": "string" }, "title": "Produces" }, "Require": { "type": "object", "additionalProperties": false, "properties": { "service": { "type": "string" }, "version": { "type": "string" }, "uses": { "type": "array", "items": { "$ref": "#/definitions/Use" } } }, "required": ["service", "uses", "version"], "title": "Require" }, "Use": { "type": "object", "additionalProperties": false, "properties": { "api": { "type": "string", "enum": ["internal", "external", "integration"] }, "type": { "type": "string", "enum": ["REST", "library"] } }, "required": ["api", "type"], "title": "Use" } } }
one-service-descriptor-schema-0
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the object", "type": "number" }, "length": { "description": "The length of the object", "type": "number" }, "width": { "description": "The width of the object", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "shape": { "description": "The shape of the object (e.g. cube, sphere, cylinder)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_volume_145170f3
{ "properties": { "dimensions": { "description": "The dimensions required for the calculation", "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "width", "height", "base" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_c447fd6a
{ "properties": { "d": { "type": "number" }, "f": { "type": "number" }, "i": { "type": "integer" }, "i16": { "type": "integer" }, "i32": { "type": "integer" }, "i64": { "type": "integer" }, "i8": { "type": "integer" }, "l": { "type": "integer" }, "num": { "type": "number" } }, "required": [ "d", "f", "i", "i16", "i32", "i64", "i8", "l", "num" ], "type": "object" }
o8435
{ "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "graph": { "additionalProperties": false, "properties": { "directed": { "default": true, "type": [ "boolean", "null" ] }, "edges": { "items": { "additionalProperties": false, "properties": { "directed": { "default": true, "type": [ "boolean", "null" ] }, "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "rel": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "string" } }, "required": [ "id", "source", "target" ], "type": "object" }, "type": [ "array", "null" ] }, "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "nodes": { "items": { "additionalProperties": false, "properties": { "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] } }, "required": [ "id" ], "type": "object" }, "type": [ "array", "null" ] }, "type": { "type": "string" } }, "required": [ "id" ], "type": "object" } }, "oneOf": [ { "additionalProperties": false, "properties": { "graph": { "$ref": "#/definitions/graph" } }, "required": [ "graph" ], "type": "object" }, { "additionalProperties": false, "properties": { "graphs": { "items": { "$ref": "#/definitions/graph" }, "type": "array" }, "id": { "type": "string" }, "label": { "type": "string" }, "metadata": { "type": [ "object", "null" ] }, "type": { "type": "string" } }, "type": "object" } ] }
o53111
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which to calculate area (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_ab215361
{ "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "bar": { "type": "string" }, "foo": { "enum": [ "", "abort", "fail", "ok" ], "type": "string" } }, "required": [ "bar", "foo" ], "type": "object" }
o17654
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "tbox", "description": "A tbox atom", "type": "object", "properties": { "modifier": { "description": "A pattern modifier", "enum": [ "", "dark" ] }, "children": { "type": "string" }, "content": { "type": "string" } }, "anyOf": [ { "required": [ "children" ] }, { "required": [ "content" ] } ] }
o62762
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Tinder", "description": "This is not your tinder.", "generators": [ { "ddl": { "rootPathPrefix": "db", "roleName": "tinder_role", "grants": [ "SELECT", "INSERT", "DELETE", "UPDATE" ], "databaseName": "tinder_db", "schemaName": "tinder_schema" }, "dockerfiles": { "CMDPath": "./bin/" } } ], "definitions": { "Config": { "type": "object", "title": "Config", "description": "Config represents the required options for this module to work", "definitions": {}, "properties": { "Postgres": { "type": "object", "title": "Postgres", "description": "Postgres holds the all credentials for postgres db connection.", "properties": { "Port": { "description": "The port number for postgres config", "type": "number", "format": "int64", "minimum": 1024 }, "Host": { "description": "Host holds the hostname for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "Username": { "description": "Username holds the username for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "Password": { "description": "Password holds the password for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "DBName": { "description": "DBName holds the database name for the postgres", "type": "string", "minLength": 4, "maxLength": 24 } }, "definitions": {} } } }, "Profile": { "type": "object", "title": "Profile", "description": "Profile represents a registered Account's Public Info", "generators": [ { "ddl": { "grants": [ "SELECT", "INSERT", "UPDATE" ], "primaryKey": [ "Id" ] } } ], "properties": { "Id": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 10, "tags": "json:\"_id,string\" bson:\"_id,string\"" }, "ScreenName": { "description": "Full name associated with the profile. Maximum of 20 characters.", "type": "string", "minLength": 4, "maxLength": 20, "propertyOrder": 20 }, "Location": { "description": "The city or country describing where the user of the account is located. The contents are not normalized or geocoded in any way. Maximum of 30 characters.", "type": "string", "minLength": 0, "maxLength": 30, "propertyOrder": 30 }, "Description": { "description": "A description of the user owning the account. Maximum of 160 characters.", "type": "string", "minLength": 0, "maxLength": 160, "propertyOrder": 40 }, "CreatedAt": { "description": "Profile's creation time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 50 }, "UpdatedAt": { "description": "Profile's last update time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 60 }, "DeletedAt": { "description": "Profile's deletion time", "type": "string", "format": "date-time", "propertyOrder": 70 } }, "required": [ "ScreenName" ], "functions": { "One": { "type": "object", "description": "One returns the respective account with the given ID.", "title": "One", "properties": { "incoming": { "type": "number", "format": "int64", "minimum": 1 }, "outgoing": { "$ref": "#/definitions/Profile" } } }, "MarkAs": { "type": "object", "description": "MarkAs marks given account with given type constant, will be used mostly for marking as bot.", "title": "One", "properties": { "incoming": { "type": "object", "title": "MarkAsRequest", "properties": { "Id": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1 }, "TypeConstant": { "type": "string" } } }, "outgoing": { "$ref": "#/definitions/Profile" } } }, "Create": { "type": "object", "description": "Create creates a new profile on the system with given profile data.", "title": "Create", "properties": { "incoming": { "$ref": "#/definitions/Profile" }, "outgoing": { "$ref": "#/definitions/Profile" } } }, "Update": { "type": "object", "description": "Update updates a new profile on the system with given profile data.", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Profile" }, "outgoing": { "$ref": "#/definitions/Profile" } } }, "Delete": { "type": "object", "description": "Delete deletes the profile from the system with given profile id. Deletes are soft.", "title": "One", "properties": { "incoming": { "type": "number", "format": "int64", "minimum": 1 }, "outgoing": { "$ref": "#/definitions/Profile" } } } } }, "Account": { "type": "object", "title": "Account", "description": "Account represents a registered User", "generators": [ { "ddl": { "grants": [ "SELECT", "INSERT", "UPDATE" ], "primaryKey": [ "Id" ], "uniqueKeys": [ [ "Id" ], [ "URL" ] ], "foreignKeys": [ [ "ProfileID", "Account.Profile.Id" ] ] } } ], "properties": { "Id": { "description": "The unique identifier for a Account", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 10 }, "ProfileID": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 20 }, "FacebookID": { "description": "Unique ID for facebook.com", "type": "string", "minLength": 1, "propertyOrder": 30 }, "FacebookAccessToken": { "description": "Access token for facebook.com", "type": "string", "minLength": 1, "propertyOrder": 40 }, "FacebookSecretToken": { "description": "Secret token for facebook.com", "type": "string", "minLength": 1, "propertyOrder": 50 }, "EmailAddress": { "description": "Email Address of the Account", "type": "string", "format": "email", "propertyOrder": 60 }, "EmailStatusConstant": { "description": "Status of the Account's Email", "type": "string", "enum": [ "verified", "notVerified" ], "default": "notVerified", "propertyOrder": 70 }, "StatusConstant": { "description": "Status of the Account", "type": "string", "enum": [ "registered", "disabled", "spam" ], "default": "registered", "propertyOrder": 80 }, "CreatedAt": { "description": "Account's creation time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 90 }, "UpdatedAt": { "description": "Account's last update time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 100 }, "DeletedAt": { "description": "Account's deletion time", "type": "string", "format": "date-time", "propertyOrder": 110 } }, "required": [ "ProfileID", "FacebookID", "FacebookAccessToken", "FacebookSecretToken", "EmailAddress", "Password", "EmailStatusConstant" ], "functions": { "One": { "type": "object", "title": "One", "description": "One fetches an Account from system by its ID", "properties": { "incoming": { "type": "number", "format": "int64", "minimum": 1 }, "outgoing": { "$ref": "#/definitions/Account" } } }, "ByIDs": { "type": "object", "title": "ByIDs", "description": "ByIDs fetches multiple Accounts from system by their IDs", "properties": { "incoming": { "type": "array", "items": [ { "type": "number", "format": "int64", "minimum": 1 } ] }, "outgoing": { "type": "array", "items": [ { "$ref": "#/definitions/Account" } ] } } }, "ByFacebookIDs": { "type": "object", "title": "ByFacebookIDs", "description": "ByFacebookIDs fetches multiple Accounts from system by their FacebookIDs", "properties": { "incoming": { "type": "array", "items": [ { "type": "string", "minLength": 1 } ] }, "outgoing": { "type": "array", "items": [ { "$ref": "#/definitions/Account" } ] } } }, "Create": { "type": "object", "title": "One", "description": "Create registers and account in the system by the given data", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Update": { "type": "object", "description": "Update updates the account on the system with given account data.", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Delete": { "type": "object", "description": "Delete deletes the account from the system with given account id. Deletes are soft.", "title": "One", "properties": { "incoming": { "type": "number", "format": "int64", "minimum": 1 }, "outgoing": { "$ref": "#/definitions/Account" } } } } }, "FacebookProfile": { "type": "object", "title": "FacebookProfile", "description": "Holds Facebook Profiles", "generators": [ { "ddl": { "roleName": "twitter_db_role", "grants": [ "SELECT", "INSERT", "UPDATE" ], "primaryKey": [ "Id" ] } } ], "properties": { "Id": { "description": "The unique identifier for a Facebook Profile", "type": "string", "propertyOrder": 10 }, "FirstName": { "description": "First name for the Profile", "type": "string", "minLength": 1, "propertyOrder": 20 }, "MiddleName": { "description": "Middle name for the Profile. Optional", "type": "string", "propertyOrder": 30 }, "LastName": { "description": "Last name for the Profile", "type": "string", "propertyOrder": 40 }, "PictureURL": { "description": "Picture URL for the Profile", "type": "string", "propertyOrder": 50 } }, "required": [ "Id" ], "functions": { "One": { "type": "object", "title": "One", "description": "One fetches an FacebookProfile from system by its ID", "properties": { "incoming": { "type": "number", "format": "int64", "minimum": 1 }, "outgoing": { "$ref": "#/definitions/FacebookProfile" } } }, "ByIDs": { "type": "object", "title": "ByIDs", "description": "ByIDs fetches multiple FacebookProfile from system by their IDs", "properties": { "incoming": { "type": "array", "items": [ { "type": "string", "minimum": 1 } ] }, "outgoing": { "type": "array", "items": [ { "$ref": "#/definitions/FacebookProfile" } ] } } }, "Create": { "type": "object", "title": "Create", "description": "Create persists a FacebookProfile in the system", "properties": { "incoming": { "$ref": "#/definitions/FacebookProfile" }, "outgoing": { "$ref": "#/definitions/FacebookProfile" } } }, "Update": { "type": "object", "description": "Update updates the FacebookProfile on the system with given FacebookProfile data.", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/FacebookProfile" }, "outgoing": { "$ref": "#/definitions/FacebookProfile" } } } } }, "FacebookFriends": { "type": "object", "title": "FacebookFriends", "description": "Holds Facebook Friendship Status", "generators": [ { "ddl": { "roleName": "twitter_db_role", "grants": [ "SELECT", "INSERT", "DELETE" ], "primaryKey": [ "SourceId", "TargetId" ] } } ], "properties": { "SourceId": { "description": "The source unique identifier for a Facebook Profile, smaller one will be source.", "type": "string", "minLength": 1, "propertyOrder": 10 }, "TargetId": { "description": "The target unique identifier for a Facebook Profile, bigger one will be target.", "type": "string", "minLength": 1, "propertyOrder": 20 } }, "required": [ "SourceId", "TargetId" ], "functions": { "One": { "type": "object", "title": "One", "description": "One fetches a FacebookFriends from system with FacebookFriends, will be used for validating the existance of the friendship", "properties": { "incoming": { "$ref": "#/definitions/FacebookFriends" }, "outgoing": { "$ref": "#/definitions/FacebookFriends" } } }, "Mutuals": { "type": "object", "description": "Mutuals return mutual friend's Facebook IDs between given source id and target id. Source and Target are inclusive.", "title": "Mutuals", "properties": { "incoming": { "type": "array", "items": [ { "$ref": "#/definitions/FacebookFriends" } ] }, "outgoing": { "type": "array", "items": [ { "type": "string", "minimum": 1 } ] } } }, "Create": { "type": "object", "description": "Create creates a relationship between two facebook account. This function is idempotent", "title": "Create", "properties": { "incoming": { "$ref": "#/definitions/FacebookFriends" }, "outgoing": { "$ref": "#/definitions/FacebookFriends" } } }, "Delete": { "type": "object", "description": "Delete removes friendship.", "title": "Delete", "properties": { "incoming": { "$ref": "#/definitions/FacebookFriends" }, "outgoing": { "$ref": "#/definitions/FacebookFriends" } } } } } }, "properties": { "Config": { "$ref": "#/definitions/Config" }, "Profile": { "$ref": "#/definitions/Profile" }, "Account": { "$ref": "#/definitions/Account" }, "FacebookProfile": { "$ref": "#/definitions/FacebookProfile" }, "FacebookFriends": { "$ref": "#/definitions/FacebookFriends" } }, "required": [ "Config", "Profile", "Account", "FacebookProfile", "FacebookFriends" ] }
o31337
{ "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": [ "string", "null" ] }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": [ "boolean", "null" ] }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": [ "string", "null" ] } }, "required": [ "volumeID" ], "type": "object" }
kb_753_Normalized
{ "properties": { "action": { "enum": [ "CACHE", "NOCACHE", "MAY_CACHE", "MAY_NOCACHE", "INVAL" ], "type": "string" }, "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "flags": { "readonly": true, "type": "integer" }, "hits": { "readonly": true, "type": "integer" }, "invalgroups": { "type": "object" }, "invalobjects": { "type": "object" }, "newname": { "type": "string" }, "policyname": { "type": "string" }, "rule": { "type": "string" }, "storeingroup": { "type": "string" }, "undefaction": { "enum": [ "NOCACHE", "RESET" ], "type": "string" }, "undefhits": { "readonly": true, "type": "integer" } }, "title": "cachepolicy", "type": "object" }
o30265
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "type": "object", "properties": { "topicTemplate": { "title": "Topic Template", "type": "string", "minLength": 1 }, "messageTemplate": { "title": "Message Template", "type": "string", "minLength": 1 } }, "required": [ "topicTemplate", "messageTemplate" ] }
o6246
{ "$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" }, "access_limited": { "additionalProperties": false, "properties": { "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "Deprecated: auth_bypass_ids should be sent as a separate field" }, "organisations": { "$ref": "#/definitions/guid_list", "description": "A list of organisation content ids permitted access to this item" }, "users": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "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." }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publish_time": { "_format": "date-time", "type": "string" } }, "required": [ "publish_time" ], "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" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "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" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } }, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "A list of ids that will allow access to this item for non-authenticated users" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "coming_soon" ], "type": "string" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "_format": "date-time", "description": "Last time when the content received a major or minor update.", "type": "string" }, "links": { "additionalProperties": false, "properties": { "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." } }, "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" }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "coming_soon" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "type": "object" }
o21167
{ "properties": { "cuisine": { "description": "The cuisine type to search for", "type": "string" }, "location": { "description": "The location for restaurant search", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price range", "type": "number" }, "min_price": { "description": "The minimum price range", "type": "number" } }, "required": [ "min_price", "max_price" ], "type": "object" } }, "required": [ "location" ], "type": "object" }
search_restaurants_83e74281
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "adm", "is_test" ], "properties": { "adm": { "type": "array", "items": { "type": "object", "required": [ "id", "data" ], "properties": { "id": { "type": "string" }, "data": { "type": "object", "properties": { "img": { "type": "string" }, "text": { "type": "string" }, "app_url": { "type": "string" } } }, "click_through_url": { "type": "array", "items": { "type": "string" } }, "tracking_url": { "type": "array", "items": { "type": "string" } } } } }, "is_test": { "type": "integer", "enum": [ 0, 1 ] } } }
o19069
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "sensorId": { "type": "string" }, "temperature": { "type": "object", "properties": { "old": { "type": "number" }, "new": { "type": "number" } } } } }
o14451
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Okapi Permission Object", "type": "object", "properties": { "permissionName": { "type": "string" }, "displayName": { "type": "string" }, "description": { "type": "string" }, "subPermissions": { "type": "array", "items": { "type": "string" } }, "visible": { "type": "boolean" } }, "additionalProperties": false }
o24182
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "path": { "description": "A JSON Pointer path.", "type": "string" } }, "id": "https://json.schemastore.org/json-patch.json", "items": { "oneOf": [ { "additionalProperties": false, "required": ["value", "op", "path"], "properties": { "path": { "$ref": "#/definitions/path" }, "op": { "description": "The operation to perform.", "type": "string", "enum": ["add", "replace", "test"] }, "value": { "description": "The value to add, replace or test." } } }, { "additionalProperties": false, "required": ["op", "path"], "properties": { "path": { "$ref": "#/definitions/path" }, "op": { "description": "The operation to perform.", "type": "string", "enum": ["remove"] } } }, { "additionalProperties": false, "required": ["from", "op", "path"], "properties": { "path": { "$ref": "#/definitions/path" }, "op": { "description": "The operation to perform.", "type": "string", "enum": ["move", "copy"] }, "from": { "$ref": "#/definitions/path", "description": "A JSON Pointer path pointing to the location to move/copy from." } } } ] }, "title": "JSON schema for JSONPatch files", "type": "array" }
json-patch
{ "type": "object", "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "minProperties": 1, "maxProperties": 1, "additionalProperties": false, "properties": { "fabric_uuid": { "$id": "/properties/input/properties/fabric_uuid", "format": "uuid", "type": "string", "title": "The Fabric_uuid Schema", "description": "UUID of the fabric object created", "default": "", "examples": [ "123456789" ] }, "fabric_fq_name": { "$id": "/properties/input/properties/fabric_fq_name", "type": "array", "items": { "$id": "/properties/input/properties/fabric_fq_name/items", "type": "string", "title": "The Fabric_fq_name Schema", "description": "FQNAME of the fabric object created", "default": "", "examples": [ "default-global-system-config", "fabric01" ] } }, "manage_underlay": { "type": "boolean", "title": "Manage underlay networking", "description": "Set to true if need to configure device underlay networking" } } }
o8453
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_9a162d40
{ "$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": [ { "$ref": "#/definitions/multiple_content_types" } ], "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": { "change_history": { "$ref": "#/definitions/change_history" }, "department_analytics_profile": { "description": "Analytics identifier with which to record views", "type": "string" }, "downtime_message": { "description": "Text of the message alerting the user of service downtime", "type": "string" }, "external_related_links": { "$ref": "#/definitions/external_related_links" }, "hidden_search_terms": { "$ref": "#/definitions/hidden_search_terms" }, "introductory_paragraph": { "$ref": "#/definitions/body_html_and_govspeak" }, "more_information": { "$ref": "#/definitions/body_html_and_govspeak" }, "other_ways_to_apply": { "$ref": "#/definitions/body_html_and_govspeak" }, "start_button_text": { "$ref": "#/definitions/start_button_text" }, "transaction_start_link": { "_format": "uri", "description": "Link the Start button will lead the user to.", "type": "string" }, "variants": { "description": "List of transaction variants", "items": { "additionalProperties": false, "properties": { "introductory_paragraph": { "$ref": "#/definitions/body_html_and_govspeak" }, "more_information": { "$ref": "#/definitions/body_html_and_govspeak" }, "other_ways_to_apply": { "$ref": "#/definitions/body_html_and_govspeak" }, "slug": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "transaction_start_link": { "_format": "uri", "description": "Link the Start button will lead the user to.", "type": "string" } }, "required": [ "title", "slug" ], "type": "object" }, "type": "array" }, "what_you_need_to_know": { "$ref": "#/definitions/body_html_and_govspeak" }, "will_continue_on": { "$ref": "#/definitions/will_continue_on" } }, "type": "object" }, "external_link": { "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "title", "url" ], "type": "object" }, "external_related_links": { "items": { "$ref": "#/definitions/external_link" }, "type": "array" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "hidden_search_terms": { "description": "List of words/phrases the user can search for that aren't present on the page.", "items": { "type": "string" }, "type": "array" }, "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" }, "multiple_content_types": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } }, "required": [ "content_type", "content" ], "type": "object" }, "type": "array" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "start_button_text": { "description": "Custom text to be displayed on the green button that takes you to another page", "type": "string" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "will_continue_on": { "description": "Description of the website the adjoining external link will be taking the user to", "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" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "transaction" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "transaction" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21412
{ "additionalProperties": false, "description": "Schema for a local or remote push notification", "properties": { "action": { "description": "The action associated with the notification.", "maxLength": 1024, "type": [ "string", "null" ] }, "attachments": { "description": "Attachments added to the notification (they can be part of the 'data' field).", "items": { "additionalProperties": false, "description": "Attachment.", "properties": { "identifier": { "description": "The identifier of the attachment.", "maxLength": 1024, "type": "string" }, "type": { "description": "The type of attachment.", "maxLength": 1024, "type": "string" }, "url": { "_format": "uri", "description": "The url of the attachment.", "maxLength": 1024, "type": "string" } }, "required": [ "identifier", "url", "type" ], "type": "object" }, "type": [ "array", "null" ] }, "body": { "description": "The notification's body.", "maxLength": 4096, "type": "string" }, "bodyLocArgs": { "description": "Variable string values to be used in place of the format specifiers in bodyLocArgs to use to localize the body text to the user's current localization.", "items": { "description": "Item of bodyLocArgs.", "maxLength": 1024, "type": [ "string", "null" ] }, "minItems": 1, "type": [ "array", "null" ] }, "bodyLocKey": { "description": "The key to the body string in the app's string resources to use to localize the body text to the user's current localization.", "maxLength": 1024, "type": [ "string", "null" ] }, "category": { "description": "The category associated to the notification.", "maxLength": 1024, "type": [ "string", "null" ] }, "contentAvailable": { "description": "Indicates whether the application is notified of the delivery of the notification. When true the app is woken up (iOS only).", "type": [ "boolean", "null" ] }, "group": { "description": "The group which this notification is part of.", "maxLength": 1024, "type": [ "string", "null" ] }, "icon": { "description": "The icon associated to the notification (Android only).", "maxLength": 1024, "type": [ "string", "null" ] }, "notificationCount": { "description": "The number of items this notification represents. It's the badge number on iOS.", "maximum": 10000, "minimum": 0, "type": [ "integer", "null" ] }, "notificationTimestamp": { "_format": "date-time", "description": "The time when the event of the notification occurred.", "type": [ "string", "null" ] }, "sound": { "description": "The sound played when the device receives the notification.", "maxLength": 1024, "type": [ "string", "null" ] }, "subtitle": { "description": "The notification's subtitle (iOS only).", "maxLength": 1024, "type": [ "string", "null" ] }, "tag": { "description": "An identifier similar to 'group' but usable for different purposes (Android only).", "maxLength": 1024, "type": [ "string", "null" ] }, "threadIdentifier": { "description": "An identifier similar to 'group' but usable for different purposes (iOS only).", "maxLength": 1024, "type": [ "string", "null" ] }, "title": { "description": "The notification's title.", "maxLength": 1024, "type": "string" }, "titleLocArgs": { "description": "Variable string values to be used in place of the format specifiers in titleLocArgs to use to localize the title text to the user's current localization.", "items": { "description": "Item of titleLocArgs.", "maxLength": 1024, "type": [ "string", "null" ] }, "minItems": 1, "type": [ "array", "null" ] }, "titleLocKey": { "description": "The key to the title string in the app's string resources to use to localize the title text to the user's current localization.", "maxLength": 1024, "type": [ "string", "null" ] }, "trigger": { "description": "The trigger that raised the notification message.", "enum": [ "push", "location", "calendar", "timeInterval", "other" ], "type": "string" } }, "required": [ "title", "body", "trigger" ], "self": { "format": "jsonschema", "name": "message_notification", "vendor": "com.snowplowanalytics.mobile", "version": "1-0-0" }, "type": "object" }
sp_222_Normalized
{ "description": "ScaleStatus represents the current status of a scale subresource.", "properties": { "replicas": { "description": "actual number of observed instances of the scaled object.", "format": "int32", "type": [ "integer", "null" ] }, "selector": { "additionalProperties": { "type": [ "string", "null" ] }, "description": "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors", "type": [ "object", "null" ] }, "targetSelector": { "description": "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "type": [ "string", "null" ] } }, "required": [ "replicas" ], "type": "object" }
kb_922_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_7d8627f7
{ "properties": { "date_range": { "properties": { "end_date": { "description": "The end date of the news articles", "type": "string" }, "start_date": { "description": "The start date of the news articles", "type": "string" } }, "required": [ "start_date", "end_date" ], "type": "object" }, "keywords": { "description": "The keywords to search for in the news articles", "items": { "type": "string" }, "type": "array" }, "language": { "description": "The language of the news articles", "type": "string" } }, "required": [ "keywords", "language", "date_range" ], "type": "object" }
search_news_6d8254b9
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Cookie", "id": "#/definitions/cookie", "description": "A Cookie, that follows the [Google Chrome format](https://developer.chrome.com/extensions/cookies)", "properties": { "domain": { "type": "string", "description": "The domain for which this cookie is valid." }, "expires": { "oneOf": [ { "type": "string" }, { "type": "number" } ], "description": "When the cookie expires." }, "maxAge": { "type": "string" }, "hostOnly": { "type": "boolean", "description": "True if the cookie is a host-only cookie. (i.e. a request's URL domain must exactly match the domain of the cookie)." }, "httpOnly": { "type": "boolean", "description": "Indicates if this cookie is HTTP Only. (if True, the cookie is inaccessible to client-side scripts)" }, "name": { "type": "string", "description": "This is the name of the Cookie." }, "path": { "type": "string", "description": "The path associated with the Cookie." }, "secure": { "type": "boolean", "description": "Indicates if the 'secure' flag is set on the Cookie, meaning that it is transmitted over secure connections only. (typically HTTPS)" }, "session": { "type": "boolean", "description": "True if the cookie is a session cookie." }, "value": { "type": "string", "description": "The value of the Cookie." }, "extensions": { "type": "array", "description": "Custom attributes for a cookie go here, such as the [Priority Field](https://code.google.com/p/chromium/issues/detail?id=232693)" } }, "required": [ "domain", "path" ] }
o67599
{ "id": "https://letsencrypt.org/schema/01/signature#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "Schema for a signature (alg RS256/e=65537 or P-256 ONLY)", "type": "object", "required": [ "alg", "nonce", "sig", "jwk" ], "anyOf": [ { "properties": { "alg": { "enum": [ "RS256" ] }, "nonce": { "type": "string" }, "sig": { "type": "string", "pattern": "^[-_=0-9A-Za-z]+$" }, "jwk": { "type": "object", "required": [ "kty", "e", "n" ], "properties": { "kty": { "enum": [ "RSA" ] }, "e": { "enum": [ "AQAB" ] }, "n": { "type": "string", "pattern": "^[-_=0-9A-Za-z]+$" } } } } }, { "properties": { "alg": { "enum": [ "ES256" ] }, "nonce": { "type": "string" }, "sig": { "type": "string", "pattern": "^[-_=0-9A-Za-z]+$" }, "jwk": { "type": "object", "required": [ "kty", "crv", "x", "y" ], "properties": { "kty": { "enum": [ "EC" ] }, "crv": { "enum": [ "P-256" ] }, "x": { "type": "string", "pattern": "^[-_=0-9A-Za-z]+$" }, "y": { "type": "string", "pattern": "^[-_=0-9A-Za-z]+$" } } } } } ] }
o40357