json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", "properties": { "averageUtilization": { "description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type", "format": "int32", "type": [ "integer", "null" ] }, "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "type": { "description": "type represents whether the metric type is Utilization, Value, or AverageValue", "type": [ "string", "null" ] }, "value": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the target value of the metric (as a quantity)." } }, "required": [ "type" ], "type": "object" }
kb_559_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "description": "schema for type code", "type": "object", "properties": { "Z1K1": { "enum": [ "Z16" ] }, "Z1K2": { "type": "string", "pattern": "^[a-z_A-Z0-9]+$" }, "Z1K3": {}, "Z1K4": {}, "Z1K5": {}, "Z16K1": { "enum": [ "javascript", "python" ] }, "Z16K2": { "type": "string" } }, "required": [ "Z1K1", "Z16K1", "Z16K2" ], "additionalProperties": false }
o44187
{ "properties": { "metrics": { "form": true, "properties": { "enabled": { "description": "Create a side-car container to expose Prometheus metrics", "form": true, "title": "Create Prometheus metrics exporter", "type": "boolean" }, "serviceMonitor": { "properties": { "enabled": { "description": "Create a ServiceMonitor to track metrics using Prometheus Operator", "form": true, "hidden": { "condition": false, "value": "metrics.enabled" }, "title": "Create Prometheus Operator ServiceMonitor", "type": "boolean" } }, "type": "object" } }, "title": "Prometheus metrics details", "type": "object" }, "mongodbDatabase": { "description": "Name of the custom database to be created during the 1st initialization of MongoDB", "form": true, "title": "MongoDB custom database", "type": "string" }, "mongodbPassword": { "description": "Defaults to a random 10-character alphanumeric string if not set", "form": true, "hidden": { "condition": false, "value": "usePassword" }, "title": "Password for MongoDB custom user", "type": "string" }, "mongodbRootPassword": { "description": "Defaults to a random 10-character alphanumeric string if not set", "form": true, "hidden": { "condition": false, "value": "usePassword" }, "title": "MongoDB admin password", "type": "string" }, "mongodbUsername": { "description": "Name of the custom user to be created during the 1st initialization of MongoDB. This user only has permissions on the MongoDB custom database", "form": true, "title": "MongoDB custom user", "type": "string" }, "persistence": { "form": true, "properties": { "enabled": { "description": "Enable persistence using Persistent Volume Claims", "form": true, "title": "Enable persistence", "type": "boolean" }, "size": { "form": true, "hidden": { "condition": false, "value": "persistence.enabled" }, "render": "slider", "sliderMax": 100, "sliderMin": 1, "sliderUnit": "Gi", "title": "Persistent Volume Size", "type": "string" } }, "title": "Persistence configuration", "type": "object" }, "replicaSet": { "form": true, "properties": { "enabled": { "form": true, "title": "Enable replicaset configuration", "type": "boolean" }, "replicas": { "form": true, "hidden": { "condition": false, "value": "replicaSet.enabled" }, "properties": { "arbiter": { "description": "Number of arbiter node replicas to deploy", "form": true, "title": "Arbiter node replicas", "type": "integer" }, "secondary": { "description": "Number of secondary node replicas to deploy", "form": true, "title": "Secondary node replicas", "type": "integer" } }, "title": "Number of replicas", "type": "object" } }, "title": "Replicaset configuration", "type": "object" }, "usePassword": { "form": true, "title": "Enable password authentication", "type": "boolean" }, "volumePermissions": { "hidden": { "condition": false, "value": "persistence.enabled" }, "properties": { "enabled": { "description": "Use an init container to set required folder permissions on the data volume before mounting it in the final destination", "form": true, "title": "Enable Init Containers", "type": "boolean" } }, "type": "object" } }, "type": "object" }
o84050
{ "$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" }, "breadcrumbs": { "$ref": "#/definitions/hmrc_manual_breadcrumbs" }, "change_history": { "$ref": "#/definitions/change_history" }, "child_section_groups": { "$ref": "#/definitions/hmrc_manual_child_section_groups" }, "manual": { "$ref": "#/definitions/manual_section_parent" }, "organisations": { "$ref": "#/definitions/manual_organisations" }, "section_id": { "type": "string" } }, "required": [ "section_id", "manual" ], "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" }, "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 }, "hmrc_manual_breadcrumbs": { "description": "Breadcrumbs for HMRC manuals based on section", "items": { "additionalProperties": false, "properties": { "base_path": { "$ref": "#/definitions/absolute_path" }, "section_id": { "type": "string" } }, "required": [ "base_path", "section_id" ], "type": "object" }, "type": "array" }, "hmrc_manual_child_section_groups": { "description": "Grouped sections of an HMRC manual. Differs from manuals as section_id is required and group titles are optional.", "items": { "additionalProperties": false, "properties": { "child_sections": { "items": { "additionalProperties": false, "properties": { "base_path": { "$ref": "#/definitions/absolute_path" }, "description": { "type": "string" }, "section_id": { "type": "string" }, "title": { "type": "string" } }, "required": [ "section_id", "title", "description", "base_path" ], "type": "object" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "child_sections" ], "type": "object" }, "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" }, "manual_organisations": { "description": "A manual\u2019s organisations. TODO: Switch to use organisations in links", "items": { "additionalProperties": false, "properties": { "abbreviation": { "type": "string" }, "title": { "type": "string" }, "web_url": { "type": "string" } }, "required": [ "title", "abbreviation", "web_url" ], "type": "object" }, "type": "array" }, "manual_section_parent": { "additionalProperties": false, "description": "The parent manual for a manual section", "properties": { "base_path": { "$ref": "#/definitions/absolute_path" } }, "required": [ "base_path" ], "type": "object" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "hmrc_manual_section" ], "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": [ "hmrc_manual_section" ], "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" }
o21260
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "order": { "additionalProperties": false, "properties": { "customerName": { "type": "string" }, "date": { "pattern": "^([0][1-9]|[1][0-2])-([0][0-9]|[1][0-9]|[2][0-9]|[3][0-1])-20\\d{2}$", "type": "string" }, "drink": { "additionalProperties": false, "properties": { "drinkType": { "enum": [ "Latte", "Espresso", "Cappuccino", "Chai", "Tea", "Steamer", "Hot Chocolate" ], "type": "string" }, "flavor": { "enum": [ "Carmel", "Chocolate", "Hazelnut", "Vanilla", "Peppermint", "White Chocolate" ], "type": "string" }, "milk": { "enum": [ "Non-Fat", "Whole", "Breve", "Soy", "Almond" ], "type": "string" }, "size": { "enum": [ "Small", "Medium", "Large", "Extra-Large", "Bucket" ], "type": "string" } }, "required": [ "drinkType", "size", "milk" ], "type": "object" }, "espressoConCard": { "pattern": "^[A-Fa-f0-9]{8}-([A-Fa-f0-9]{4}-){3}[A-Fa-f0-9]{12}$", "type": "string" }, "muffin": { "enum": [ "Blueberry", "Double Berry Crumb", "Carrot Cake", "Chocolate Chip", "Double Chocolate Chip", "Cherry Cheesecake", "Cinnamon Cheesecake", "Chocolate Cheesecake", "Banana Nut" ], "type": "string" }, "orderId": { "type": "integer" }, "time": { "pattern": "^([0-2][0-3]|[0-1][0-9])(:[0-5][0-9]){2}$", "type": "string" }, "totalPrice": { "type": "integer" } }, "required": [ "orderId", "customerName", "date", "time", "espressoConCard", "totalPrice" ], "type": "object" } }, "required": [ "order" ], "type": "object" }
o81600
{ "title": "Configuration schema for aws_bootstrap script", "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "LOG_LEVEL": { "type": "string", "description": "The verbosity of logging", "default": "INFO", "enum": [ "CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG", "NOTSET", "SILENT" ] }, "CLOUDFORMATION_TEMPLATE_S3": { "type": "object", "properties": { "region": { "type": "string", "default": "%%AWS_STACK_REGION%%" }, "bucket": { "type": "string", "default": "%%AWS_S3_DEFAULT_BUCKET%%" }, "key": { "type": "string", "default": "cloudformation/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.com.json" } } }, "CLOUDFORMATION_TEMPLATE_LOCAL_OUTPUTFILE": { "type": "string", "description": "A full file path of where to write out the CloudFormation templace createdby aws_bootstrap.py script. Setting to 'stdout' will cause aws_bootstrap.py to output the file to stdout. If left unset, no file will be written out." }, "EXPANDED_CONFIG_FILE_OUTPUTFILE": { "type": "string", "description": "A full file path of where to write out the expanded configuration file used/cretecd by aws_bootstrap.py", "default": "%%temporary_directory%%%%SEP%%%%AWS_STACK_PREFIX%%_register.citybridge.com%%AWS_STACK_POSTFIX%%.json" }, "ALARM_EMAIL": { "type": "string", "description": "Email address to send message to if CloudWatch alarm fires. If unset CloudWatch alarms will not emmit an email" }, "AWS_S3_DEFAULT_BUCKET": { "type": "string", "description": "Default s3 bucket to use for file uploads", "default": "register.citybridge.com" }, "AWS_STACK_PREFIX": { "type": "string", "descripton": "The name of the prefix to apply to the stack service and IAM names", "default": "%%USERNAME%%" }, "AWS_STACK_POSTFIX": { "type": "string", "descripton": "The name of the prefix to apply to the stack service and IAM names", "default": "-dev" }, "AWS_STACK_NAME": { "type": "string", "descripton": "The name of the stack", "default": "%%AWS_STACK_PREFIX%%_register.citybridge.com%%AWS_STACK_POSTFIX%%" }, "AWS_STACK_REGION": { "description": "AWS region that ELK stack lives in. Leave blank to skip monitoring ELK metrics", "type": "string", "default": "us-west-2", "enum": [ "us-west-2", "us-west-1" ] }, "EMAIL_ENCRYPTION_KEY": { "description": "Infomration about the key pair used for encrypting and decrypting client details", "default": { "key_name_format": "%%AWS_STACK_NAME%%_grr_email", "iam_server_certificate_name": "%%AWS_STACK_NAME%%_grr_email" }, "oneOf": [ { "$ref": "#/definitions/existingrsakeypair" }, { "$ref": "#/definitions/newrsakeypair" } ] }, "AWS_ELB_SSL_KEY": { "description": "Infomration about the key pair used for HTTPS handling by the AWS Elastic Beanstalk Service. If AWS_ELB_ASSERT_SSL is true Leaving this raise an error", "default": { "key_name_format": "%%AWS_STACK_NAME%%_grr_ssl", "iam_server_certificate_name": "%%AWS_STACK_NAME%%_grr_ssl", "iam_server_certificate_overwrite": true }, "oneOf": [ { "$ref": "#/definitions/existingrsakeypair" }, { "$ref": "#/definitions/newrsakeypair" } ] }, "AWS_STACK_ELEMENTS": { "type": "object", "description": "The name of the role and elements to deploy. Override default values to use existing services", "default": {}, "properties": { "AWS_IAM_LAMBDA_ROLE": { "type": "string", "description": "IAM Role for Lambda function running globalreach_registration_sqsdrain", "default": "%%AWS_STACK_PREFIX%%_grr_lambda_role%%AWS_STACK_POSTFIX%%" }, "AWS_IAM_ELASTIC_BEANSTALK_ROLE": { "type": "string", "description": "IAM Role for Elastic Beanstalk application running globalreach_registration", "default": "%%AWS_STACK_PREFIX%%_grr_elasticbeanstalk_role%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_LAMBDA": { "default": { "sourcebundle_files": [ "globalreach_registration_sqsdrain.py", "globalreach_registration_sqsdrain.json" ], "name": "%%AWS_STACK_PREFIX%%_grr_lambda%%AWS_STACK_POSTFIX%%", "sourcebundle_s3_key": "source/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.lambda.zip", "function_handler": "globalreach_registration_sqsdrain.lambda_handler" }, "$ref": "#/definitions/sourcebundle" }, "AWS_SERVICE_ELASTIC_BEANSTALK": { "default": { "sourcebundle_files": [ "globalreach_registration.py", "registrationutils.py", "requirements.txt", "aws_utils.py", "schemas/globalreach_registration.requestschema.json", "schemas/globalreach_registration.responseschema.json", ".ebextensions/environment.config" ], "name": "%%AWS_STACK_PREFIX%%_grr_elasticbeanstalk%%AWS_STACK_POSTFIX%%", "sourcebundle_s3_key": "source/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.com.zip" }, "$ref": "#/definitions/sourcebundle" }, "AWS_SERVICE_ELASTIC_LOAD_BALANCER": { "type": "string", "description": "Elastic Load Balancer HTTPS / HTTP frontend", "default": "%%AWS_STACK_PREFIX%%_grr_elb%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_SQS": { "type": "string", "description": "SQS queue to mediate between AWS Lambda and AWS Elastic Beanstalk", "default": "%%AWS_STACK_PREFIX%%_grr_queue%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_DYNAMO_TABLE": { "type": "string", "description": "DynamoDB table to store client details", "default": "%%AWS_STACK_PREFIX%%_grr_table%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_CLOUDWATCH_ALARM": { "type": "string", "description": "AWS CloudWatch alarm to monitor SQS health metrics", "default": "%%AWS_STACK_PREFIX%%_grr_cwalarm_queuehealth%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_APIGATEWAY_KEYS": { "type": "string", "description": "API Access tokens stored and manged by AWS API Gateway", "default": "%%AWS_STACK_PREFIX%%_grr_apikeys%%AWS_STACK_POSTFIX%%" }, "AWS_SERVICE_S3_BUCKET": { "type": "string", "description": "S3 Bucket where configuration and runtime data is stored", "default": "%%AWS_STACK_PREFIX%%-grr-bucket%%AWS_STACK_POSTFIX%%" } } }, "temporary_directory": { "type": "string", "default": "%%PWD%%%%SEP%%tmp%%SEP%%%%DATE%%-grrawsbootstrap/", "description": "A directory that can be used to create tempoaraty files" } }, "required": [], "additionalproperties": false, "definitions": { "sourcebundle": { "type": "object", "description": "Elastic Beanstalk function running globalreach_registration", "default": {}, "properties": { "name": { "type": "string", "description": "The name of the resource", "default": "%%AWS_STACK_PREFIX%%_grr_sourcebundle%%AWS_STACK_POSTFIX%%" }, "sourcebundle_s3_bucket": { "type": "string", "description": "The S3 bucket that the source code for the web application will be uploaded to", "default": "%%AWS_S3_DEFAULT_BUCKET%%" }, "sourcebundle_s3_key": { "type": "string", "description": "The key in the sourcebundle_s3_bucket where the source bundle will be uploaded to. in the format /path/to/file/filename.zip", "default": "source/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.com.zip" }, "sourcebundle_app_root": { "type": "string", "default": "%%PWD%%%%SEP%%", "description": "The directory that is the top of the application on the file system. Defaults to pwd" }, "sourcebundle_s3_bucket_region": { "type": "string", "description": "The region the S3 bucket will be in", "default": "%%AWS_STACK_REGION%%" }, "sourcebundle_files": { "type": "array", "items": { "type": "string" }, "default": [] } } }, "existingrsakeypair": { "type": "object", "properties": { "iam_server_certificate_name": { "type": "string", "description": "Full file path the the public key file" }, "X509_key_file_path": { "type": "string", "description": "Full file path the the signed certificate for this key" }, "public_key_file_path": { "type": "string", "description": "Full file path the the public key file" }, "private_key_file_path": { "type": "string", "description": "Full file path the the private key file" }, "publickey_s3_bucket": { "type": "string", "description": "The S3 bucket that the source code for the web application will be uploaded to", "default": "%%AWS_S3_DEFAULT_BUCKET%%" }, "publickey_s3_key": { "type": "string", "description": "The key in the sourcebundle_s3_bucket where the source bundle will be uploaded to. in the format /path/to/file/filename.zip", "default": "keys/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.com.email.pub" }, "publickey_s3_bucket_region": { "type": "string", "description": "The region the S3 bucket will be in", "default": "%%AWS_STACK_REGION%%" }, "no_passphrase": { "type": "boolean", "description": "FOR TESTING ONLY. Don't prompt for a passphrase on unlocking private key. Private keys with a passphrase will fail if set to true. Deafults to false.", "default": false } }, "additioalProperties": false, "required": [ "public_key_file_path", "private_key_file_path" ] }, "newrsakeypair": { "type": "object", "properties": { "iam_server_certificate_name": { "type": "string", "description": "Full file path the the public key file", "default": "grr" }, "key_name_format": { "type": "string", "description": "The format of the key pair naming. Will product [key_name_format].pub and [key_name_format].pem", "default": "grr_%%DATE%%" }, "key_directory": { "type": "string", "description": "The directory to put the key files", "default": "%%temporary_directory%%%%SEP%%/keys" }, "key_size": { "type": "number", "description": "The key size in bits. Defaults to 2048", "minimum": 1024, "multipleOf": 256, "default": 2048 }, "private_key_has_passphrase": { "type": "boolean", "description": "Use a passphrase to lock the private key. User will be prompted. Defaults to true", "default": true }, "publickey_s3_bucket": { "type": "string", "description": "The S3 bucket that the source code for the web application will be uploaded to", "default": "%%AWS_S3_DEFAULT_BUCKET%%" }, "publickey_s3_key": { "type": "string", "description": "The key in the sourcebundle_s3_bucket where the source bundle will be uploaded to. in the format /path/to/file/filename.zip", "default": "keys/%%AWS_STACK_PREFIX%%_register%%AWS_STACK_POSTFIX%%.citybridge.com.email.pub" }, "publickey_s3_bucket_region": { "type": "string", "description": "The region the S3 bucket will be in", "default": "%%AWS_STACK_REGION%%" }, "signature": { "type": "object", "description": "Details to use to create a self signed certificate", "default": {}, "properties": { "countryName": { "type": "string", "default": "US" }, "stateOrProvinceName": { "type": "string", "default": "New Jersey" }, "organizationName": { "type": "string", "default": "Banzai Institue" }, "organizationUnit": { "type": "string", "default": "Stragtegic Information" }, "localityName": { "type": "string", "default": "Holland" }, "serialNumber": { "type": [ "integer", "string" ], "default": "%%DATE_UTC_EPOCH%%" }, "domainComponent": { "type": "string", "default": "*" } } } }, "additioalProperties": false, "required": [] } } }
o69719
{ "properties": { "property_details": { "properties": { "bedrooms": { "description": "The number of bedrooms in the property", "type": "integer" }, "location": { "description": "The location of the property", "type": "string" }, "rent_per_month": { "description": "The rent per month for the property", "type": "number" } }, "required": [ "location", "bedrooms", "rent_per_month" ], "type": "object" } }, "required": [ "property_details" ], "type": "object" }
calculate_rental_income_bce2d46e
{ "description": "NamespaceSpec describes the attributes on a Namespace.", "properties": { "finalizers": { "description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "type": "object" }
kb_579_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Custom Types", "description": "Custom Types", "definitions": { "address": { "type": "string" } }, "properties": { "address": { "$ref": "#/definitions/address" } }, "required": [ "address" ] }
o53538
{ "additionalProperties": false, "description": "RecordSet", "properties": { "recordset": { "additionalProperties": false, "properties": { "action": { "description": "Recordset Action", "enum": [ "CREATE", "DELETE", "UPDATE", "NONE" ], "readOnly": true, "type": "string" }, "created_at": { "description": "Date and time of RecordSet creation", "format": "date-time", "readOnly": true, "type": "string" }, "description": { "description": "Description for the RecordSet", "maxLength": 160, "type": [ "string", "null" ] }, "id": { "description": "RecordSet identifier", "format": "uuid", "readOnly": true, "type": "string" }, "links": { "additionalProperties": false, "properties": { "self": { "format": "url", "type": "string" } }, "type": "object" }, "name": { "description": "RecordSet name", "format": "hostname", "immutable": true, "maxLength": 255, "type": "string" }, "records": { "default": null, "description": "Records in the RecordSet", "type": [ "array", "null" ] }, "status": { "description": "Recordset Status", "enum": [ "ACTIVE", "PENDING", "ERROR" ], "readOnly": true, "type": "string" }, "ttl": { "default": null, "description": "Default time to live", "maximum": 2147483647, "minimum": 0, "type": [ "integer", "null" ] }, "type": { "description": "RecordSet type (TODO: Make types extensible)", "enum": [ "A", "AAAA", "CNAME", "MX", "SRV", "TXT", "SPF", "NS", "PTR", "SSHFP", "SOA" ], "type": "string" }, "updated_at": { "description": "Date and time of last recordset modification", "format": "date-time", "readOnly": true, "type": [ "string", "null" ] }, "version": { "description": "RecordSet version number", "readOnly": true, "type": "integer" }, "zone_id": { "description": "Zone identifier", "format": "uuid", "immutable": true, "type": "string" } }, "required": [ "name", "type" ], "type": "object" } }, "required": [ "recordset" ], "title": "recordset" }
o55351
{ "properties": { "end_time": { "description": "The end time of the meeting", "format": "date-time", "type": "string" }, "participants": { "description": "Email addresses of the meeting participants", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the meeting", "format": "date-time", "type": "string" }, "title": { "description": "The title of the meeting", "type": "string" } }, "required": [ "title", "participants", "start_time", "end_time" ], "type": "object" }
schedule_meeting_edf5fbca
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Documentation", "description": "Add documentation", "type": "object", "properties": { "CADI_ID": { "title": "CADI ID", "type": "string" }, "url": { "title": "URL", "type": "string" }, "keyword": { "title": "Keyword", "type": "string" }, "comment": { "title": "Comment", "type": "string" } } }
o89660
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_Endpoint": { "description": "Endpoint represents a single logical \"backend\" implementing a service.", "properties": { "addresses": { "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "conditions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointConditions", "description": "conditions contains information about the current status of the endpoint." }, "hostname": { "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must pass DNS Label (RFC 1123) validation.", "type": "string" }, "targetRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "targetRef is a reference to a Kubernetes object that represents this endpoint." }, "topology": { "additionalProperties": { "type": "string" }, "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n where the endpoint is located. This should match the corresponding\n node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n endpoint is located. This should match the corresponding node label.", "type": "object" } }, "required": [ "addresses" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointConditions": { "description": "EndpointConditions represents the current condition of an endpoint.", "properties": { "ready": { "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready.", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointPort": { "description": "EndpointPort represents a Port used by an EndpointSlice", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": "string" }, "port": { "_format": "int32", "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.", "properties": { "addressType": { "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.", "type": [ "string", "null" ] }, "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "endpoints": { "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_Endpoint" }, "type": [ "array", "null" ], "x-kubernetes-list-type": "atomic" }, "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": [ "EndpointSlice" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "ports": { "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointPort" }, "type": [ "array", "null" ], "x-kubernetes-list-type": "atomic" } }, "required": [ "addressType", "endpoints" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "discovery.k8s.io", "kind": "EndpointSlice", "version": "v1beta1" } ] }
kb_308_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_756865b5
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1_JobSpec": { "description": "JobSpec describes how the job execution will look like.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", "type": "integer" }, "backoffLimit": { "_format": "int32", "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "type": "integer" }, "completions": { "_format": "int32", "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer" }, "manualSelector": { "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", "type": "boolean" }, "parallelism": { "_format": "int32", "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" }, "ttlSecondsAfterFinished": { "_format": "int32", "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.", "type": "integer" } }, "required": [ "template" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1beta1_JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job 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 of the jobs created from this template. 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_batch_v1_JobSpec", "description": "Specification of the desired behavior of the job. 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_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": "CronJobSpec describes how the job execution will look like and when it will actually run.", "properties": { "concurrencyPolicy": { "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", "type": [ "string", "null" ] }, "failedJobsHistoryLimit": { "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", "format": "int32", "type": [ "integer", "null" ] }, "jobTemplate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_batch_v1beta1_JobTemplateSpec", "description": "Specifies the job that will be created when executing a CronJob." }, "schedule": { "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", "type": [ "string", "null" ] }, "startingDeadlineSeconds": { "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", "format": "int64", "type": [ "integer", "null" ] }, "successfulJobsHistoryLimit": { "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", "format": "int32", "type": [ "integer", "null" ] }, "suspend": { "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", "type": [ "boolean", "null" ] } }, "required": [ "schedule", "jobTemplate" ], "type": "object" }
kb_149_Normalized
{ "description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.", "properties": { "max": { "description": "max is the end of the range, inclusive.", "format": "int32", "type": [ "integer", "null" ] }, "min": { "description": "min is the start of the range, inclusive.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "min", "max" ], "type": "object" }
kb_416_Normalized
{ "additionalProperties": true, "description": "Schema for a SendGrid bounce event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/", "properties": { "asm_group_id": { "description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.", "maximum": 32767, "minimum": 0, "type": "integer" }, "category": { "description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "cert_error": { "description": "No longer found in the SendGrid documentation; possibly deprecated", "type": "string" }, "email": { "_format": "email", "description": "The email address of the recipient", "type": "string" }, "ip": { "_format": "ipv4", "description": "The IP address used to send the email. For open and click events, it is the IP address of the recipient who engaged with the email.", "type": "string" }, "marketing_campaign_id": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "integer" }, "marketing_campaign_name": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "string" }, "marketing_campaign_split_id": { "description": "Marketing campaign split id", "type": "integer" }, "marketing_campaign_version": { "description": "Displayed in the event data for emails sent as part of an A/B Test. The value for marketing_campaign_version are returned as A, B, C, etc.", "type": "string" }, "newsletter": { "additionalProperties": true, "description": "Legacy Marketing Email tool fields", "properties": { "newsletter_id": { "type": "string" }, "newsletter_send_id": { "type": "string" }, "newsletter_user_list_id": { "type": "string" } }, "type": "object" }, "reason": { "description": "Any sort of error response returned by the receiving server that describes the reason this event type was triggered", "type": "string" }, "sg_event_id": { "description": "A unique ID to this event that you can use for deduplication purposes. These IDs are up to 100 characters long and are URL safe.", "maxLength": 4096, "minLength": 22, "type": "string" }, "sg_message_id": { "description": "A unique, internal SendGrid ID for the message. The first half of this is pulled from the smtp-id.", "type": "string" }, "smtp-id": { "description": "A unique ID attached to the message by the originating system", "type": "string" }, "status": { "description": "Status code string. Corresponds to HTTP status code - for example, a JSON response of 5.0.0 is the same as a 500 error response.", "type": "string" }, "timestamp": { "_format": "date-time", "description": "The timestamp of when the message was sent", "type": "string" }, "tls": { "description": "Indicates whether TLS encription was used in sending this message. For more information about TLS, see the SendGrid TLS Glossary page.", "type": [ "string", "integer" ] }, "type": { "description": "Type of bounce, eg Bounce/Blocked/Expired", "type": "string" } }, "self": { "format": "jsonschema", "name": "bounce", "vendor": "com.sendgrid", "version": "2-0-0" }, "type": "object" }
sp_179_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "demo", "description": "Reference data for the calculation of child support", "properties": { "MARate": { "type": "array", "title": "Alimony rate", "description": "Maintenance rate based on the access and accommodation and the number of children", "items": { "type": "object", "properties": { "id": { "type": "integer", "description": "internal identifier", "title": "id [primarykey:1, autoincrement:18, type:integer]" }, "AARight": { "type": "integer", "description": "Visitation and accommodation (1: reduced , 2 : classic, 3: alternated)", "oneOf": [ { "type": "integer", "enum": [ 1 ], "title": "reduced" }, { "type": "integer", "enum": [ 2 ], "title": "classic" }, { "type": "integer", "enum": [ 3 ], "title": "alternated" } ], "default": 1, "title": "Visitation rights and accommodation [type:choice]" }, "nChildren": { "type": "integer", "description": "Number of children", "default": 1, "title": "Number of children [type:integer]" }, "rate": { "type": "number", "description": "Alimony rate", "title": "Taux [type:percent]" } }, "required": [ "id", "AARight", "nChildren", "rate" ] } } }, "required": [ "MARate" ] }
o39484
{ "$schema": "http://json-schema.org/draft-04/schema#", "allOf": [ { "$ref": "#/definitions/myType" } ], "definitions": { "myType": { "type": "object", "properties": { "dog": { "type": "string" } }, "required": [ "dog" ] } } }
o41645
{ "properties": { "amount_due": { "description": "The amount due in the invoice", "type": "number" }, "client_name": { "description": "The name of the client", "type": "string" }, "due_date": { "description": "The due date of the invoice", "type": "string" }, "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" } }, "required": [ "client_name", "amount_due", "items" ], "type": "object" }
create_invoice_81c42de6
{ "properties": { "id": { "description": "Name of the cluster. Will be used as the name of the underlying pool.", "type": "string" }, "vm_count": { "description": "The number of nodes in this cluster", "minimum": 1, "type": "integer" }, "vm_size": { "description": "The Azure VM SKU Descriptor. Using SKUs that provide GPUs will default to computing with GPUs if possible.", "enum": [ "STANDARD_A1", "STANDARD_A2", "STANDARD_A3", "STANDARD_A4", "STANDARD_A5", "STANDARD_A6", "STANDARD_A7", "STANDARD_A8", "STANDARD_A9", "STANDARD_A10", "STANDARD_A11", "STANDARD_D1", "STANDARD_D2", "STANDARD_D3", "STANDARD_D4", "STANDARD_D11", "STANDARD_D12", "STANDARD_D13", "STANDARD_D14", "STANDARD_D1_V2", "STANDARD_D2_V2", "STANDARD_D3_V2", "STANDARD_D4_V2", "STANDARD_D5_V2", "STANDARD_D11_V2", "STANDARD_D12_V2", "STANDARD_D13_V2", "STANDARD_D14_V2", "STANDARD_D15_V2", "STANDARD_F1", "STANDARD_F2", "STANDARD_F4", "STANDARD_F8", "STANDARD_F16", "STANDARD_G1", "STANDARD_G2", "STANDARD_G3", "STANDARD_G4", "STANDARD_G5", "STANDARD_H8", "STANDARD_H16", "STANDARD_H8M", "STANDARD_H16M", "STANDARD_H16R", "STANDARD_H16MR", "STANDARD_NV6", "STANDARD_NV12", "STANDARD_NV24", "STANDARD_NC6", "STANDARD_NC12", "STANDARD_NC24," ] } }, "required": [ "id", "vm_size", "vm_count" ], "title": "Batch Deep Learning Cluster Configuration", "type": "object" }
o51078
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "address": { "type": "object", "properties": { "street_address": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" } }, "required": [ "street_address", "city", "state" ] } }, "type": "object", "title": "jurisdiction", "description": "A bigger address using res or bus...", "properties": { "billing_address": { "$ref": "#/definitions/address" }, "shipping_address": { "allOf": [ { "$ref": "#/definitions/address" }, { "properties": { "type": { "enum": [ "residential", "business" ] } }, "required": [ "type" ] } ] } } }
o47139
{ "definitions": { "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "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", "null" ] }, "type": [ "array", "null" ] }, "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", "null" ] }, "type": [ "array", "null" ] }, "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", "null" ], "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ], "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": [ "boolean", "null" ] }, "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", "null" ], "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", "null" ], "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", "null" ] } }, "required": [ "name" ], "type": "object" }
kb_120_Normalized
{ "properties": { "end_time": { "description": "The end time of the event (YYYY-MM-DD HH:MM:SS)", "format": "date-time", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_time": { "description": "The start time of the event (YYYY-MM-DD HH:MM:SS)", "format": "date-time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_2deaacac
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "currentVersion": { "type": "number" }, "id": { "type": "integer" }, "name": { "type": "string" }, "type": { "type": "string" }, "serviceItemId": { "type": "string" }, "displayField": { "type": "string" }, "description": { "type": "string" }, "copyrightText": { "type": "string" }, "defaultVisibility": { "type": "boolean" }, "editingInfo": { "type": "object", "properties": { "lastEditDate": { "type": "integer" } }, "required": [ "lastEditDate" ] }, "multiScaleGeometryInfo": { "type": "object", "properties": { "levels": { "type": "array", "items": { "type": "integer" } } }, "required": [ "levels" ] }, "relationships": { "type": "array", "items": {} }, "isDataVersioned": { "type": "boolean" }, "supportsCalculate": { "type": "boolean" }, "supportsTruncate": { "type": "boolean" }, "supportsAttachmentsByUploadId": { "type": "boolean" }, "supportsRollbackOnFailureParameter": { "type": "boolean" }, "supportsStatistics": { "type": "boolean" }, "supportsAdvancedQueries": { "type": "boolean" }, "supportsValidateSql": { "type": "boolean" }, "supportsCoordinatesQuantization": { "type": "boolean" }, "supportsApplyEditsWithGlobalIds": { "type": "boolean" }, "supportsMultiScaleGeometry": { "type": "boolean" }, "advancedQueryCapabilities": { "type": "object", "properties": { "supportsPagination": { "type": "boolean" }, "supportsQueryRelatedPagination": { "type": "boolean" }, "supportsQueryWithDistance": { "type": "boolean" }, "supportsReturningQueryExtent": { "type": "boolean" }, "supportsStatistics": { "type": "boolean" }, "supportsOrderBy": { "type": "boolean" }, "supportsDistinct": { "type": "boolean" }, "supportsQueryWithResultType": { "type": "boolean" }, "supportsSqlExpression": { "type": "boolean" }, "supportsAdvancedQueryRelated": { "type": "boolean" }, "supportsReturningGeometryCentroid": { "type": "boolean" } }, "required": [ "supportsPagination", "supportsQueryRelatedPagination", "supportsQueryWithDistance", "supportsReturningQueryExtent", "supportsStatistics", "supportsOrderBy", "supportsDistinct", "supportsQueryWithResultType", "supportsSqlExpression", "supportsAdvancedQueryRelated", "supportsReturningGeometryCentroid" ] }, "useStandardizedQueries": { "type": "boolean" }, "geometryType": { "type": "string" }, "minScale": { "type": "integer" }, "maxScale": { "type": "integer" }, "extent": { "type": "object", "properties": { "xmin": { "type": "number" }, "ymin": { "type": "number" }, "xmax": { "type": "number" }, "ymax": { "type": "number" }, "spatialReference": { "type": "object", "properties": { "wkid": { "type": "integer" }, "latestWkid": { "type": "integer" }, "wkt": { "type": "string" } }, "required": [ "wkid", "latestWkid" ] } }, "required": [ "xmin", "ymin", "xmax", "ymax", "spatialReference" ] }, "drawingInfo": { "type": "object", "properties": { "renderer": { "type": "object", "properties": { "type": { "type": "string" }, "symbol": { "type": "object", "properties": { "color": { "type": "null" }, "outline": { "type": "object", "properties": { "color": { "type": "array", "items": { "type": "integer" } }, "width": { "type": "number" }, "type": { "type": "string" }, "style": { "type": "string" } }, "required": [ "color", "width", "type", "style" ] }, "type": { "type": "string" }, "style": { "type": "string" } }, "required": [ "color", "outline", "type", "style" ] } }, "required": [ "type", "symbol" ] }, "transparency": { "type": "integer" } }, "required": [ "renderer", "transparency" ] }, "allowGeometryUpdates": { "type": "boolean" }, "hasAttachments": { "type": "boolean" }, "htmlPopupType": { "type": "string" }, "hasM": { "type": "boolean" }, "hasZ": { "type": "boolean" }, "objectIdField": { "type": "string" }, "globalIdField": { "type": "string" }, "typeIdField": { "type": "string" }, "fields": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "alias": { "type": "string" }, "sqlType": { "type": "string" }, "nullable": { "type": "boolean" }, "editable": { "type": "boolean" }, "domain": { "type": "null" }, "defaultValue": { "type": "null" } }, "required": [ "name", "type", "alias", "sqlType", "nullable", "editable", "domain", "defaultValue" ] } }, "indexes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "fields": { "type": "string" }, "isAscending": { "type": "boolean" }, "isUnique": { "type": "boolean" }, "description": { "type": "string" } }, "required": [ "name", "fields", "isAscending", "isUnique", "description" ] } }, "types": { "type": "array", "items": {} }, "templates": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "drawingTool": { "type": "string" }, "prototype": { "type": "object", "properties": { "attributes": { "type": "object", "properties": { "LGA": { "type": "null" }, "MetropolitanRural": { "type": "null" }, "Departmental_Region": { "type": "null" }, "Departmental_Area": { "type": "null" }, "Area_of_LGA_sq_km": { "type": "null" }, "ASGS_LGA_code": { "type": "null" }, "Most_populous_town_or_suburb_in": { "type": "null" }, "Distance_to_Melbourne_in_km": { "type": "null" }, "Travel_time_from_Melbourne_GPO_": { "type": "null" }, "ARIA_Remoteness_category": { "type": "null" }, "Percent_Business_land_use": { "type": "null" }, "Percent_Industrial_land_use": { "type": "null" }, "Percent_Residential_land_use": { "type": "null" }, "Percent_Rural_land_use": { "type": "null" }, "Percent_Other_land_use": { "type": "null" }, "Per_annum_pop_change_actual_for": { "type": "null" }, "Per_annum_pop_change_projected_": { "type": "null" }, "Females0to14yrs": { "type": "null" }, "Females15to24yrs": { "type": "null" }, "Females25to44yrs": { "type": "null" }, "Females45to64yrs": { "type": "null" }, "Females65to84yrs": { "type": "null" }, "Female85yrsPlus": { "type": "null" }, "TotalFemales": { "type": "null" }, "Males0to14yrs": { "type": "null" }, "Males15to24yrs": { "type": "null" }, "Males25to44yrs": { "type": "null" }, "Males45to64yrs": { "type": "null" }, "Males65to84yrs": { "type": "null" }, "Male85yrsPlus": { "type": "null" }, "TotalMales": { "type": "null" }, "Total0to14yrs": { "type": "null" }, "Tota15to24yrs": { "type": "null" }, "Tota25to44yrs": { "type": "null" }, "Tota45to64yrs": { "type": "null" }, "Tota65to84yrs": { "type": "null" }, "Tota85yrsPlus": { "type": "null" }, "Total2013ERP": { "type": "null" }, "Percent_Total0to14yrs": { "type": "null" }, "PercentTotal15to24yrs": { "type": "null" }, "PercentTotal25to44yrs": { "type": "null" }, "PercentTotal45to64yrs": { "type": "null" }, "PercentTotal65to84yrs": { "type": "null" }, "PercentTotal84yrsPlus": { "type": "null" }, "Total_fertility_rate_2012": { "type": "null" }, "Rank_Total_fertility_rate_2012": { "type": "null" }, "Teenage_fertility_rate_2012": { "type": "null" }, "Rank_Teenage_fertility_rate_201": { "type": "null" }, "Percent_Aboriginal_or_Torres_St": { "type": "null" }, "Rank_Aboriginal_or_Torres_Strai": { "type": "null" }, "Percent_Born_overseas_2011": { "type": "null" }, "Rank_Percent_Born_overseas_2011": { "type": "null" }, "Born_in_a_non_English_speaking_": { "type": "null" }, "Rank_Born_in_a_non_English_spea": { "type": "null" }, "Country_1_Percent_for_Top_5_ove": { "type": "null" }, "Country_1_for_Top_5_overseas_co": { "type": "null" }, "Country_2_Percent_for_Top_5_ove": { "type": "null" }, "Country_2_for_Top_5_overseas_co": { "type": "null" }, "Country_3_Percent_for_Top_5_ove": { "type": "null" }, "Country_3_for_Top_5_overseas_co": { "type": "null" }, "Country_4_Percent_for_Top_5_ove": { "type": "null" }, "Country_4_for_Top_5_overseas_co": { "type": "null" }, "Country_5_Percent_for_Top_5_ove": { "type": "null" }, "Country_5_for_Top_5_overseas_co": { "type": "null" }, "Percent_Speaks_LOTE_at_home": { "type": "null" }, "Rank_Percent_Speaks_LOTE_at_hom": { "type": "null" }, "Country_1_Percent_Top_5_languag": { "type": "null" }, "Country_1_Top_5_languages_spoke": { "type": "null" }, "Country_2_Percent_Top_5_languag": { "type": "null" }, "Country_2_Top_5_languages_spoke": { "type": "null" }, "Country_3_Percent_Top_5_languag": { "type": "null" }, "Country_3_Top_5_languages_spoke": { "type": "null" }, "Country_4_Percent_Top_5_languag": { "type": "null" }, "Country_4_Top_5_languages_spoke": { "type": "null" }, "Country_5_Percent_Top_5_languag": { "type": "null" }, "Country_5_Top_5_languages_spoke": { "type": "null" }, "Percent_Low_English_proficiency": { "type": "null" }, "Rank_Percent_Low_English_profic": { "type": "null" }, "Ancestry_1_Percent_Top_5_ancest": { "type": "null" }, "Ancestry_1_Top_5_ancestries": { "type": "null" }, "Ancestry_2_Percent_Top_5_ancest": { "type": "null" }, "Ancestry_2_Top_5_ancestries": { "type": "null" }, "Ancestry_3_Percent_Top_5_ancest": { "type": "null" }, "Ancestry_3_Top_5_ancestries": { "type": "null" }, "Ancestry_4_Percent_Top_5_ancest": { "type": "null" }, "Ancestry_4_Top_5_ancestries": { "type": "null" }, "Ancestry_5_Percent_Top_5_ancest": { "type": "null" }, "Ancestry_5_Top_5_ancestries": { "type": "null" }, "New_settler_arrivals_per_100000": { "type": "null" }, "Rank_New_settler_arrivals_per_1": { "type": "null" }, "Humanitarian_arrivals_as_a_Perc": { "type": "null" }, "Rank_Humanitarian_arrivals_as_a": { "type": "null" }, "Community_acceptance_of_diverse": { "type": "null" }, "Rank_Community_acceptance_of_di": { "type": "null" }, "Proportion_of_households_with_b": { "type": "null" }, "Households_with_broadband_inter": { "type": "null" }, "Gaming_machine_losses_per_head_": { "type": "null" }, "Rank_Gaming_machine_losses_per_": { "type": "null" }, "Family_Incidents_per_1000_pop": { "type": "null" }, "Rank_Family_Incidents_per_1000_": { "type": "null" }, "Drug_usage_and_possession_offen": { "type": "null" }, "Rank_Drug_usage_and_possession_": { "type": "null" }, "Total_Crime_per_1000_pop": { "type": "null" }, "Rank_Total_Crime_per_1000_pop": { "type": "null" }, "Feels_safe_walking_alone_during": { "type": "null" }, "Rank_Feels_safe_walking_alone_d": { "type": "null" }, "Believe_other_people_can_be_tru": { "type": "null" }, "Rank_Believe_other_people_can_b": { "type": "null" }, "Spoke_with_more_than_5_people_t": { "type": "null" }, "Rank_Spoke_with_more_than_5_peo": { "type": "null" }, "Able_to_definitely_get_help_fro": { "type": "null" }, "Rank_Able_to_definitely_get_hel": { "type": "null" }, "Volunteers": { "type": "null" }, "Rank_Volunteers": { "type": "null" }, "Feel_valued_by_society": { "type": "null" }, "Rank_Feel_valued_by_society": { "type": "null" }, "Attended_a_local_community_even": { "type": "null" }, "Rank_Attended_a_local_community": { "type": "null" }, "Take_action_on_behalf_of_the_lo": { "type": "null" }, "Rank_Take_action_on_behalf_of_t": { "type": "null" }, "Members_of_a_sports_group": { "type": "null" }, "Rank_Members_of_a_sports_group": { "type": "null" }, "Members_of_a_religious_group": { "type": "null" }, "Rank_Members_of_a_religious_gro": { "type": "null" }, "Rated_their_community_as_an_act": { "type": "null" }, "Rank_Rated_their_community_as_a": { "type": "null" }, "Rated_their_community_as_a_plea": { "type": "null" }, "Rank_ated_their_community_as_a_": { "type": "null" }, "Rated_their_community_as_good_o": { "type": "null" }, "Rank_Rated_their_community_as_g": { "type": "null" }, "Index_of_Relative_Socia_Economi": { "type": "null" }, "Rank_Index_of_Relative_Socia_Ec": { "type": "null" }, "Unemployment_rate": { "type": "null" }, "Rank_Unemployment_rate": { "type": "null" }, "Percent_Individual_income_Less_": { "type": "null" }, "Rank_Percent_Individual_income_": { "type": "null" }, "Percent_Female_income_Less_than": { "type": "null" }, "Rank_Percent_Female_income_Less": { "type": "null" }, "Percent_Male_income_Less_than_4": { "type": "null" }, "Rank_Percent_Male_income_Less_t": { "type": "null" }, "Percent_One_Parent_headed_famil": { "type": "null" }, "Rank_Percent_One_Parent_headed_": { "type": "null" }, "One_Parent_headed_families_Perc": { "type": "null" }, "Rank_One_Parent_headed_families": { "type": "null" }, "One_Parent_headed_families_Pe_1": { "type": "null" }, "Rank_One_Parent_headed_famili_1": { "type": "null" }, "Equivalised_median_income": { "type": "null" }, "Rank_Equivalised_median_income": { "type": "null" }, "Delayed_medical_consultation_be": { "type": "null" }, "Rank_Delayed_medical_consultati": { "type": "null" }, "Delayed_purchasing_prescribed_m": { "type": "null" }, "Rank_Delayed_purchasing_prescri": { "type": "null" }, "Percent_low_income_welfare_depe": { "type": "null" }, "Rank_Percent_low_income_welfare": { "type": "null" }, "Percent_of_pop_with_food_insecu": { "type": "null" }, "Rank_Percent_of_pop_with_food_i": { "type": "null" }, "Percent_Mortgage_Stress": { "type": "null" }, "Rank_Percent_Mortgage_Stress": { "type": "null" }, "Percent_Rental_Stress": { "type": "null" }, "Rank_Percent_Rental_Stress": { "type": "null" }, "Percent_of_rental_housing_that_": { "type": "null" }, "Rank_Percent_of_rental_housing_": { "type": "null" }, "Median_house_price": { "type": "null" }, "Rank_Median_house_price": { "type": "null" }, "Median_rent_for_3_bedrooms_home": { "type": "null" }, "Rank_Median_rent_for_3_bedrooms": { "type": "null" }, "New_dwellings_approved_for_cons": { "type": "null" }, "Rank_New_dwellings_approved_for": { "type": "null" }, "Social_housing_stock_as_a_Perce": { "type": "null" }, "Rank_Social_housing_stock_as_a_": { "type": "null" }, "Number_of_Social_housing_dwelli": { "type": "null" }, "Rank_Number_of_Social_housing_d": { "type": "null" }, "Homelessness_rate_per_1000_pop": { "type": "null" }, "Rank_Homelessness_rate_per_1000": { "type": "null" }, "Percent_of_work_journeys_which_": { "type": "null" }, "Rank_Percent_of_work_journeys_w": { "type": "null" }, "Percent_of_work_journeys_which1": { "type": "null" }, "Rank_Percent_of_work_journeys_1": { "type": "null" }, "Persons_with_at_least_2_hour_da": { "type": "null" }, "Rank_Persons_with_at_least_2_ho": { "type": "null" }, "Percent_households_with_no_moto": { "type": "null" }, "Rank_Percent_households_with_no": { "type": "null" }, "FTE_Students": { "type": "null" }, "Percent_year_9_students_who_att": { "type": "null" }, "Rank_Percent_of_year_9_students": { "type": "null" }, "Percent_of_year_9_students_who_": { "type": "null" }, "Rank_Percent_year_9_students_wh": { "type": "null" }, "Percent_19_year_olds_completing": { "type": "null" }, "Rank_Percent_19_year_olds_compl": { "type": "null" }, "Percent_persons_who_did_not_com": { "type": "null" }, "Rank_Percent_of_persons_who_did": { "type": "null" }, "Percent_persons_who_completed_a": { "type": "null" }, "Rank_Percent_persons_who_comple": { "type": "null" }, "Percent_of_school_children_atte": { "type": "null" }, "Rank_Percent_of_school_children": { "type": "null" }, "Percent_of_persons_reporting_as": { "type": "null" }, "Rank_Percent_of_persons_reporti": { "type": "null" }, "Percent_of_persons_reporting_ty": { "type": "null" }, "Rank_Percent_of_persons_repor_1": { "type": "null" }, "Percent_of_persons_reporting_hi": { "type": "null" }, "Rank_Percent_of_persons_repor_2": { "type": "null" }, "Percent_of_persons_reporting_he": { "type": "null" }, "Rank_Percent_of_persons_repor_3": { "type": "null" }, "Percent_of_persons_reporting_os": { "type": "null" }, "Rank_Percent_of_persons_repor_4": { "type": "null" }, "Percent_of_persons_reporting_ar": { "type": "null" }, "Rank_Percent_of_persons_repor_5": { "type": "null" }, "Percent_of_persons_who_are_over": { "type": "null" }, "Rank_Percent_of_persons_who_are": { "type": "null" }, "Percent_of_females_who_are_over": { "type": "null" }, "Rank_Percent_of_females_who_are": { "type": "null" }, "Percent_of_males_who_are_overwe": { "type": "null" }, "Rank_Percent_of_males_who_are_o": { "type": "null" }, "Percent_of_persons_who_are_obes": { "type": "null" }, "Rank_Percent_of_persons_who_a_1": { "type": "null" }, "Percent_of_females_who_are_obes": { "type": "null" }, "Rank_Percent_of_females_who_a_1": { "type": "null" }, "Percent_of_males_who_are_obese": { "type": "null" }, "Rank_Percent_of_males_who_are_1": { "type": "null" }, "Malignant_cancers_diagnosed_per": { "type": "null" }, "Rank_Malignant_cancers_diagnose": { "type": "null" }, "Male_Cancer_incidence_per_1000_": { "type": "null" }, "Rank_Male_Cancer_incidence_per_": { "type": "null" }, "Female_Cancer_incidence_per_100": { "type": "null" }, "Rank_Female_Cancer_incidence_pe": { "type": "null" }, "Percent_Poor_dental_health": { "type": "null" }, "Rank_Percent_Poor_dental_health": { "type": "null" }, "Notifications_per_100000_pop_of": { "type": "null" }, "Rank_Notifications_per_100000_p": { "type": "null" }, "Notifications_per_100000_pop__1": { "type": "null" }, "Rank_Notifications_per_100000_1": { "type": "null" }, "Notifications_per_100000_people": { "type": "null" }, "Rank_Notifications_per_100000_2": { "type": "null" }, "Percent_of_persons_18yrsPlus_wh": { "type": "null" }, "Rank_Percent_of_persons_18yrsPl": { "type": "null" }, "Percent_of_males_18yrsPlus_who_": { "type": "null" }, "Rank_Percent_of_males_18yrsPlus": { "type": "null" }, "Percent_of_females_18yrsPlus_wh": { "type": "null" }, "Rank_Percent_of_females_18yrsPl": { "type": "null" }, "Consumed_alcohol_at_least_weekl": { "type": "null" }, "Rank_Consumed_alcohol_at_least_": { "type": "null" }, "Consumed_alcohol_at_least_wee_1": { "type": "null" }, "Rank_Consumed_alcohol_at_least1": { "type": "null" }, "Percent_of_persons_who_do_not_m": { "type": "null" }, "Rank_Percent_of_persons_who_do_": { "type": "null" }, "Percent_of_males_who_do_not_mee": { "type": "null" }, "Rank_Percent_of_males_who_do_no": { "type": "null" }, "Percent_of_females_who_do_not_m": { "type": "null" }, "Rank_Percent_of_females_who_do_": { "type": "null" }, "Percent_of_persons_who_drink_so": { "type": "null" }, "Rank_Percent_of_persons_who_dri": { "type": "null" }, "Percent_of_persons_who_share_a_": { "type": "null" }, "Rank_Percent_of_persons_who_sha": { "type": "null" }, "Percent_of_persons_who_do_not_1": { "type": "null" }, "Rank_Percent_of_persons_who_do1": { "type": "null" }, "Percent_of_males_who_do_not_m_1": { "type": "null" }, "Rank_Percent_of_males_who_do__1": { "type": "null" }, "Percent_of_females_who_do_not_1": { "type": "null" }, "Rank_Percent_of_females_who_do1": { "type": "null" }, "Percent_of_persons_who_sit_for_": { "type": "null" }, "Rank_Percent_of_persons_who_sit": { "type": "null" }, "Percent_of_persons_who_visit_a_": { "type": "null" }, "Rank_Percent_of_persons_who_vis": { "type": "null" }, "Percent_of_breast_screening_par": { "type": "null" }, "Rank_Percent_of_breast_screenin": { "type": "null" }, "Percent_of_cervical_cancer_scre": { "type": "null" }, "Rank_Percent_of_cervical_cancer": { "type": "null" }, "Bowel_cancer_screening_particip": { "type": "null" }, "Rank_Bowel_cancer_screening_par": { "type": "null" }, "Bowel_cancer_screening_partic_1": { "type": "null" }, "Rank_Bowel_cancer_screening_p_1": { "type": "null" }, "Bowel_cancer_screening_partic_2": { "type": "null" }, "Rank_Bowel_cancer_screening_p_2": { "type": "null" }, "Low_Birthweight_babies": { "type": "null" }, "Rank_Low_Birthweight_babies": { "type": "null" }, "Percent_Infants_fully_breastfed": { "type": "null" }, "Rank_Percent_Infants_fully_brea": { "type": "null" }, "Percent_Children_fully_immunise": { "type": "null" }, "Rank_Percent_Children_fully_imm": { "type": "null" }, "Proportion_of_infants_enrolled_": { "type": "null" }, "Rank_Proportion_of_infants_enro": { "type": "null" }, "Kindergarten_participation_rate": { "type": "null" }, "Percent_of_children_with_kinder": { "type": "null" }, "Rank_Percent_of_children_with_k": { "type": "null" }, "Percent_of_children_with_emotio": { "type": "null" }, "Rank_Percent_of_children_with_e": { "type": "null" }, "Percent_of_children_with_speech": { "type": "null" }, "Rank_Percent_of_children_with_s": { "type": "null" }, "Percent_of_adolescents_who_repo": { "type": "null" }, "Rank_Percent_of_adolescents_who": { "type": "null" }, "Percent_of_children_who_are_dev": { "type": "null" }, "Rank_Percent_of_children_who_ar": { "type": "null" }, "Percent_of_children_who_are_d_1": { "type": "null" }, "Rank_Percent_of_children_who__1": { "type": "null" }, "Core_activity_need_for_assistan": { "type": "null" }, "Rank_Core_activity_need_for_ass": { "type": "null" }, "People_with_severe_and_profound": { "type": "null" }, "Rank_People_with_severe_and_pro": { "type": "null" }, "People_with_severe_and_profou_1": { "type": "null" }, "Rank_People_with_severe_and_p_1": { "type": "null" }, "Percent_pop_aged_75yrsPlus_livi": { "type": "null" }, "Rank_Percent_pop_aged_75yrsPlus": { "type": "null" }, "Pop_aged_75yrsPlus_living_alone": { "type": "null" }, "Rank_Pop_aged_75yrsPlus_living_": { "type": "null" }, "Pop_aged_75yrsPlus_living_alo_1": { "type": "null" }, "Rank_Pop_aged_75yrsPlus_living1": { "type": "null" }, "Persons_receiving_Disability_Se": { "type": "null" }, "Rank_Persons_receiving_Disabili": { "type": "null" }, "Disability_pension_per_1000_eli": { "type": "null" }, "Rank_Disability_pension_per_100": { "type": "null" }, "Aged_care_HighCare_beds": { "type": "null" }, "Aged_care_LowCare_beds": { "type": "null" }, "Age_pension_per_1000_eligible_p": { "type": "null" }, "Rank_Age_pension_per_1000_eligi": { "type": "null" }, "Male_life_expectancy": { "type": "null" }, "Rank_Male_life_expectancy": { "type": "null" }, "Female_life_expectancy": { "type": "null" }, "Rank_Female_life_expectancy": { "type": "null" }, "Persons_reporting_fair_or_poor_": { "type": "null" }, "Rank_Persons_reporting_fair_or_": { "type": "null" }, "Females_reporting_fair_or_poor_": { "type": "null" }, "Rank_Females_reporting_fair_or_": { "type": "null" }, "Males_reporting_fair_or_poor_he": { "type": "null" }, "Rank_Males_reporting_fair_or_po": { "type": "null" }, "Percent_who_have_a_high_degree_": { "type": "null" }, "Rank_Percent_who_have_a_high_de": { "type": "null" }, "Percent_of_persons_sleeping_les": { "type": "null" }, "Rank_Percent_of_persons_sleepin": { "type": "null" }, "Percent_persons_with_adequate_w": { "type": "null" }, "Rank_Percent_persons_with_adequ": { "type": "null" }, "Unintentional_injuries_treated_": { "type": "null" }, "Rank_Unintentional_injuries_tre": { "type": "null" }, "Intentional_injuries_treated_in": { "type": "null" }, "Rank_Intentional_injuries_treat": { "type": "null" }, "Percent_of_unintentional_hospit": { "type": "null" }, "Rank_Percent_of_unintentional_h": { "type": "null" }, "Indirect_standardised_death_rat": { "type": "null" }, "Rank_Indirect_standardised_deat": { "type": "null" }, "Avoidable_deaths_0to74_yrs_for_": { "type": "null" }, "Rank_Avoidable_deaths_0to74_yrs": { "type": "null" }, "Avoidable_deaths_0to74yrsrs_for": { "type": "null" }, "Rank_Avoidable_deaths_0to74yrsr": { "type": "null" }, "Avoidable_deaths_0to74yrsrs_f_1": { "type": "null" }, "Rank_Avoidable_deaths_0to74yr_1": { "type": "null" }, "Avoidable_deaths_0to74yrs_for_r": { "type": "null" }, "Rank_Avoidable_deaths_0to74yrs_": { "type": "null" }, "Primary_Health_Network": { "type": "null" }, "Primary_Care_Partnership": { "type": "null" }, "Number_of_hospitals_and_health_": { "type": "null" }, "Number_of_public_hospitals_and_": { "type": "null" }, "Number_of_private_hospitals_and": { "type": "null" }, "GPs_per_1000_pop": { "type": "null" }, "Rank_GPs_per_1000_pop": { "type": "null" }, "GP_sites_per_1000_pop": { "type": "null" }, "Rank_GP_sites_per_1000_pop": { "type": "null" }, "Allied_health_sites_per_1000_po": { "type": "null" }, "Rank_Allied_health_sites_per_10": { "type": "null" }, "Dental_services_per_1000_pop": { "type": "null" }, "Rank_Dental_services_per_1000_p": { "type": "null" }, "Pharmacies_per_1000_pop": { "type": "null" }, "Rank_Pharmacies_per_1000_pop": { "type": "null" }, "Percent_Near_Public_Transport": { "type": "null" }, "Rank_Percent_Near_Public_Transp": { "type": "null" }, "Percent_with_private_health_ins": { "type": "null" }, "Rank_Percent_with_private_healt": { "type": "null" }, "Hospital_inpatient_separations_": { "type": "null" }, "Rank_Hospital_inpatient_separat": { "type": "null" }, "Percent_inpatient_separations_f": { "type": "null" }, "Rank_Percent_inpatient_separati": { "type": "null" }, "Main_public_hospital_attended_f": { "type": "null" }, "Main_public_hospital_attended_P": { "type": "null" }, "Rank_Main_public_hospital_atten": { "type": "null" }, "Average_length_of_stay_in_days_": { "type": "null" }, "Rank_Average_length_of_stay_in_": { "type": "null" }, "Average_length_of_stay_for_all_": { "type": "null" }, "Rank_Average_length_of_stay_for": { "type": "null" }, "Per_annum_Percent_Change_in_Sep": { "type": "null" }, "Rank_Per_annum_Percent_Change_i": { "type": "null" }, "Per_annum_Percent_Projected_Cha": { "type": "null" }, "Rank_Per_annum_Percent_Projecte": { "type": "null" }, "ACSCs_per_1000_pop_Total": { "type": "null" }, "Rank_ACSCs_per_1000_pop_Total": { "type": "null" }, "ACSCs_per_1000_pop_Acute": { "type": "null" }, "Rank_ACSCs_per_1000_pop_Acute": { "type": "null" }, "ACSCs_per_1000_pop_Chronic": { "type": "null" }, "Rank_ACSCs_per_1000_pop_Chronic": { "type": "null" }, "ACSCs_per_1000_pop_Vaccine_prev": { "type": "null" }, "Rank_ACSCs_per_1000_pop_Vaccine": { "type": "null" }, "Emergency_Department_presentati": { "type": "null" }, "Rank_Emergency_Department_prese": { "type": "null" }, "Primary_care_type_presentations": { "type": "null" }, "Rank_Primary_care_type_presenta": { "type": "null" }, "Child_protection_investigations": { "type": "null" }, "Rank_Child_protection_investiga": { "type": "null" }, "Child_protection_substantiation": { "type": "null" }, "Rank_Child_protection_substanti": { "type": "null" }, "Number_of_Child_FIRST_assessmen": { "type": "null" }, "Rank_Number_of_Child_FIRST_asse": { "type": "null" }, "GP_attendances_per_1000_pop_Mal": { "type": "null" }, "Rank_GP_attendances_per_1000_po": { "type": "null" }, "GP_attendances_per_1000_pop_Fem": { "type": "null" }, "Rank_GP_attendances_per_1000__1": { "type": "null" }, "GP_attendances_per_1000_pop_Tot": { "type": "null" }, "Rank_GP_attendances_per_1000__2": { "type": "null" }, "HACC_clients_aged_0to64yrs_per_": { "type": "null" }, "Rank_HACC_clients_aged_0to64yrs": { "type": "null" }, "HACC_clients_aged_65yrsPlus_per": { "type": "null" }, "Rank_HACC_clients_aged_65yrsPlu": { "type": "null" }, "No_clients_who_received_Alcohol": { "type": "null" }, "Rank_No_clients_who_received_Al": { "type": "null" }, "Registered_mental_mealth_client": { "type": "null" }, "Rank_Registered_mental_mealth_c": { "type": "null" } }, "required": [ "LGA", "MetropolitanRural", "Departmental_Region", "Departmental_Area", "Area_of_LGA_sq_km", "ASGS_LGA_code", "Most_populous_town_or_suburb_in", "Distance_to_Melbourne_in_km", "Travel_time_from_Melbourne_GPO_", "ARIA_Remoteness_category", "Percent_Business_land_use", "Percent_Industrial_land_use", "Percent_Residential_land_use", "Percent_Rural_land_use", "Percent_Other_land_use", "Per_annum_pop_change_actual_for", "Per_annum_pop_change_projected_", "Females0to14yrs", "Females15to24yrs", "Females25to44yrs", "Females45to64yrs", "Females65to84yrs", "Female85yrsPlus", "TotalFemales", "Males0to14yrs", "Males15to24yrs", "Males25to44yrs", "Males45to64yrs", "Males65to84yrs", "Male85yrsPlus", "TotalMales", "Total0to14yrs", "Tota15to24yrs", "Tota25to44yrs", "Tota45to64yrs", "Tota65to84yrs", "Tota85yrsPlus", "Total2013ERP", "Percent_Total0to14yrs", "PercentTotal15to24yrs", "PercentTotal25to44yrs", "PercentTotal45to64yrs", "PercentTotal65to84yrs", "PercentTotal84yrsPlus", "Total_fertility_rate_2012", "Rank_Total_fertility_rate_2012", "Teenage_fertility_rate_2012", "Rank_Teenage_fertility_rate_201", "Percent_Aboriginal_or_Torres_St", "Rank_Aboriginal_or_Torres_Strai", "Percent_Born_overseas_2011", "Rank_Percent_Born_overseas_2011", "Born_in_a_non_English_speaking_", "Rank_Born_in_a_non_English_spea", "Country_1_Percent_for_Top_5_ove", "Country_1_for_Top_5_overseas_co", "Country_2_Percent_for_Top_5_ove", "Country_2_for_Top_5_overseas_co", "Country_3_Percent_for_Top_5_ove", "Country_3_for_Top_5_overseas_co", "Country_4_Percent_for_Top_5_ove", "Country_4_for_Top_5_overseas_co", "Country_5_Percent_for_Top_5_ove", "Country_5_for_Top_5_overseas_co", "Percent_Speaks_LOTE_at_home", "Rank_Percent_Speaks_LOTE_at_hom", "Country_1_Percent_Top_5_languag", "Country_1_Top_5_languages_spoke", "Country_2_Percent_Top_5_languag", "Country_2_Top_5_languages_spoke", "Country_3_Percent_Top_5_languag", "Country_3_Top_5_languages_spoke", "Country_4_Percent_Top_5_languag", "Country_4_Top_5_languages_spoke", "Country_5_Percent_Top_5_languag", "Country_5_Top_5_languages_spoke", "Percent_Low_English_proficiency", "Rank_Percent_Low_English_profic", "Ancestry_1_Percent_Top_5_ancest", "Ancestry_1_Top_5_ancestries", "Ancestry_2_Percent_Top_5_ancest", "Ancestry_2_Top_5_ancestries", "Ancestry_3_Percent_Top_5_ancest", "Ancestry_3_Top_5_ancestries", "Ancestry_4_Percent_Top_5_ancest", "Ancestry_4_Top_5_ancestries", "Ancestry_5_Percent_Top_5_ancest", "Ancestry_5_Top_5_ancestries", "New_settler_arrivals_per_100000", "Rank_New_settler_arrivals_per_1", "Humanitarian_arrivals_as_a_Perc", "Rank_Humanitarian_arrivals_as_a", "Community_acceptance_of_diverse", "Rank_Community_acceptance_of_di", "Proportion_of_households_with_b", "Households_with_broadband_inter", "Gaming_machine_losses_per_head_", "Rank_Gaming_machine_losses_per_", "Family_Incidents_per_1000_pop", "Rank_Family_Incidents_per_1000_", "Drug_usage_and_possession_offen", "Rank_Drug_usage_and_possession_", "Total_Crime_per_1000_pop", "Rank_Total_Crime_per_1000_pop", "Feels_safe_walking_alone_during", "Rank_Feels_safe_walking_alone_d", "Believe_other_people_can_be_tru", "Rank_Believe_other_people_can_b", "Spoke_with_more_than_5_people_t", "Rank_Spoke_with_more_than_5_peo", "Able_to_definitely_get_help_fro", "Rank_Able_to_definitely_get_hel", "Volunteers", "Rank_Volunteers", "Feel_valued_by_society", "Rank_Feel_valued_by_society", "Attended_a_local_community_even", "Rank_Attended_a_local_community", "Take_action_on_behalf_of_the_lo", "Rank_Take_action_on_behalf_of_t", "Members_of_a_sports_group", "Rank_Members_of_a_sports_group", "Members_of_a_religious_group", "Rank_Members_of_a_religious_gro", "Rated_their_community_as_an_act", "Rank_Rated_their_community_as_a", "Rated_their_community_as_a_plea", "Rank_ated_their_community_as_a_", "Rated_their_community_as_good_o", "Rank_Rated_their_community_as_g", "Index_of_Relative_Socia_Economi", "Rank_Index_of_Relative_Socia_Ec", "Unemployment_rate", "Rank_Unemployment_rate", "Percent_Individual_income_Less_", "Rank_Percent_Individual_income_", "Percent_Female_income_Less_than", "Rank_Percent_Female_income_Less", "Percent_Male_income_Less_than_4", "Rank_Percent_Male_income_Less_t", "Percent_One_Parent_headed_famil", "Rank_Percent_One_Parent_headed_", "One_Parent_headed_families_Perc", "Rank_One_Parent_headed_families", "One_Parent_headed_families_Pe_1", "Rank_One_Parent_headed_famili_1", "Equivalised_median_income", "Rank_Equivalised_median_income", "Delayed_medical_consultation_be", "Rank_Delayed_medical_consultati", "Delayed_purchasing_prescribed_m", "Rank_Delayed_purchasing_prescri", "Percent_low_income_welfare_depe", "Rank_Percent_low_income_welfare", "Percent_of_pop_with_food_insecu", "Rank_Percent_of_pop_with_food_i", "Percent_Mortgage_Stress", "Rank_Percent_Mortgage_Stress", "Percent_Rental_Stress", "Rank_Percent_Rental_Stress", "Percent_of_rental_housing_that_", "Rank_Percent_of_rental_housing_", "Median_house_price", "Rank_Median_house_price", "Median_rent_for_3_bedrooms_home", "Rank_Median_rent_for_3_bedrooms", "New_dwellings_approved_for_cons", "Rank_New_dwellings_approved_for", "Social_housing_stock_as_a_Perce", "Rank_Social_housing_stock_as_a_", "Number_of_Social_housing_dwelli", "Rank_Number_of_Social_housing_d", "Homelessness_rate_per_1000_pop", "Rank_Homelessness_rate_per_1000", "Percent_of_work_journeys_which_", "Rank_Percent_of_work_journeys_w", "Percent_of_work_journeys_which1", "Rank_Percent_of_work_journeys_1", "Persons_with_at_least_2_hour_da", "Rank_Persons_with_at_least_2_ho", "Percent_households_with_no_moto", "Rank_Percent_households_with_no", "FTE_Students", "Percent_year_9_students_who_att", "Rank_Percent_of_year_9_students", "Percent_of_year_9_students_who_", "Rank_Percent_year_9_students_wh", "Percent_19_year_olds_completing", "Rank_Percent_19_year_olds_compl", "Percent_persons_who_did_not_com", "Rank_Percent_of_persons_who_did", "Percent_persons_who_completed_a", "Rank_Percent_persons_who_comple", "Percent_of_school_children_atte", "Rank_Percent_of_school_children", "Percent_of_persons_reporting_as", "Rank_Percent_of_persons_reporti", "Percent_of_persons_reporting_ty", "Rank_Percent_of_persons_repor_1", "Percent_of_persons_reporting_hi", "Rank_Percent_of_persons_repor_2", "Percent_of_persons_reporting_he", "Rank_Percent_of_persons_repor_3", "Percent_of_persons_reporting_os", "Rank_Percent_of_persons_repor_4", "Percent_of_persons_reporting_ar", "Rank_Percent_of_persons_repor_5", "Percent_of_persons_who_are_over", "Rank_Percent_of_persons_who_are", "Percent_of_females_who_are_over", "Rank_Percent_of_females_who_are", "Percent_of_males_who_are_overwe", "Rank_Percent_of_males_who_are_o", "Percent_of_persons_who_are_obes", "Rank_Percent_of_persons_who_a_1", "Percent_of_females_who_are_obes", "Rank_Percent_of_females_who_a_1", "Percent_of_males_who_are_obese", "Rank_Percent_of_males_who_are_1", "Malignant_cancers_diagnosed_per", "Rank_Malignant_cancers_diagnose", "Male_Cancer_incidence_per_1000_", "Rank_Male_Cancer_incidence_per_", "Female_Cancer_incidence_per_100", "Rank_Female_Cancer_incidence_pe", "Percent_Poor_dental_health", "Rank_Percent_Poor_dental_health", "Notifications_per_100000_pop_of", "Rank_Notifications_per_100000_p", "Notifications_per_100000_pop__1", "Rank_Notifications_per_100000_1", "Notifications_per_100000_people", "Rank_Notifications_per_100000_2", "Percent_of_persons_18yrsPlus_wh", "Rank_Percent_of_persons_18yrsPl", "Percent_of_males_18yrsPlus_who_", "Rank_Percent_of_males_18yrsPlus", "Percent_of_females_18yrsPlus_wh", "Rank_Percent_of_females_18yrsPl", "Consumed_alcohol_at_least_weekl", "Rank_Consumed_alcohol_at_least_", "Consumed_alcohol_at_least_wee_1", "Rank_Consumed_alcohol_at_least1", "Percent_of_persons_who_do_not_m", "Rank_Percent_of_persons_who_do_", "Percent_of_males_who_do_not_mee", "Rank_Percent_of_males_who_do_no", "Percent_of_females_who_do_not_m", "Rank_Percent_of_females_who_do_", "Percent_of_persons_who_drink_so", "Rank_Percent_of_persons_who_dri", "Percent_of_persons_who_share_a_", "Rank_Percent_of_persons_who_sha", "Percent_of_persons_who_do_not_1", "Rank_Percent_of_persons_who_do1", "Percent_of_males_who_do_not_m_1", "Rank_Percent_of_males_who_do__1", "Percent_of_females_who_do_not_1", "Rank_Percent_of_females_who_do1", "Percent_of_persons_who_sit_for_", "Rank_Percent_of_persons_who_sit", "Percent_of_persons_who_visit_a_", "Rank_Percent_of_persons_who_vis", "Percent_of_breast_screening_par", "Rank_Percent_of_breast_screenin", "Percent_of_cervical_cancer_scre", "Rank_Percent_of_cervical_cancer", "Bowel_cancer_screening_particip", "Rank_Bowel_cancer_screening_par", "Bowel_cancer_screening_partic_1", "Rank_Bowel_cancer_screening_p_1", "Bowel_cancer_screening_partic_2", "Rank_Bowel_cancer_screening_p_2", "Low_Birthweight_babies", "Rank_Low_Birthweight_babies", "Percent_Infants_fully_breastfed", "Rank_Percent_Infants_fully_brea", "Percent_Children_fully_immunise", "Rank_Percent_Children_fully_imm", "Proportion_of_infants_enrolled_", "Rank_Proportion_of_infants_enro", "Kindergarten_participation_rate", "Percent_of_children_with_kinder", "Rank_Percent_of_children_with_k", "Percent_of_children_with_emotio", "Rank_Percent_of_children_with_e", "Percent_of_children_with_speech", "Rank_Percent_of_children_with_s", "Percent_of_adolescents_who_repo", "Rank_Percent_of_adolescents_who", "Percent_of_children_who_are_dev", "Rank_Percent_of_children_who_ar", "Percent_of_children_who_are_d_1", "Rank_Percent_of_children_who__1", "Core_activity_need_for_assistan", "Rank_Core_activity_need_for_ass", "People_with_severe_and_profound", "Rank_People_with_severe_and_pro", "People_with_severe_and_profou_1", "Rank_People_with_severe_and_p_1", "Percent_pop_aged_75yrsPlus_livi", "Rank_Percent_pop_aged_75yrsPlus", "Pop_aged_75yrsPlus_living_alone", "Rank_Pop_aged_75yrsPlus_living_", "Pop_aged_75yrsPlus_living_alo_1", "Rank_Pop_aged_75yrsPlus_living1", "Persons_receiving_Disability_Se", "Rank_Persons_receiving_Disabili", "Disability_pension_per_1000_eli", "Rank_Disability_pension_per_100", "Aged_care_HighCare_beds", "Aged_care_LowCare_beds", "Age_pension_per_1000_eligible_p", "Rank_Age_pension_per_1000_eligi", "Male_life_expectancy", "Rank_Male_life_expectancy", "Female_life_expectancy", "Rank_Female_life_expectancy", "Persons_reporting_fair_or_poor_", "Rank_Persons_reporting_fair_or_", "Females_reporting_fair_or_poor_", "Rank_Females_reporting_fair_or_", "Males_reporting_fair_or_poor_he", "Rank_Males_reporting_fair_or_po", "Percent_who_have_a_high_degree_", "Rank_Percent_who_have_a_high_de", "Percent_of_persons_sleeping_les", "Rank_Percent_of_persons_sleepin", "Percent_persons_with_adequate_w", "Rank_Percent_persons_with_adequ", "Unintentional_injuries_treated_", "Rank_Unintentional_injuries_tre", "Intentional_injuries_treated_in", "Rank_Intentional_injuries_treat", "Percent_of_unintentional_hospit", "Rank_Percent_of_unintentional_h", "Indirect_standardised_death_rat", "Rank_Indirect_standardised_deat", "Avoidable_deaths_0to74_yrs_for_", "Rank_Avoidable_deaths_0to74_yrs", "Avoidable_deaths_0to74yrsrs_for", "Rank_Avoidable_deaths_0to74yrsr", "Avoidable_deaths_0to74yrsrs_f_1", "Rank_Avoidable_deaths_0to74yr_1", "Avoidable_deaths_0to74yrs_for_r", "Rank_Avoidable_deaths_0to74yrs_", "Primary_Health_Network", "Primary_Care_Partnership", "Number_of_hospitals_and_health_", "Number_of_public_hospitals_and_", "Number_of_private_hospitals_and", "GPs_per_1000_pop", "Rank_GPs_per_1000_pop", "GP_sites_per_1000_pop", "Rank_GP_sites_per_1000_pop", "Allied_health_sites_per_1000_po", "Rank_Allied_health_sites_per_10", "Dental_services_per_1000_pop", "Rank_Dental_services_per_1000_p", "Pharmacies_per_1000_pop", "Rank_Pharmacies_per_1000_pop", "Percent_Near_Public_Transport", "Rank_Percent_Near_Public_Transp", "Percent_with_private_health_ins", "Rank_Percent_with_private_healt", "Hospital_inpatient_separations_", "Rank_Hospital_inpatient_separat", "Percent_inpatient_separations_f", "Rank_Percent_inpatient_separati", "Main_public_hospital_attended_f", "Main_public_hospital_attended_P", "Rank_Main_public_hospital_atten", "Average_length_of_stay_in_days_", "Rank_Average_length_of_stay_in_", "Average_length_of_stay_for_all_", "Rank_Average_length_of_stay_for", "Per_annum_Percent_Change_in_Sep", "Rank_Per_annum_Percent_Change_i", "Per_annum_Percent_Projected_Cha", "Rank_Per_annum_Percent_Projecte", "ACSCs_per_1000_pop_Total", "Rank_ACSCs_per_1000_pop_Total", "ACSCs_per_1000_pop_Acute", "Rank_ACSCs_per_1000_pop_Acute", "ACSCs_per_1000_pop_Chronic", "Rank_ACSCs_per_1000_pop_Chronic", "ACSCs_per_1000_pop_Vaccine_prev", "Rank_ACSCs_per_1000_pop_Vaccine", "Emergency_Department_presentati", "Rank_Emergency_Department_prese", "Primary_care_type_presentations", "Rank_Primary_care_type_presenta", "Child_protection_investigations", "Rank_Child_protection_investiga", "Child_protection_substantiation", "Rank_Child_protection_substanti", "Number_of_Child_FIRST_assessmen", "Rank_Number_of_Child_FIRST_asse", "GP_attendances_per_1000_pop_Mal", "Rank_GP_attendances_per_1000_po", "GP_attendances_per_1000_pop_Fem", "Rank_GP_attendances_per_1000__1", "GP_attendances_per_1000_pop_Tot", "Rank_GP_attendances_per_1000__2", "HACC_clients_aged_0to64yrs_per_", "Rank_HACC_clients_aged_0to64yrs", "HACC_clients_aged_65yrsPlus_per", "Rank_HACC_clients_aged_65yrsPlu", "No_clients_who_received_Alcohol", "Rank_No_clients_who_received_Al", "Registered_mental_mealth_client", "Rank_Registered_mental_mealth_c" ] } }, "required": [ "attributes" ] } }, "required": [ "name", "description", "drawingTool", "prototype" ] } }, "supportedQueryFormats": { "type": "string" }, "hasStaticData": { "type": "boolean" }, "maxRecordCount": { "type": "integer" }, "standardMaxRecordCount": { "type": "integer" }, "tileMaxRecordCount": { "type": "integer" }, "maxRecordCountFactor": { "type": "integer" }, "capabilities": { "type": "string" } }, "required": [ "currentVersion", "id", "name", "type", "serviceItemId", "displayField", "description", "copyrightText", "defaultVisibility", "editingInfo", "multiScaleGeometryInfo", "relationships", "isDataVersioned", "supportsCalculate", "supportsTruncate", "supportsAttachmentsByUploadId", "supportsRollbackOnFailureParameter", "supportsStatistics", "supportsAdvancedQueries", "supportsValidateSql", "supportsCoordinatesQuantization", "supportsApplyEditsWithGlobalIds", "supportsMultiScaleGeometry", "advancedQueryCapabilities", "useStandardizedQueries", "geometryType", "minScale", "maxScale", "extent", "drawingInfo", "allowGeometryUpdates", "hasAttachments", "htmlPopupType", "hasM", "hasZ", "objectIdField", "globalIdField", "typeIdField", "fields", "indexes", "types", "templates", "supportedQueryFormats", "hasStaticData", "maxRecordCount", "standardMaxRecordCount", "tileMaxRecordCount", "maxRecordCountFactor", "capabilities" ] }
o43012
{ "title": "Invocation manifest for HCP: Functional Preprocessing Pipeline", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "save-on-error": { "type": "boolean", "default": false }, "FREESURFER_LICENSE": { "type": "string" }, "dry-run": { "type": "boolean", "default": false }, "fMRIName": { "type": "string", "default": "rfMRI_REST1_RL", "enum": [ "rfMRI_REST1_RL", "rfMRI_REST1_LR", "rfMRI_REST2_RL", "rfMRI_REST2_LR", "tfMRI_WM_RL", "tfMRI_WM_LR", "tfMRI_GAMBLING_RL", "tfMRI_GAMBLING_LR", "tfMRI_MOTOR_RL", "tfMRI_MOTOR_LR", "tfMRI_LANGUAGE_RL", "tfMRI_LANGUAGE_LR", "tfMRI_SOCIAL_RL", "tfMRI_SOCIAL_LR", "tfMRI_RELATIONAL_RL", "tfMRI_RELATIONAL_LR", "tfMRI_EMOTION_RL", "tfMRI_EMOTION_LR" ] }, "BiasCorrection": { "type": "string", "default": "NONE", "enum": [ "NONE", "SEBased", "Legacy" ] }, "MotionCorrection": { "type": "string", "default": "MCFLIRT", "enum": [ "MCFLIRT", "FLIRT" ] }, "AnatomyRegDOF": { "type": "integer", "default": 6, "enum": [ 6, 12 ] }, "RegName": { "type": "string", "default": "Empty", "enum": [ "Empty", "FS", "MSMSulc" ] } }, "required": [ "save-on-error", "dry-run", "fMRIName", "BiasCorrection", "MotionCorrection", "AnatomyRegDOF", "RegName" ] }, "inputs": { "type": "object", "properties": { "StructZip": { "type": "object", "properties": { "type": { "enum": [ "archive" ] } } }, "fMRITimeSeries": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "fMRIScout": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "GradientCoeff": { "type": "object", "properties": {} }, "SpinEchoPositive": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "SpinEchoNegative": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "SiemensGREMagnitude": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "SiemensGREPhase": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "FreeSurferLicense": { "type": "object", "properties": {} } }, "required": [ "StructZip", "fMRITimeSeries" ] } }, "required": [ "config", "inputs" ] }
o41300
{ "@context": "http://qiicr.org/dcmqi/contexts/dcmqi.jsonld", "id": "https://raw.githubusercontent.com/qiicr/dcmqi/master/doc/schemas/common-schema.json#", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "PN": { "type": "string", "maxLength": 64 }, "CS": { "type": "string", "maxLength": 16 }, "IS": { "type": "string", "maxLength": 12 }, "DS": { "type": "string", "maxLength": 16, "pattern": "^( )*(-|\\+)?[0-9]*(.[0-9]+)?((e|E)(-|\\+)?[0-9]+)?( )*$" }, "LO": { "type": "string", "maxLength": 64 }, "SH": { "type": "string", "maxLength": 64 }, "FD": { "type": "string", "maxLength": 16, "pattern": "^( )*(-|\\+)?[0-9]*(.[0-9]+)?((e|E)(-|\\+)?[0-9]+)?( )*$" }, "US": { "type": "integer", "minimum": 0, "maximum": 2e+16 }, "UT": { "type": "string" }, "UI": { "type": "string", "pattern": "[0-9\\.]*" }, "RGB": { "type": "array", "items": { "type": "integer", "minimum": 0, "maximum": 255 }, "minItems": 3, "maxItems": 3 }, "CIELab": { "type": "array", "items": { "$ref": "#/definitions/US" }, "minItems": 3, "maxItems": 3 }, "codeSequence": { "type": "object", "additionalProperties": false, "required": [ "CodeValue", "CodingSchemeDesignator", "CodeMeaning" ], "properties": { "CodeValue": { "$ref": "#/definitions/SH", "default": "85756007" }, "CodingSchemeDesignator": { "$ref": "#/definitions/SH", "default": "SCT" }, "CodeMeaning": { "$ref": "#/definitions/LO", "default": "Tissue" } } }, "dicomInstancesFileNameList": { "type": "array", "minItems": 1, "items": { "type": "string" } } }, "properties": { "PN": { "$ref": "#/definitions/PN" }, "CS": { "$ref": "#/definitions/CS" }, "IS": { "$ref": "#/definitions/IS" }, "DS": { "$ref": "#/definitions/DS" }, "LO": { "$ref": "#/definitions/LO" }, "SH": { "$ref": "#/definitions/SH" }, "FD": { "$ref": "#/definitions/FD" }, "US": { "$ref": "#/definitions/US" }, "UT": { "$ref": "#/definitions/UT" }, "UI": { "$ref": "#/definitions/UI" }, "RGB": { "$ref": "#/definitions/RGB" }, "CIELab": { "$ref": "#/definitions/CIELab" }, "codeSequence": { "$ref": "#/definitions/codeSequence" }, "dicomInstancesFileNameList": { "$ref": "#/definitions/dicomInstancesFileNameList" } }, "required": [ "PN", "CS", "IS", "DS", "LO", "SH", "FD", "US", "UT", "UI", "RGB", "CIELab", "codeSequence", "dicomInstancesFileNameList" ] }
o13101
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": {}, "definitions": { "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" } }, "description": "Comment configuration data", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "allow_comments": { "description": "If false, commenting is disabled on this content.", "type": "boolean" }, "comments_period": { "description": "How long (in days) after publish date until comments are closed.", "type": "integer" }, "display_comments": { "description": "If false, do not render comments on this content.", "type": "boolean" }, "moderation_required": { "description": "If true, comments must be moderator-approved before being displayed.", "type": "boolean" } }, "title": "Comments", "type": "object" }
wp_45_Normalized
{ "additionalProperties": false, "description": "Schema for API Request Enrichment configuration", "properties": { "enabled": { "type": "boolean" }, "name": { "type": "string" }, "parameters": { "additionalProperties": false, "properties": { "api": { "additionalProperties": false, "maxProperties": 1, "minProperties": 1, "properties": { "http": { "additionalProperties": false, "properties": { "authentication": { "additionalProperties": false, "properties": { "httpBasic": { "additionalProperties": false, "properties": { "password": { "type": "string" }, "username": { "type": "string" } }, "required": [ "username", "password" ], "type": "object" } }, "type": "object" }, "method": { "enum": [ "GET", "POST", "PUT" ], "type": "string" }, "timeout": { "maximum": 60000, "minimum": 1, "type": "integer" }, "uri": { "type": "string" } }, "required": [ "method", "uri", "timeout", "authentication" ], "type": "object" } }, "type": "object" }, "cache": { "additionalProperties": false, "properties": { "size": { "minimum": 1, "type": "integer" }, "ttl": { "maximum": 86400, "minimum": 0, "type": "integer" } }, "required": [ "size", "ttl" ], "type": "object" }, "inputs": { "items": { "additionalProperties": false, "maxProperties": 2, "minProperties": 2, "properties": { "json": { "additionalProperties": false, "properties": { "field": { "enum": [ "unstruct_event", "contexts", "derived_contexts" ], "type": "string" }, "jsonPath": { "pattern": "^\\$.*$", "type": "string" }, "schemaCriterion": { "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/([1-9][0-9]*|\\*)-((?:0|[1-9][0-9]*)|\\*)-((?:0|[1-9][0-9]*)|\\*)$", "type": "string" } }, "type": "object" }, "key": { "pattern": "^[A-Za-z0-9_-]+$", "type": "string" }, "pojo": { "additionalProperties": false, "properties": { "field": { "type": "string" } }, "type": "object" } }, "required": [ "key" ], "type": "object" }, "type": "array" }, "outputs": { "items": { "additionalProperties": false, "maxProperties": 2, "minProperties": 2, "properties": { "json": { "additionalProperties": false, "properties": { "jsonPath": { "pattern": "^\\$.*$", "type": "string" } }, "required": [ "jsonPath" ], "type": "object" }, "schema": { "pattern": "^iglu:([a-zA-Z0-9-_.]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([1-9][0-9]*(?:-(?:0|[1-9][0-9]*)){2})$", "type": "string" } }, "required": [ "schema" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "inputs", "api", "outputs", "cache" ], "type": "object" }, "vendor": { "type": "string" } }, "required": [ "name", "vendor", "enabled", "parameters" ], "self": { "format": "jsonschema", "name": "api_request_enrichment_config", "vendor": "com.snowplowanalytics.snowplow.enrichments", "version": "1-0-0" }, "type": "object" }
sp_347_Normalized
{ "title": "JSON schema for Web Application manifest files (schema extensions)", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "mjs_access_whitelist": { "description": "The mjs_access_whitelist member is an array of rules that indicates the type of access the URLs matching the rule should have.", "type": "array", "items": { "$ref": "#/definitions/mjs_access_whitelist_rule" } } }, "definitions": { "mjs_access_whitelist_rule": { "type": "object", "properties": { "url": { "description": "A string that represents the URL pattern for which the rule should be applied to.", "type": "string", "format": "uri" }, "apiAccess": { "description": "A string that defines the type of access to the runtime API where the application is running.", "enum": [ "none", "all", "AllowForWebOnly" ] } } } } }
o58320
{ "$id": "https://example.com/arrays.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A representation of a person, company, organization, or place", "type": "object", "properties": { "fruits": { "type": "array", "items": { "type": "string" } }, "vegetables": { "type": "array", "items": { "$ref": "#/definitions/veggie" } } }, "definitions": { "veggie": { "type": "object", "required": [ "veggieName", "veggieLike" ], "properties": { "veggieName": { "type": "string", "description": "The name of the vegetable." }, "veggieLike": { "type": "boolean", "description": "Do I like this vegetable?" } } } } }
o47148
{ "properties": { "category": { "description": "The category of the product", "type": "string" }, "keywords": { "description": "The keywords to search for in the product database", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price of the product", "type": "number" }, "min_price": { "description": "The minimum price of the product", "type": "number" } }, "type": "object" } }, "required": [ "keywords" ], "type": "object" }
search_product_27063d65
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "#/", "type": "object", "description": "schema definitions for Twitter API", "twitter": { "statuses": { "userTimelineArgs": { "type": "object", "properties": { "user_id": { "type": "integer" }, "screen_name": { "type": "string" }, "since_id": { "type": "integer" }, "count": { "type": "integer" }, "max_id": { "type": "integer" }, "trim_user": { "type": "boolean" }, "exclude_replies": { "type": "boolean" }, "contributor_details": { "type": "boolean" }, "include_rts": { "type": "boolean" } }, "additionalProperties": false }, "userTimelineResult": { "type": "array" }, "mentionsArgs": { "type": "object", "properties": { "since_id": { "type": "integer" }, "count": { "type": "integer" }, "max_id": { "type": "integer" }, "trim_user": { "type": "boolean" }, "contributor_details": { "type": "boolean" }, "include_entities": { "type": "boolean" } }, "additionalProperties": false }, "mentionsResult": { "type": "array" }, "homeTimelineArgs": { "type": "object", "properties": { "since_id": { "type": "integer" }, "count": { "type": "integer" }, "max_id": { "type": "integer" }, "trim_user": { "type": "boolean" }, "exclude_replies": { "type": "boolean" }, "contributor_details": { "type": "boolean" }, "include_entities": { "type": "boolean" } }, "additionalProperties": false }, "homeTimelineResult": { "type": "array" }, "retweetsOfMeArgs": { "type": "object", "properties": { "since_id": { "type": "integer" }, "count": { "type": "integer" }, "max_id": { "type": "integer" }, "trim_user": { "type": "boolean" }, "include_user_entities": { "type": "boolean" }, "include_entities": { "type": "boolean" } }, "additionalProperties": false }, "retweetsOfMeResult": { "type": "array" }, "retweetsArgs": { "type": "object", "properties": { "count": { "type": "integer" }, "trim_user": { "type": "boolean" } }, "additionalProperties": false }, "retweetsResult": { "type": "array" }, "showStatusArgs": { "type": "object", "properties": { "trim_user": { "type": "boolean" }, "include_my_retweet": { "type": "boolean" }, "include_entities": { "type": "boolean" } }, "additionalProperties": false }, "showStatusResult": { "type": "object" }, "destroyStatusArgs": { "type": "object", "properties": { "trim_user": { "type": "boolean" } }, "additionalProperties": false }, "destroyedStatusResult": { "type": "object" }, "updateStatusArgs": { "type": "object", "properties": { "in_reply_to_status_id": { "type": "integer" }, "possibly_sensitive": { "type": "boolean" }, "lat": { "type": "number", "maximum": 90, "minimum": -90 }, "long": { "type": "number", "maximum": 180, "minimum": -180 }, "place_id": { "type": "string" }, "display_coordinates": { "type": "boolean" }, "trim_user": { "type": "boolean" }, "media_ids": { "type": "integer" } }, "additionalProperties": false }, "updatedStatusResult": { "type": "object" }, "retweetStatusArgs": { "type": "object", "properties": { "trim_user": { "type": "boolean" } }, "additionalProperties": false }, "retweetStatusResult": { "type": "object" } } }, "properties": { "twitter.statuses.userTimelineArgs": { "$ref": "#/twitter/statuses/userTimelineArgs" }, "twitter.statuses.userTimelineResult": { "$ref": "#/twitter/statuses/userTimelineResult" }, "twitter.statuses.mentionsArgs": { "$ref": "#/twitter/statuses/mentionsArgs" }, "twitter.statuses.mentionsResult": { "$ref": "#/twitter/statuses/mentionsResult" }, "twitter.statuses.homeTimelineArgs": { "$ref": "#/twitter/statuses/homeTimelineArgs" }, "twitter.statuses.homeTimelineResult": { "$ref": "#/twitter/statuses/homeTimelineResult" }, "twitter.statuses.retweetsOfMeArgs": { "$ref": "#/twitter/statuses/retweetsOfMeArgs" }, "twitter.statuses.retweetsOfMeResult": { "$ref": "#/twitter/statuses/retweetsOfMeResult" }, "twitter.statuses.retweetsArgs": { "$ref": "#/twitter/statuses/retweetsArgs" }, "twitter.statuses.retweetsResult": { "$ref": "#/twitter/statuses/retweetsResult" }, "twitter.statuses.showStatusArgs": { "$ref": "#/twitter/statuses/showStatusArgs" }, "twitter.statuses.destroyStatusArgs": { "$ref": "#/twitter/statuses/destroyStatusArgs" }, "twitter.statuses.updateStatusArgs": { "$ref": "#/twitter/statuses/updateStatusArgs" }, "twitter.statuses.retweetStatusArgs": { "$ref": "#/twitter/statuses/retweetStatusArgs" } }, "required": [ "twitter.statuses.userTimelineArgs", "twitter.statuses.userTimelineResult", "twitter.statuses.mentionsArgs", "twitter.statuses.mentionsResult", "twitter.statuses.homeTimelineArgs", "twitter.statuses.homeTimelineResult", "twitter.statuses.retweetsOfMeArgs", "twitter.statuses.retweetsOfMeResult", "twitter.statuses.retweetsArgs", "twitter.statuses.retweetsResult", "twitter.statuses.showStatusArgs", "twitter.statuses.destroyStatusArgs", "twitter.statuses.updateStatusArgs", "twitter.statuses.retweetStatusArgs" ] }
o65978
{ "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "resources": { "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "required": [ "verbs" ], "type": "object" }
kb_748_Normalized
{ "id": "http://schemas.triniti.io/json-schema/triniti/notify/mixin/has-notifications/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "The \"_id\" value: - MUST NOT change for the life of the node. - SHOULD be globally unique - SHOULD be generated by the app (ideally in default value closure... e.g. UuidIdentifier::generate())", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } } }, "required": [ "_id" ], "additionalProperties": true }
o82943
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Mozilla's contribute.json", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "keywords": { "type": "array", "items": { "type": "string" } }, "participate": { "type": "object", "properties": { "home": { "type": "string" }, "docs": { "type": "string" }, "mailing-list": { "type": "string" }, "irc": { "type": "string" }, "irc-contacts": { "type": "array", "items": { "type": "string" } }, "chat": { "type": "object", "properties": { "url": { "type": "string" }, "contacts": { "type": "array", "items": { "type": "string" } } }, "required": [ "url" ] } }, "required": [ "docs" ] }, "repository": { "type": "object", "properties": { "type": { "type": "string" }, "url": { "type": "string" }, "license": { "type": "string" }, "tests": { "type": "string" }, "clone": { "type": "string" } }, "required": [ "url", "license" ] }, "bugs": { "type": "object", "properties": { "list": { "type": "string" }, "report": { "type": "string" }, "mentored": { "type": "string" } } }, "urls": { "type": "object", "properties": { "prod": { "type": "string" }, "stage": { "type": "string" }, "dev": { "type": "string" } } } }, "required": [ "name", "description", "repository" ] }
o61771
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_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_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_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_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_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_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_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_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_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_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_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_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_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_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "PodPresetSpec is a description of a pod preset.", "properties": { "env": { "description": "Env defines the collection of EnvVar to inject into containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": [ "array", "null" ] }, "envFrom": { "description": "EnvFrom defines the collection of EnvFromSource to inject into containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": [ "array", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selector is a label query over a set of resources, in this case pods. Required." }, "volumeMounts": { "description": "VolumeMounts defines the collection of VolumeMount to inject into containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": [ "array", "null" ] }, "volumes": { "description": "Volumes defines the collection of Volume to inject into the pod.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_714_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "description": "The name of the project", "type": "string" }, "description": { "description": "A short description of the project", "type": "string" }, "repo": { "description": "The URL of the repo this project is part of", "type": "string" }, "documentation": { "description": "Link to the documentation of this project", "type": "string" }, "tags": { "description": "Relevant tags for this project", "type": "array", "items": { "type": "string" } }, "cluster": { "type": "object", "properties": { "config": { "type": "string", "description": "Path to a .yaml cluster configuration file (relative to the project root)" }, "params": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "help": { "type": "string" }, "choices": { "type": "array" }, "default": {}, "type": { "type": "string", "enum": [ "int", "float", "str" ] } }, "required": [ "name" ], "additionalProperties": false } } }, "required": [ "config" ], "additionalProperties": false }, "environment": { "description": "The environment that needs to be set up to run the project", "type": "object", "properties": { "dockerimage": { "description": "URL to a docker image that can be pulled to run the project in", "type": "string" }, "dockerfile": { "description": "Path to a Dockerfile to set up an image the project can run in (relative to the project root)", "type": "string" }, "requirements": { "description": "Path to a Python requirements.txt file to set up project dependencies (relative to the project root)", "type": "string" }, "shell": { "description": "A sequence of shell commands to run to set up the project environment", "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "commands": { "type": "array", "items": { "description": "Possible commands to run to start a session", "type": "object", "properties": { "name": { "description": "Name of the command", "type": "string" }, "help": { "description": "Help string for the command", "type": "string" }, "command": { "description": "Shell command to run on the cluster", "type": "string" }, "params": { "type": "array", "items": { "description": "Possible parameters in the command", "type": "object", "properties": { "name": { "description": "Name of the parameter", "type": "string" }, "help": { "description": "Help string for the parameter", "type": "string" }, "choices": { "description": "Possible values the parameter can take", "type": "array" }, "default": {}, "type": { "description": "Required type for the parameter", "type": "string", "enum": [ "int", "float", "str" ] } }, "required": [ "name" ], "additionalProperties": false } }, "config": { "description": "Configuration options for the command", "type": "object", "properties": { "tmux": { "description": "If true, the command will be run inside of tmux", "type": "boolean" } }, "additionalProperties": false } }, "required": [ "name", "command" ], "additionalProperties": false } }, "output_files": { "type": "array", "items": { "type": "string" } } }, "required": [ "name", "cluster" ], "additionalProperties": false }
o69584
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": { "_format": "date-time", "description": "MicroTime is version of Time with microsecond level precision.", "type": "string" } }, "description": "LeaseSpec is a specification of a Lease.", "properties": { "acquireTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "acquireTime is a time when the current lease was acquired." }, "holderIdentity": { "description": "holderIdentity contains the identity of the holder of a current lease.", "type": [ "string", "null" ] }, "leaseDurationSeconds": { "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", "format": "int32", "type": [ "integer", "null" ] }, "leaseTransitions": { "description": "leaseTransitions is the number of transitions of a lease between holders.", "format": "int32", "type": [ "integer", "null" ] }, "renewTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "renewTime is a time when the current holder of a lease has last updated the lease." } }, "type": "object" }
kb_519_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "k": { "description": "Property Value", "extended_name": "Value", "type": "number" }, "x": { "description": "Property Expression. An AE expression that modifies the value.", "extended_name": "Expression", "type": "string" }, "ix": { "description": "Property Index. Used for expressions.", "extended_name": "Property Index", "type": "string" } } }
o26974
{ "additionalProperties": false, "properties": { "dcos_url": { "description": "The URL to the location of the DCOS", "format": "uri", "title": "DCOS URL", "type": "string" }, "email": { "description": "Your email address", "title": "Your email address", "type": "string" }, "mesos_master_url": { "description": "Mesos Master URL. Must be of the format: \"http://host:port\"", "format": "uri", "title": "Mesos Master URL", "type": "string" }, "refresh_token": { "description": "Your OAuth refresh token", "title": "Your OAuth refresh token", "type": "string" }, "reporting": { "default": true, "description": "Whether to report usage events to Mesosphere", "title": "Usage Reporting", "type": "boolean" }, "timeout": { "default": 5, "description": "Request timeout in seconds", "minimum": 1, "title": "Request timeout in seconds", "type": "integer" }, "token": { "description": "Your OAuth access token", "title": "Your OAuth access token", "type": "string" } }, "type": "object" }
o42976
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { "description": "API version of the referent", "type": "string" }, "kind": { "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"", "type": "string" }, "name": { "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "metricName": { "description": "metricName is the name of the metric in question.", "type": [ "string", "null" ] }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." }, "target": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "target is the described Kubernetes object." }, "targetValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetValue is the target value of the metric (as a quantity)." } }, "required": [ "target", "metricName", "targetValue" ], "type": "object" }
kb_646_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "properties": { "CogAtlasID": { "type": "string" }, "CogPOID": { "type": "string" }, "EchoTime": { "type": "number", "exclusiveMinimum": 0 }, "EffectiveEchoSpacing": { "type": "number", "exclusiveMinimum": 0 }, "PhaseEncodingDirection": { "type": "string", "enum": [ "i", "j", "k", "i-", "j-", "k-" ] }, "RepetitionTime": { "type": "number", "exclusiveMinimum": 0 }, "SliceEncodingDirection": { "type": "string", "enum": [ "i", "j", "k", "i-", "j-", "k-" ] }, "SliceTiming": { "type": "array", "items": { "type": "number", "minimum": 0 } }, "TaskName": { "type": "string" } } }
o63190
{ "properties": { "consulate": { "description": "The consular level for the number of events", "type": "string" }, "count": { "description": "The count of the number of events", "minimum": 0, "type": "integer" }, "period": { "description": "The period described by each data point", "enum": [ "second", "minute", "hour", "day", "week", "month", "year" ] }, "serviceType": { "description": "The name of the service-type along which to segment the count", "type": "string" } }, "required": [ "count", "serviceType", "consulate", "period" ], "title": "Appointments by service type and consulate", "type": "object" }
o21494
{ "properties": { "clientId": { "description": "Client ID if workflow is to proxy client", "examples": [ "bar" ], "type": "string" }, "clientMethod": { "description": "Client method if workflow is to proxy client", "examples": [ "Hello" ], "type": "string" }, "endpointId": { "description": "Name of the endpoint", "examples": [ "bar" ], "type": "string" }, "endpointType": { "description": "Endpoint protocol type, either http or tchannel", "enum": [ "http", "tchannel" ], "examples": [ "http" ], "type": "string" }, "handleId": { "description": "Name of the method", "examples": [ "helloWorld" ], "type": "string" }, "middlewares": { "items": { "description": "Middlewares the endpoint method depends on", "examples": [ "example" ], "type": "string" }, "type": "array" }, "thriftFile": { "description": "Path to endpoint thrift file, relative to idl path", "examples": [ "endpoints/bar/bar.thrift" ], "type": "string" }, "thriftFileSha": { "description": "Sha of the thrift file, reserved but currently not used", "examples": [ "{{placeholder}}" ], "type": "string" }, "thriftMethodName": { "description": "Thrift method name, in format of service::method", "examples": [ "Bar::helloWorld" ], "type": "string" }, "workflowImportPath": { "description": "Workflow import path if workflow type is custom", "examples": [ "github.com/uber/zanzibar/examples/example-gateway/endpoints/contacts" ], "type": "string" }, "workflowType": { "description": "Workflow type, either httpClient, tchannelClient or custom", "enum": [ "custom", "httpClient", "tchannelClient" ], "examples": [ "custom" ], "type": "string" } }, "required": [ "endpointType", "endpointId", "handleId", "thriftFile", "thriftFileSha", "thriftMethodName", "workflowType" ], "type": "object" }
o83292
{ "additionalProperties": false, "description": "Schema for a stream write failure", "properties": { "appName": { "type": "string" }, "errorMessage": { "type": "string" }, "errorType": { "type": "string" }, "putSize": { "type": "number" }, "retryCount": { "type": "number" }, "streamName": { "type": "string" } }, "self": { "format": "jsonschema", "name": "stream_write_failed", "vendor": "com.snowplowanalytics.monitoring.kinesis", "version": "1-0-0" }, "type": "object" }
sp_242_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "sourceType": { "type": "string", "enum": [ "flow", "user", "device" ] }, "level": { "type": "string", "enum": [ "info", "warning", "error", "critical" ] }, "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "subject": { "type": "string", "minLength": 1, "maxLength": 255 }, "message": { "type": "string" } }, "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "eventId": { "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" }, "sourceType": { "$ref": "#/definitions/sourceType" }, "sourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "level": { "$ref": "#/definitions/level" }, "state": { "$ref": "#/definitions/state" }, "subject": { "$ref": "#/definitions/subject" }, "message": { "$ref": "#/definitions/message" } } }
o6208
{ "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": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": [ "string", "null" ] }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }
kb_1129_Normalized
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The item name", "type": "string" }, "price": { "description": "The price per item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
create_invoice_81532f70
{ "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/RancherKubernetesEngineConfig", "definitions": { "AESConfiguration": { "required": [ "Keys" ], "properties": { "Keys": { "items": { "$ref": "#/definitions/Key" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "AWSCloudProvider": { "required": [ "global" ], "properties": { "global": { "$ref": "#/definitions/GlobalAwsOpts" }, "service_override": { "patternProperties": { ".*": { "$ref": "#/definitions/ServiceOverride" } }, "type": "object" } }, "additionalProperties": false, "type": "object" }, "AWSElasticBlockStoreVolumeSource": { "required": [ "VolumeID", "FSType", "Partition", "ReadOnly" ], "properties": { "VolumeID": { "type": "string" }, "FSType": { "type": "string" }, "Partition": { "type": "integer" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "AciNetworkProvider": { "properties": { "system_id": { "type": "string" }, "apic_hosts": { "items": { "type": "string" }, "type": "array" }, "token": { "type": "string" }, "apic_user_name": { "type": "string" }, "apic_user_key": { "type": "string" }, "apic_user_crt": { "type": "string" }, "apic_refresh_time": { "type": "string" }, "vmm_domain": { "type": "string" }, "vmm_controller": { "type": "string" }, "encap_type": { "type": "string" }, "node_subnet": { "type": "string" }, "mcast_range_start": { "type": "string" }, "mcast_range_end": { "type": "string" }, "aep": { "type": "string" }, "vrf_name": { "type": "string" }, "vrf_tenant": { "type": "string" }, "l3out": { "type": "string" }, "l3out_external_networks": { "items": { "type": "string" }, "type": "array" }, "extern_dynamic": { "type": "string" }, "extern_static": { "type": "string" }, "node_svc_subnet": { "type": "string" }, "kube_api_vlan": { "type": "string" }, "service_vlan": { "type": "string" }, "infra_vlan": { "type": "string" }, "tenant": { "type": "string" }, "ovs_memory_limit": { "type": "string" }, "image_pull_policy": { "type": "string" }, "image_pull_secret": { "type": "string" }, "service_monitor_interval": { "type": "string" }, "pbr_tracking_non_snat": { "type": "string" }, "install_istio": { "type": "string" }, "istio_profile": { "type": "string" }, "drop_log_enable": { "type": "string" }, "controller_log_level": { "type": "string" }, "host_agent_log_level": { "type": "string" }, "opflex_log_level": { "type": "string" }, "use_aci_cni_priority_class": { "type": "string" }, "no_priority_class": { "type": "string" }, "max_nodes_svc_graph": { "type": "string" }, "snat_contract_scope": { "type": "string" }, "pod_subnet_chunk_size": { "type": "string" }, "enable_endpoint_slice": { "type": "string" }, "snat_namespace": { "type": "string" }, "ep_registry": { "type": "string" }, "opflex_mode": { "type": "string" }, "snat_port_range_start": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "snat_port_range_end": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "snat_ports_per_node": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "opflex_client_ssl": { "type": "string" }, "use_privileged_container": { "type": "string" }, "use_host_netns_volume": { "type": "string" }, "use_opflex_server_volume": { "type": "string" }, "subnet_domain_name": { "type": "string" }, "kafka_brokers": { "items": { "type": "string" }, "type": "array" }, "kafka_client_crt": { "type": "string" }, "kafka_client_key": { "type": "string" }, "capic": { "type": "string" }, "use_aci_anywhere_crd": { "type": "string" }, "overlay_vrf_name": { "type": "string" }, "gbp_pod_subnet": { "type": "string" }, "run_gbp_container": { "type": "string" }, "run_opflex_server_container": { "type": "string" }, "opflex_server_port": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false, "type": "object" }, "AdmissionConfiguration": { "required": [ "Kind", "APIVersion", "Plugins" ], "properties": { "Kind": { "type": "string" }, "APIVersion": { "type": "string" }, "Plugins": { "items": { "$ref": "#/definitions/AdmissionPluginConfiguration" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "AdmissionPluginConfiguration": { "required": [ "Name", "Path", "Configuration" ], "properties": { "Name": { "type": "string" }, "Path": { "type": "string" }, "Configuration": { "$ref": "#/definitions/Unknown" } }, "additionalProperties": false, "type": "object" }, "AuditLog": { "properties": { "enabled": { "type": "boolean" }, "configuration": { "$ref": "#/definitions/AuditLogConfig" } }, "additionalProperties": false, "type": "object" }, "AuditLogConfig": { "properties": { "max_age": { "type": "integer" }, "max_backup": { "type": "integer" }, "max_size": { "type": "integer" }, "path": { "type": "string" }, "format": { "type": "string" }, "policy": { "$ref": "#/definitions/Policy" } }, "additionalProperties": false, "type": "object" }, "AuthWebhookConfig": { "properties": { "config_file": { "type": "string", "description": "ConfigFile is a multiline string that represent a custom webhook config file" }, "cache_timeout": { "type": "string", "description": "CacheTimeout controls how long to cache authentication decisions" } }, "additionalProperties": false, "type": "object" }, "AuthnConfig": { "properties": { "strategy": { "type": "string", "description": "Authentication strategy that will be used in kubernetes cluster" }, "sans": { "items": { "type": "string" }, "type": "array", "description": "List of additional hostnames and IPs to include in the api server PKI cert" }, "webhook": { "$ref": "#/definitions/AuthWebhookConfig", "description": "Webhook configuration options" } }, "additionalProperties": false, "type": "object" }, "AuthzConfig": { "properties": { "mode": { "type": "string", "description": "Authorization mode used by kubernetes" }, "options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "Authorization mode options" } }, "additionalProperties": false, "type": "object" }, "AzureCloudProvider": { "required": [ "cloud", "tenantId", "subscriptionId", "resourceGroup", "location", "vnetName", "vnetResourceGroup", "subnetName", "securityGroupName", "routeTableName", "primaryAvailabilitySetName", "vmType", "primaryScaleSetName", "aadClientId", "aadClientSecret", "aadClientCertPath", "aadClientCertPassword", "cloudProviderBackoff", "cloudProviderBackoffRetries", "cloudProviderBackoffExponent", "cloudProviderBackoffDuration", "cloudProviderBackoffJitter", "cloudProviderRateLimit", "cloudProviderRateLimitQPS", "cloudProviderRateLimitBucket", "useInstanceMetadata", "useManagedIdentityExtension", "maximumLoadBalancerRuleCount" ], "properties": { "cloud": { "type": "string", "description": "The cloud environment identifier. Takes values from https://github.com/Azure/go-autorest/blob/ec5f4903f77ed9927ac95b19ab8e44ada64c1356/autorest/azure/environments.go#L13" }, "tenantId": { "type": "string", "description": "The AAD Tenant ID for the Subscription that the cluster is deployed in" }, "subscriptionId": { "type": "string", "description": "The ID of the Azure Subscription that the cluster is deployed in" }, "resourceGroup": { "type": "string", "description": "The name of the resource group that the cluster is deployed in" }, "location": { "type": "string", "description": "The location of the resource group that the cluster is deployed in" }, "vnetName": { "type": "string", "description": "The name of the VNet that the cluster is deployed in" }, "vnetResourceGroup": { "type": "string", "description": "The name of the resource group that the Vnet is deployed in" }, "subnetName": { "type": "string", "description": "The name of the subnet that the cluster is deployed in" }, "securityGroupName": { "type": "string", "description": "The name of the security group attached to the cluster's subnet" }, "routeTableName": { "type": "string", "description": "(Optional in 1.6) The name of the route table attached to the subnet that the cluster is deployed in" }, "primaryAvailabilitySetName": { "type": "string", "description": "(Optional) The name of the availability set that should be used as the load balancer backend\nIf this is set, the Azure cloudprovider will only add nodes from that availability set to the load\nbalancer backend pool. If this is not set, and multiple agent pools (availability sets) are used, then\nthe cloudprovider will try to add all nodes to a single backend pool which is forbidden.\nIn other words, if you use multiple agent pools (availability sets), you MUST set this field." }, "vmType": { "type": "string", "description": "The type of azure nodes. Candidate valudes are: vmss and standard.\nIf not set, it will be default to standard." }, "primaryScaleSetName": { "type": "string", "description": "The name of the scale set that should be used as the load balancer backend.\nIf this is set, the Azure cloudprovider will only add nodes from that scale set to the load\nbalancer backend pool. If this is not set, and multiple agent pools (scale sets) are used, then\nthe cloudprovider will try to add all nodes to a single backend pool which is forbidden.\nIn other words, if you use multiple agent pools (scale sets), you MUST set this field." }, "aadClientId": { "type": "string", "description": "The ClientID for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for service principal authentication: https://github.com/Azure/aks-engine/blob/master/docs/topics/service-principals.md" }, "aadClientSecret": { "type": "string", "description": "The ClientSecret for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for service principal authentication: https://github.com/Azure/aks-engine/blob/master/docs/topics/service-principals.md" }, "aadClientCertPath": { "type": "string", "description": "The path of a client certificate for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for client certificate authentication: https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-protocols-oauth-service-to-service" }, "aadClientCertPassword": { "type": "string", "description": "The password of the client certificate for an AAD application with RBAC access to talk to Azure RM APIs\nThis's used for client certificate authentication: https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-protocols-oauth-service-to-service" }, "cloudProviderBackoff": { "type": "boolean", "description": "Enable exponential backoff to manage resource request retries" }, "cloudProviderBackoffRetries": { "type": "integer", "description": "Backoff retry limit" }, "cloudProviderBackoffExponent": { "type": "integer", "description": "Backoff exponent" }, "cloudProviderBackoffDuration": { "type": "integer", "description": "Backoff duration" }, "cloudProviderBackoffJitter": { "type": "integer", "description": "Backoff jitter" }, "cloudProviderRateLimit": { "type": "boolean", "description": "Enable rate limiting" }, "cloudProviderRateLimitQPS": { "type": "integer", "description": "Rate limit QPS" }, "cloudProviderRateLimitBucket": { "type": "integer", "description": "Rate limit Bucket Size" }, "useInstanceMetadata": { "type": "boolean", "description": "Use instance metadata service where possible" }, "useManagedIdentityExtension": { "type": "boolean", "description": "Use managed service identity for the virtual machine to access Azure ARM APIs\nThis's used for managed identity authentication: https://docs.microsoft.com/en-us/azure/active-directory/managed-service-identity/overview\nFor user-assigned managed identity, need to set the below UserAssignedIdentityID" }, "userAssignedIdentityID": { "type": "string", "description": "The Client ID of the user assigned MSI which is assigned to the underlying VMs\nThis's used for managed identity authentication: https://docs.microsoft.com/en-us/azure/active-directory/managed-service-identity/overview" }, "maximumLoadBalancerRuleCount": { "type": "integer", "description": "Maximum allowed LoadBalancer Rule Count is the limit enforced by Azure Load balancer, default(0) to 148" }, "loadBalancerSku": { "type": "string", "description": "Sku of Load Balancer and Public IP: `basic` or `standard`, default(blank) to `basic`" }, "excludeMasterFromStandardLB": { "type": "boolean", "description": "Excludes master nodes (labeled with `node-role.kubernetes.io/master`) from the backend pool of Azure standard loadbalancer, default(nil) to `true`\nIf want adding the master nodes to ALB, this should be set to `false` and remove the `node-role.kubernetes.io/master` label from master nodes" } }, "additionalProperties": false, "type": "object" }, "AzureDiskVolumeSource": { "required": [ "DiskName", "DataDiskURI", "CachingMode", "FSType", "ReadOnly", "Kind" ], "properties": { "DiskName": { "type": "string" }, "DataDiskURI": { "type": "string" }, "CachingMode": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "Kind": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "AzureFileVolumeSource": { "required": [ "SecretName", "ShareName", "ReadOnly" ], "properties": { "SecretName": { "type": "string" }, "ShareName": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "BackupConfig": { "required": [ "enabled", "interval_hours", "retention", "safe_timestamp", "timeout" ], "properties": { "enabled": { "type": "boolean" }, "interval_hours": { "type": "integer" }, "retention": { "type": "integer" }, "S3BackupConfig": { "$ref": "#/definitions/S3BackupConfig" }, "safe_timestamp": { "type": "boolean" }, "timeout": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "BastionHost": { "properties": { "address": { "type": "string", "description": "Address of Bastion Host" }, "port": { "oneOf": [ { "type": "string" }, { "type": "number" } ], "description": "SSH Port of Bastion Host" }, "user": { "type": "string", "description": "ssh User to Bastion Host" }, "ssh_agent_auth": { "type": "boolean", "description": "SSH Agent Auth enable" }, "ssh_key": { "type": "string", "description": "SSH Private Key" }, "ssh_key_path": { "type": "string", "description": "SSH Private Key Path" }, "ssh_cert": { "type": "string", "description": "SSH Certificate" }, "ssh_cert_path": { "type": "string", "description": "SSH Certificate Path" }, "ignore_proxy_env_vars": { "type": "boolean", "description": "Ignore proxy environment variables" } }, "additionalProperties": false, "type": "object" }, "BlockStorageOpenstackOpts": { "required": [ "bs-version", "trust-device-path", "ignore-volume-az" ], "properties": { "bs-version": { "type": "string", "description": "overrides autodetection. v1 or v2. Defaults to auto" }, "trust-device-path": { "type": "boolean", "description": "See Issue #33128" }, "ignore-volume-az": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "CSIVolumeSource": { "required": [ "Driver", "ReadOnly", "FSType", "VolumeAttributes", "NodePublishSecretRef" ], "properties": { "Driver": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "FSType": { "type": "string" }, "VolumeAttributes": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "NodePublishSecretRef": { "$ref": "#/definitions/LocalObjectReference" } }, "additionalProperties": false, "type": "object" }, "CalicoNetworkProvider": { "required": [ "CloudProvider" ], "properties": { "CloudProvider": { "type": "string", "description": "Cloud provider type used with calico" } }, "additionalProperties": false, "type": "object" }, "CanalNetworkProvider": { "required": [ "Iface" ], "properties": { "Iface": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "CephFSVolumeSource": { "required": [ "Monitors", "Path", "User", "SecretFile", "SecretRef", "ReadOnly" ], "properties": { "Monitors": { "items": { "type": "string" }, "type": "array" }, "Path": { "type": "string" }, "User": { "type": "string" }, "SecretFile": { "type": "string" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "CinderVolumeSource": { "required": [ "VolumeID", "FSType", "ReadOnly", "SecretRef" ], "properties": { "VolumeID": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" } }, "additionalProperties": false, "type": "object" }, "CloudProvider": { "properties": { "name": { "type": "string", "description": "Name of the Cloud Provider" }, "awsCloudProvider": { "$ref": "#/definitions/AWSCloudProvider", "description": "AWSCloudProvider" }, "azureCloudProvider": { "$ref": "#/definitions/AzureCloudProvider", "description": "AzureCloudProvider" }, "openstackCloudProvider": { "$ref": "#/definitions/OpenstackCloudProvider", "description": "OpenstackCloudProvider" }, "vsphereCloudProvider": { "$ref": "#/definitions/VsphereCloudProvider", "description": "VsphereCloudProvider" }, "customCloudProvider": { "type": "string", "description": "CustomCloudProvider is a multiline string that represent a custom cloud config file" } }, "additionalProperties": false, "type": "object" }, "ConfigMapKeySelector": { "required": [ "Name", "Key", "Optional" ], "properties": { "Name": { "type": "string" }, "Key": { "type": "string" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "ConfigMapProjection": { "required": [ "Name", "Items", "Optional" ], "properties": { "Name": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/KeyToPath" }, "type": "array" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "ConfigMapVolumeSource": { "required": [ "Name", "Items", "DefaultMode", "Optional" ], "properties": { "Name": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/KeyToPath" }, "type": "array" }, "DefaultMode": { "type": "integer" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "Configuration": { "required": [ "Kind", "APIVersion", "Limits" ], "properties": { "Kind": { "type": "string" }, "APIVersion": { "type": "string" }, "Limits": { "items": { "$ref": "#/definitions/Limit" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "DNSConfig": { "properties": { "provider": { "type": "string", "description": "DNS provider" }, "options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "DNS config options" }, "upstreamnameservers": { "items": { "type": "string" }, "type": "array", "description": "Upstream nameservers" }, "reversecidrs": { "items": { "type": "string" }, "type": "array", "description": "ReverseCIDRs" }, "stubdomains": { "patternProperties": { ".*": { "items": { "type": "string" }, "type": "array" } }, "type": "object", "description": "Stubdomains" }, "node_selector": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "NodeSelector key pair" }, "nodelocal": { "$ref": "#/definitions/Nodelocal", "description": "Nodelocal DNS" }, "update_strategy": { "$ref": "#/definitions/DeploymentStrategy", "description": "Update strategy" }, "linear_autoscaler_params": { "$ref": "#/definitions/LinearAutoscalerParams", "description": "Autoscaler fields to determine number of dns replicas" }, "tolerations": { "items": { "$ref": "#/definitions/Toleration" }, "type": "array", "description": "Tolerations for Deployments" } }, "additionalProperties": false, "type": "object" }, "DaemonSetUpdateStrategy": { "required": [ "Strategy", "RollingUpdate" ], "properties": { "Strategy": { "type": "string" }, "RollingUpdate": { "$ref": "#/definitions/RollingUpdateDaemonSet" } }, "additionalProperties": false, "type": "object" }, "DeploymentStrategy": { "required": [ "Strategy", "RollingUpdate" ], "properties": { "Strategy": { "type": "string" }, "RollingUpdate": { "$ref": "#/definitions/RollingUpdateDeployment" } }, "additionalProperties": false, "type": "object" }, "DiskVsphereOpts": { "properties": { "scsicontrollertype": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "DownwardAPIProjection": { "required": [ "Items" ], "properties": { "Items": { "items": { "$ref": "#/definitions/DownwardAPIVolumeFile" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "DownwardAPIVolumeFile": { "required": [ "Path", "FieldRef", "ResourceFieldRef", "Mode" ], "properties": { "Path": { "type": "string" }, "FieldRef": { "$ref": "#/definitions/ObjectFieldSelector" }, "ResourceFieldRef": { "$ref": "#/definitions/ResourceFieldSelector" }, "Mode": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "DownwardAPIVolumeSource": { "required": [ "Items", "DefaultMode" ], "properties": { "Items": { "items": { "$ref": "#/definitions/DownwardAPIVolumeFile" }, "type": "array" }, "DefaultMode": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "Duration": { "properties": {}, "additionalProperties": false, "type": "object" }, "ECRCredentialPlugin": { "required": [ "aws_access_key_id", "aws_secret_access_key", "aws_session_token" ], "properties": { "aws_access_key_id": { "type": "string" }, "aws_secret_access_key": { "type": "string" }, "aws_session_token": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ETCDService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" }, "external_urls": { "items": { "type": "string" }, "type": "array", "description": "List of etcd urls" }, "ca_cert": { "type": "string", "description": "External CA certificate" }, "cert": { "type": "string", "description": "External Client certificate" }, "key": { "type": "string", "description": "External Client key" }, "path": { "type": "string", "description": "External etcd prefix" }, "uid": { "type": "integer", "description": "UID to run etcd container as" }, "gid": { "type": "integer", "description": "GID to run etcd container as" }, "snapshot": { "type": "boolean", "description": "Etcd Recurring snapshot Service, used by rke only" }, "retention": { "type": "string", "description": "Etcd snapshot Retention period" }, "creation": { "type": "string", "description": "Etcd snapshot Creation period" }, "backup_config": { "$ref": "#/definitions/BackupConfig", "description": "Backup backend for etcd snapshots" } }, "additionalProperties": false, "type": "object" }, "EmptyDirVolumeSource": { "required": [ "Medium", "SizeLimit" ], "properties": { "Medium": { "type": "string" }, "SizeLimit": { "$ref": "#/definitions/Quantity" } }, "additionalProperties": false, "type": "object" }, "EncryptionConfiguration": { "required": [ "Kind", "APIVersion", "Resources" ], "properties": { "Kind": { "type": "string" }, "APIVersion": { "type": "string" }, "Resources": { "items": { "$ref": "#/definitions/ResourceConfiguration" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "EnvVarSource": { "required": [ "FieldRef", "ResourceFieldRef", "ConfigMapKeyRef", "SecretKeyRef" ], "properties": { "FieldRef": { "$ref": "#/definitions/ObjectFieldSelector" }, "ResourceFieldRef": { "$ref": "#/definitions/ResourceFieldSelector" }, "ConfigMapKeyRef": { "$ref": "#/definitions/ConfigMapKeySelector" }, "SecretKeyRef": { "$ref": "#/definitions/SecretKeySelector" } }, "additionalProperties": false, "type": "object" }, "EphemeralVolumeSource": { "required": [ "VolumeClaimTemplate" ], "properties": { "VolumeClaimTemplate": { "$ref": "#/definitions/PersistentVolumeClaimTemplate" } }, "additionalProperties": false, "type": "object" }, "EventRateLimit": { "properties": { "enabled": { "type": "boolean" }, "configuration": { "$ref": "#/definitions/Configuration" } }, "additionalProperties": false, "type": "object" }, "ExtraEnv": { "required": [ "Name", "Value", "ValueFrom" ], "properties": { "Name": { "type": "string" }, "Value": { "type": "string" }, "ValueFrom": { "$ref": "#/definitions/EnvVarSource" } }, "additionalProperties": false, "type": "object" }, "ExtraVolume": { "required": [ "Name", "HostPath", "EmptyDir", "GCEPersistentDisk", "AWSElasticBlockStore", "GitRepo", "Secret", "NFS", "ISCSI", "Glusterfs", "PersistentVolumeClaim", "RBD", "FlexVolume", "Cinder", "CephFS", "Flocker", "DownwardAPI", "FC", "AzureFile", "ConfigMap", "VsphereVolume", "Quobyte", "AzureDisk", "PhotonPersistentDisk", "Projected", "PortworxVolume", "ScaleIO", "StorageOS", "CSI", "Ephemeral" ], "properties": { "Name": { "type": "string" }, "HostPath": { "$ref": "#/definitions/HostPathVolumeSource" }, "EmptyDir": { "$ref": "#/definitions/EmptyDirVolumeSource" }, "GCEPersistentDisk": { "$ref": "#/definitions/GCEPersistentDiskVolumeSource" }, "AWSElasticBlockStore": { "$ref": "#/definitions/AWSElasticBlockStoreVolumeSource" }, "GitRepo": { "$ref": "#/definitions/GitRepoVolumeSource" }, "Secret": { "$ref": "#/definitions/SecretVolumeSource" }, "NFS": { "$ref": "#/definitions/NFSVolumeSource" }, "ISCSI": { "$ref": "#/definitions/ISCSIVolumeSource" }, "Glusterfs": { "$ref": "#/definitions/GlusterfsVolumeSource" }, "PersistentVolumeClaim": { "$ref": "#/definitions/PersistentVolumeClaimVolumeSource" }, "RBD": { "$ref": "#/definitions/RBDVolumeSource" }, "FlexVolume": { "$ref": "#/definitions/FlexVolumeSource" }, "Cinder": { "$ref": "#/definitions/CinderVolumeSource" }, "CephFS": { "$ref": "#/definitions/CephFSVolumeSource" }, "Flocker": { "$ref": "#/definitions/FlockerVolumeSource" }, "DownwardAPI": { "$ref": "#/definitions/DownwardAPIVolumeSource" }, "FC": { "$ref": "#/definitions/FCVolumeSource" }, "AzureFile": { "$ref": "#/definitions/AzureFileVolumeSource" }, "ConfigMap": { "$ref": "#/definitions/ConfigMapVolumeSource" }, "VsphereVolume": { "$ref": "#/definitions/VsphereVirtualDiskVolumeSource" }, "Quobyte": { "$ref": "#/definitions/QuobyteVolumeSource" }, "AzureDisk": { "$ref": "#/definitions/AzureDiskVolumeSource" }, "PhotonPersistentDisk": { "$ref": "#/definitions/PhotonPersistentDiskVolumeSource" }, "Projected": { "$ref": "#/definitions/ProjectedVolumeSource" }, "PortworxVolume": { "$ref": "#/definitions/PortworxVolumeSource" }, "ScaleIO": { "$ref": "#/definitions/ScaleIOVolumeSource" }, "StorageOS": { "$ref": "#/definitions/StorageOSVolumeSource" }, "CSI": { "$ref": "#/definitions/CSIVolumeSource" }, "Ephemeral": { "$ref": "#/definitions/EphemeralVolumeSource" } }, "additionalProperties": false, "type": "object" }, "ExtraVolumeMount": { "required": [ "Name", "ReadOnly", "MountPath", "SubPath", "MountPropagation", "SubPathExpr" ], "properties": { "Name": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "MountPath": { "type": "string" }, "SubPath": { "type": "string" }, "MountPropagation": { "type": "string" }, "SubPathExpr": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "FCVolumeSource": { "required": [ "TargetWWNs", "Lun", "FSType", "ReadOnly", "WWIDs" ], "properties": { "TargetWWNs": { "items": { "type": "string" }, "type": "array" }, "Lun": { "type": "integer" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "WWIDs": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "FieldsV1": { "required": [ "Raw" ], "properties": { "Raw": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "FlannelNetworkProvider": { "required": [ "Iface" ], "properties": { "Iface": { "type": "string", "description": "Alternate cloud interface for flannel" } }, "additionalProperties": false, "type": "object" }, "FlexVolumeSource": { "required": [ "Driver", "FSType", "SecretRef", "ReadOnly", "Options" ], "properties": { "Driver": { "type": "string" }, "FSType": { "type": "string" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" }, "ReadOnly": { "type": "boolean" }, "Options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" } }, "additionalProperties": false, "type": "object" }, "FlockerVolumeSource": { "required": [ "DatasetName", "DatasetUUID" ], "properties": { "DatasetName": { "type": "string" }, "DatasetUUID": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "GCEPersistentDiskVolumeSource": { "required": [ "PDName", "FSType", "Partition", "ReadOnly" ], "properties": { "PDName": { "type": "string" }, "FSType": { "type": "string" }, "Partition": { "type": "integer" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "GitRepoVolumeSource": { "required": [ "Repository", "Revision", "Directory" ], "properties": { "Repository": { "type": "string" }, "Revision": { "type": "string" }, "Directory": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "GlobalAwsOpts": { "required": [ "zone", "vpc", "subnet-id", "routetable-id", "role-arn", "kubernetes-cluster-tag", "kubernetes-cluster-id", "disable-security-group-ingress", "elb-security-group", "disable-strict-zone-check" ], "properties": { "zone": { "type": "string", "description": "TODO: Is there any use for this? We can get it from the instance metadata service\nMaybe if we're not running on AWS, e.g. bootstrap; for now it is not very useful" }, "vpc": { "type": "string", "description": "The AWS VPC flag enables the possibility to run the master components\non a different aws account, on a different cloud provider or on-premises.\nIf the flag is set also the KubernetesClusterTag must be provided" }, "subnet-id": { "type": "string", "description": "SubnetID enables using a specific subnet to use for ELB's" }, "routetable-id": { "type": "string", "description": "RouteTableID enables using a specific RouteTable" }, "role-arn": { "type": "string", "description": "RoleARN is the IAM role to assume when interaction with AWS APIs." }, "kubernetes-cluster-tag": { "type": "string", "description": "KubernetesClusterTag is the legacy cluster id we'll use to identify our cluster resources" }, "kubernetes-cluster-id": { "type": "string", "description": "KubernetesClusterID is the cluster id we'll use to identify our cluster resources" }, "disable-security-group-ingress": { "type": "boolean", "description": "The aws provider creates an inbound rule per load balancer on the node security\ngroup. However, this can run into the AWS security group rule limit of 50 if\nmany LoadBalancers are created.\n\nThis flag disables the automatic ingress creation. It requires that the user\nhas setup a rule that allows inbound traffic on kubelet ports from the\nlocal VPC subnet (so load balancers can access it). E.g. 10.82.0.0/16 30000-32000." }, "elb-security-group": { "type": "string", "description": "AWS has a hard limit of 500 security groups. For large clusters creating a security group for each ELB\ncan cause the max number of security groups to be reached. If this is set instead of creating a new\nSecurity group for each ELB this security group will be used instead." }, "disable-strict-zone-check": { "type": "boolean", "description": "During the instantiation of an new AWS cloud provider, the detected region\nis validated against a known set of regions.\n\nIn a non-standard, AWS like environment (e.g. Eucalyptus), this check may\nbe undesirable. Setting this to true will disable the check and provide\na warning that the check was skipped. Please note that this is an\nexperimental feature and work-in-progress for the moment. If you find\nyourself in an non-AWS cloud and open an issue, please indicate that in the\nissue body." } }, "additionalProperties": false, "type": "object" }, "GlobalOpenstackOpts": { "required": [ "auth-url", "username", "user-id", "password", "tenant-id", "tenant-name", "trust-id", "domain-id", "domain-name", "region", "ca-file" ], "properties": { "auth-url": { "type": "string" }, "username": { "type": "string" }, "user-id": { "type": "string" }, "password": { "type": "string" }, "tenant-id": { "type": "string" }, "tenant-name": { "type": "string" }, "trust-id": { "type": "string" }, "domain-id": { "type": "string" }, "domain-name": { "type": "string" }, "region": { "type": "string" }, "ca-file": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "GlobalVsphereOpts": { "properties": { "user": { "type": "string" }, "password": { "type": "string" }, "server": { "type": "string" }, "port": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "insecure-flag": { "type": "boolean" }, "datacenter": { "type": "string" }, "datacenters": { "type": "string" }, "datastore": { "type": "string" }, "working-dir": { "type": "string" }, "soap-roundtrip-count": { "type": "integer" }, "vm-uuid": { "type": "string" }, "vm-name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "GlusterfsVolumeSource": { "required": [ "EndpointsName", "Path", "ReadOnly" ], "properties": { "EndpointsName": { "type": "string" }, "Path": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "GroupResources": { "required": [ "Group", "Resources", "ResourceNames" ], "properties": { "Group": { "type": "string" }, "Resources": { "items": { "type": "string" }, "type": "array" }, "ResourceNames": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "HostPathVolumeSource": { "required": [ "Path", "Type" ], "properties": { "Path": { "type": "string" }, "Type": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ISCSIVolumeSource": { "required": [ "TargetPortal", "IQN", "Lun", "ISCSIInterface", "FSType", "ReadOnly", "Portals", "DiscoveryCHAPAuth", "SessionCHAPAuth", "SecretRef", "InitiatorName" ], "properties": { "TargetPortal": { "type": "string" }, "IQN": { "type": "string" }, "Lun": { "type": "integer" }, "ISCSIInterface": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "Portals": { "items": { "type": "string" }, "type": "array" }, "DiscoveryCHAPAuth": { "type": "boolean" }, "SessionCHAPAuth": { "type": "boolean" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" }, "InitiatorName": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "IdentityConfiguration": { "properties": {}, "additionalProperties": false, "type": "object" }, "IngressConfig": { "properties": { "provider": { "type": "string", "description": "Ingress controller type used by kubernetes" }, "options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "These options are NOT for configuring Ingress's addon template.\nThey are used for its ConfigMap options specifically." }, "node_selector": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "NodeSelector key pair" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "Ingress controller extra arguments" }, "dns_policy": { "type": "string", "description": "DNS Policy" }, "extra_envs": { "items": { "$ref": "#/definitions/ExtraEnv" }, "type": "array", "description": "Extra Env vars" }, "extra_volumes": { "items": { "$ref": "#/definitions/ExtraVolume" }, "type": "array", "description": "Extra volumes" }, "extra_volume_mounts": { "items": { "$ref": "#/definitions/ExtraVolumeMount" }, "type": "array", "description": "Extra volume mounts" }, "update_strategy": { "$ref": "#/definitions/DaemonSetUpdateStrategy", "description": "nginx daemonset upgrade strategy" }, "http_port": { "oneOf": [ { "type": "string" }, { "type": "number" } ], "description": "Http port for ingress controller daemonset" }, "https_port": { "oneOf": [ { "type": "string" }, { "type": "number" } ], "description": "Https port for ingress controller daemonset" }, "network_mode": { "type": "string", "description": "NetworkMode selector for ingress controller pods. Default is HostNetwork" }, "tolerations": { "items": { "$ref": "#/definitions/Toleration" }, "type": "array", "description": "Tolerations for Deployments" }, "default_backend": { "type": "boolean", "description": "Enable or disable nginx default-http-backend" }, "default_http_backend_priority_class_name": { "type": "string", "description": "Priority class name for Nginx-Ingress's \"default-http-backend\" deployment" }, "nginx_ingress_controller_priority_class_name": { "type": "string", "description": "Priority class name for Nginx-Ingress's \"nginx-ingress-controller\" daemonset" } }, "additionalProperties": false, "type": "object" }, "IntOrString": { "required": [ "Type", "IntVal", "StrVal" ], "properties": { "Type": { "type": "integer" }, "IntVal": { "type": "integer" }, "StrVal": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "KMSConfiguration": { "required": [ "Name", "CacheSize", "Endpoint", "Timeout" ], "properties": { "Name": { "type": "string" }, "CacheSize": { "type": "integer" }, "Endpoint": { "type": "string" }, "Timeout": { "$ref": "#/definitions/Duration" } }, "additionalProperties": false, "type": "object" }, "Key": { "required": [ "Name", "Secret" ], "properties": { "Name": { "type": "string" }, "Secret": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "KeyToPath": { "required": [ "Key", "Path", "Mode" ], "properties": { "Key": { "type": "string" }, "Path": { "type": "string" }, "Mode": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "KubeAPIService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" }, "service_cluster_ip_range": { "type": "string", "description": "Virtual IP range that will be used by Kubernetes services" }, "service_node_port_range": { "type": "string", "description": "Port range for services defined with NodePort type" }, "pod_security_policy": { "type": "boolean", "description": "Enabled/Disable PodSecurityPolicy" }, "always_pull_images": { "type": "boolean", "description": "Enable/Disable AlwaysPullImages admissions plugin" }, "secrets_encryption_config": { "$ref": "#/definitions/SecretsEncryptionConfig", "description": "Secrets encryption provider config" }, "audit_log": { "$ref": "#/definitions/AuditLog", "description": "Audit Log Configuration" }, "admission_configuration": { "$ref": "#/definitions/AdmissionConfiguration", "description": "AdmissionConfiguration" }, "event_rate_limit": { "$ref": "#/definitions/EventRateLimit", "description": "Event Rate Limit configuration" } }, "additionalProperties": false, "type": "object" }, "KubeControllerService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" }, "cluster_cidr": { "type": "string", "description": "CIDR Range for Pods in cluster" }, "service_cluster_ip_range": { "type": "string", "description": "Virtual IP range that will be used by Kubernetes services" } }, "additionalProperties": false, "type": "object" }, "KubeletService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" }, "cluster_domain": { "type": "string", "description": "Domain of the cluster (default: \"cluster.local\")" }, "infra_container_image": { "type": "string", "description": "The image whose network/ipc namespaces containers in each pod will use" }, "cluster_dns_server": { "type": "string", "description": "Cluster DNS service ip" }, "fail_swap_on": { "type": "boolean", "description": "Fail if swap is enabled" }, "generate_serving_certificate": { "type": "boolean", "description": "Generate per node kubelet serving certificates created using kube-ca" } }, "additionalProperties": false, "type": "object" }, "KubeproxyService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "LabelSelector": { "required": [ "MatchLabels", "MatchExpressions" ], "properties": { "MatchLabels": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "MatchExpressions": { "items": { "$ref": "#/definitions/LabelSelectorRequirement" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "LabelSelectorRequirement": { "required": [ "Key", "Operator", "Values" ], "properties": { "Key": { "type": "string" }, "Operator": { "type": "string" }, "Values": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "Limit": { "required": [ "Type", "QPS", "Burst", "CacheSize" ], "properties": { "Type": { "type": "string" }, "QPS": { "type": "integer" }, "Burst": { "type": "integer" }, "CacheSize": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "LinearAutoscalerParams": { "required": [ "min", "max" ], "properties": { "cores_per_replica": { "type": "number" }, "nodes_per_replica": { "type": "number" }, "min": { "type": "integer" }, "max": { "type": "integer" }, "prevent_single_point_failure": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "LoadBalancerOpenstackOpts": { "required": [ "lb-version", "use-octavia", "subnet-id", "floating-network-id", "lb-method", "lb-provider", "create-monitor", "monitor-delay", "monitor-timeout", "monitor-max-retries", "manage-security-groups" ], "properties": { "lb-version": { "type": "string", "description": "overrides autodetection. Only support v2." }, "use-octavia": { "type": "boolean", "description": "uses Octavia V2 service catalog endpoint" }, "subnet-id": { "type": "string", "description": "overrides autodetection." }, "floating-network-id": { "type": "string", "description": "If specified, will create floating ip for loadbalancer, or do not create floating ip." }, "lb-method": { "type": "string", "description": "default to ROUND_ROBIN." }, "lb-provider": { "type": "string" }, "create-monitor": { "type": "boolean" }, "monitor-delay": { "type": "string" }, "monitor-timeout": { "type": "string" }, "monitor-max-retries": { "type": "integer" }, "manage-security-groups": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "LocalObjectReference": { "required": [ "Name" ], "properties": { "Name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ManagedFieldsEntry": { "required": [ "Manager", "Operation", "APIVersion", "Time", "FieldsType", "FieldsV1" ], "properties": { "Manager": { "type": "string" }, "Operation": { "type": "string" }, "APIVersion": { "type": "string" }, "Time": { "type": "string", "format": "date-time" }, "FieldsType": { "type": "string" }, "FieldsV1": { "$ref": "#/definitions/FieldsV1" } }, "additionalProperties": false, "type": "object" }, "MetadataOpenstackOpts": { "required": [ "search-order", "request-timeout" ], "properties": { "search-order": { "type": "string" }, "request-timeout": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "MonitoringConfig": { "required": [ "replicas" ], "properties": { "provider": { "type": "string", "description": "Monitoring server provider" }, "options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "These options are NOT for configuring the Metrics-Server's addon template.\nThey are used to pass command args to the metric-server's deployment containers specifically." }, "node_selector": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "NodeSelector key pair" }, "update_strategy": { "$ref": "#/definitions/DeploymentStrategy", "description": "Update strategy" }, "replicas": { "type": "integer", "description": "Number of monitoring addon pods" }, "tolerations": { "items": { "$ref": "#/definitions/Toleration" }, "type": "array", "description": "Tolerations for Deployments" }, "metrics_server_priority_class_name": { "type": "string", "description": "Priority class name for Metrics-Server's \"metrics-server\" deployment" } }, "additionalProperties": false, "type": "object" }, "NFSVolumeSource": { "required": [ "Server", "Path", "ReadOnly" ], "properties": { "Server": { "type": "string" }, "Path": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "NetworkConfig": { "properties": { "plugin": { "type": "string", "description": "Network Plugin That will be used in kubernetes cluster" }, "options": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "Plugin options to configure network properties" }, "mtu": { "type": "integer", "description": "Set MTU for CNI provider" }, "calico_network_provider": { "$ref": "#/definitions/CalicoNetworkProvider", "description": "CalicoNetworkProvider" }, "canal_network_provider": { "$ref": "#/definitions/CanalNetworkProvider", "description": "CanalNetworkProvider" }, "flannel_network_provider": { "$ref": "#/definitions/FlannelNetworkProvider", "description": "FlannelNetworkProvider" }, "weave_network_provider": { "$ref": "#/definitions/WeaveNetworkProvider", "description": "WeaveNetworkProvider" }, "aci_network_provider": { "$ref": "#/definitions/AciNetworkProvider", "description": "AciNetworkProvider" }, "node_selector": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "NodeSelector key pair" }, "update_strategy": { "$ref": "#/definitions/DaemonSetUpdateStrategy", "description": "Network plugin daemonset upgrade strategy" }, "tolerations": { "items": { "$ref": "#/definitions/Toleration" }, "type": "array", "description": "Tolerations for Deployments" } }, "additionalProperties": false, "type": "object" }, "NetworkVshpereOpts": { "properties": { "public-network": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "NodeDrainInput": { "required": [ "timeout" ], "properties": { "force": { "type": "boolean", "description": "Drain node even if there are pods not managed by a ReplicationController, Job, or DaemonSet\nDrain will not proceed without Force set to true if there are such pods" }, "ignore_daemonsets": { "type": "boolean", "description": "If there are DaemonSet-managed pods, drain will not proceed without IgnoreDaemonSets set to true\n(even when set to true, kubectl won't delete pods - so setting default to true)" }, "delete_local_data": { "type": "boolean", "description": "Continue even if there are pods using emptyDir" }, "grace_period": { "type": "integer", "description": "Period of time in seconds given to each pod to terminate gracefully.\nIf negative, the default value specified in the pod will be used" }, "timeout": { "type": "integer", "description": "Time to wait (in seconds) before giving up for one try" } }, "additionalProperties": false, "type": "object" }, "NodeUpgradeStrategy": { "properties": { "max_unavailable_worker": { "type": "string", "description": "MaxUnavailableWorker input can be a number of nodes or a percentage of nodes (example, max_unavailable_worker: 2 OR max_unavailable_worker: 20%)" }, "max_unavailable_controlplane": { "type": "string", "description": "MaxUnavailableControlplane input can be a number of nodes or a percentage of nodes" }, "drain": { "type": "boolean" }, "node_drain_input": { "$ref": "#/definitions/NodeDrainInput" } }, "additionalProperties": false, "type": "object" }, "Nodelocal": { "properties": { "ip_address": { "type": "string", "description": "link-local IP for nodelocal DNS" }, "update_strategy": { "$ref": "#/definitions/DaemonSetUpdateStrategy", "description": "Nodelocal DNS daemonset upgrade strategy" }, "node_selector": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "NodeSelector key pair" }, "node_local_dns_priority_class_name": { "type": "string", "description": "Priority class name for NodeLocal's \"node-local-dns\" daemonset" } }, "additionalProperties": false, "type": "object" }, "ObjectFieldSelector": { "required": [ "APIVersion", "FieldPath" ], "properties": { "APIVersion": { "type": "string" }, "FieldPath": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "OpenstackCloudProvider": { "required": [ "global", "load_balancer", "block_storage", "route", "metadata" ], "properties": { "global": { "$ref": "#/definitions/GlobalOpenstackOpts" }, "load_balancer": { "$ref": "#/definitions/LoadBalancerOpenstackOpts" }, "block_storage": { "$ref": "#/definitions/BlockStorageOpenstackOpts" }, "route": { "$ref": "#/definitions/RouteOpenstackOpts" }, "metadata": { "$ref": "#/definitions/MetadataOpenstackOpts" } }, "additionalProperties": false, "type": "object" }, "OwnerReference": { "required": [ "APIVersion", "Kind", "Name", "UID", "Controller", "BlockOwnerDeletion" ], "properties": { "APIVersion": { "type": "string" }, "Kind": { "type": "string" }, "Name": { "type": "string" }, "UID": { "type": "string" }, "Controller": { "type": "boolean" }, "BlockOwnerDeletion": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "PersistentVolumeClaimSpec": { "required": [ "AccessModes", "Selector", "Resources", "VolumeName", "StorageClassName", "VolumeMode", "DataSource" ], "properties": { "AccessModes": { "items": { "type": "string" }, "type": "array" }, "Selector": { "$ref": "#/definitions/LabelSelector" }, "Resources": { "$ref": "#/definitions/ResourceRequirements" }, "VolumeName": { "type": "string" }, "StorageClassName": { "type": "string" }, "VolumeMode": { "type": "string" }, "DataSource": { "$ref": "#/definitions/TypedLocalObjectReference" } }, "additionalProperties": false, "type": "object" }, "PersistentVolumeClaimTemplate": { "required": [ "Name", "GenerateName", "Namespace", "SelfLink", "UID", "ResourceVersion", "Generation", "CreationTimestamp", "DeletionTimestamp", "DeletionGracePeriodSeconds", "Labels", "Annotations", "OwnerReferences", "Finalizers", "ClusterName", "ManagedFields", "Spec" ], "properties": { "Name": { "type": "string" }, "GenerateName": { "type": "string" }, "Namespace": { "type": "string" }, "SelfLink": { "type": "string" }, "UID": { "type": "string" }, "ResourceVersion": { "type": "string" }, "Generation": { "type": "integer" }, "CreationTimestamp": { "$ref": "#/definitions/Time" }, "DeletionTimestamp": { "type": "string", "format": "date-time" }, "DeletionGracePeriodSeconds": { "type": "integer" }, "Labels": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "Annotations": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "OwnerReferences": { "items": { "$ref": "#/definitions/OwnerReference" }, "type": "array" }, "Finalizers": { "items": { "type": "string" }, "type": "array" }, "ClusterName": { "type": "string" }, "ManagedFields": { "items": { "$ref": "#/definitions/ManagedFieldsEntry" }, "type": "array" }, "Spec": { "$ref": "#/definitions/PersistentVolumeClaimSpec" } }, "additionalProperties": false, "type": "object" }, "PersistentVolumeClaimVolumeSource": { "required": [ "ClaimName", "ReadOnly" ], "properties": { "ClaimName": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "PhotonPersistentDiskVolumeSource": { "required": [ "PdID", "FSType" ], "properties": { "PdID": { "type": "string" }, "FSType": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Policy": { "required": [ "Kind", "APIVersion", "Name", "GenerateName", "Namespace", "SelfLink", "UID", "ResourceVersion", "Generation", "CreationTimestamp", "DeletionTimestamp", "DeletionGracePeriodSeconds", "Labels", "Annotations", "OwnerReferences", "Finalizers", "ClusterName", "ManagedFields", "Rules", "OmitStages" ], "properties": { "Kind": { "type": "string" }, "APIVersion": { "type": "string" }, "Name": { "type": "string" }, "GenerateName": { "type": "string" }, "Namespace": { "type": "string" }, "SelfLink": { "type": "string" }, "UID": { "type": "string" }, "ResourceVersion": { "type": "string" }, "Generation": { "type": "integer" }, "CreationTimestamp": { "$ref": "#/definitions/Time" }, "DeletionTimestamp": { "type": "string", "format": "date-time" }, "DeletionGracePeriodSeconds": { "type": "integer" }, "Labels": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "Annotations": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "OwnerReferences": { "items": { "$ref": "#/definitions/OwnerReference" }, "type": "array" }, "Finalizers": { "items": { "type": "string" }, "type": "array" }, "ClusterName": { "type": "string" }, "ManagedFields": { "items": { "$ref": "#/definitions/ManagedFieldsEntry" }, "type": "array" }, "Rules": { "items": { "$ref": "#/definitions/PolicyRule" }, "type": "array" }, "OmitStages": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "PolicyRule": { "required": [ "Level", "Users", "UserGroups", "Verbs", "Resources", "Namespaces", "NonResourceURLs", "OmitStages" ], "properties": { "Level": { "type": "string" }, "Users": { "items": { "type": "string" }, "type": "array" }, "UserGroups": { "items": { "type": "string" }, "type": "array" }, "Verbs": { "items": { "type": "string" }, "type": "array" }, "Resources": { "items": { "$ref": "#/definitions/GroupResources" }, "type": "array" }, "Namespaces": { "items": { "type": "string" }, "type": "array" }, "NonResourceURLs": { "items": { "type": "string" }, "type": "array" }, "OmitStages": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "PortworxVolumeSource": { "required": [ "VolumeID", "FSType", "ReadOnly" ], "properties": { "VolumeID": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "PrivateRegistry": { "properties": { "url": { "type": "string", "description": "URL for the registry" }, "user": { "type": "string", "description": "User name for registry acces" }, "password": { "type": "string", "description": "Password for registry access" }, "is_default": { "type": "boolean", "description": "Default registry" }, "ecr_credential_plugin": { "$ref": "#/definitions/ECRCredentialPlugin", "description": "ECRCredentialPlugin" } }, "additionalProperties": false, "type": "object" }, "ProjectedVolumeSource": { "required": [ "Sources", "DefaultMode" ], "properties": { "Sources": { "items": { "$ref": "#/definitions/VolumeProjection" }, "type": "array" }, "DefaultMode": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "ProviderConfiguration": { "required": [ "AESGCM", "AESCBC", "Secretbox", "Identity", "KMS" ], "properties": { "AESGCM": { "$ref": "#/definitions/AESConfiguration" }, "AESCBC": { "$ref": "#/definitions/AESConfiguration" }, "Secretbox": { "$ref": "#/definitions/SecretboxConfiguration" }, "Identity": { "$ref": "#/definitions/IdentityConfiguration" }, "KMS": { "$ref": "#/definitions/KMSConfiguration" } }, "additionalProperties": false, "type": "object" }, "Quantity": { "properties": {}, "additionalProperties": false, "type": "object" }, "QuobyteVolumeSource": { "required": [ "Registry", "Volume", "ReadOnly", "User", "Group", "Tenant" ], "properties": { "Registry": { "type": "string" }, "Volume": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "User": { "type": "string" }, "Group": { "type": "string" }, "Tenant": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "RBDVolumeSource": { "required": [ "CephMonitors", "RBDImage", "FSType", "RBDPool", "RadosUser", "Keyring", "SecretRef", "ReadOnly" ], "properties": { "CephMonitors": { "items": { "type": "string" }, "type": "array" }, "RBDImage": { "type": "string" }, "FSType": { "type": "string" }, "RBDPool": { "type": "string" }, "RadosUser": { "type": "string" }, "Keyring": { "type": "string" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "RKEConfigNode": { "properties": { "nodeName": { "type": "string", "description": "Name of the host provisioned via docker machine" }, "address": { "type": "string", "description": "IP or FQDN that is fully resolvable and used for SSH communication" }, "port": { "oneOf": [ { "type": "string" }, { "type": "number" } ], "description": "Port used for SSH communication" }, "internal_address": { "type": "string", "description": "Optional - Internal address that will be used for components communication" }, "role": { "items": { "type": "string" }, "type": "array", "description": "Node role in kubernetes cluster (controlplane, worker, or etcd)" }, "hostname_override": { "type": "string", "description": "Optional - Hostname of the node" }, "user": { "type": "string", "description": "SSH usesr that will be used by RKE" }, "docker_socket": { "type": "string", "description": "Optional - Docker socket on the node that will be used in tunneling" }, "ssh_agent_auth": { "type": "boolean", "description": "SSH Agent Auth enable" }, "ssh_key": { "type": "string", "description": "SSH Private Key" }, "ssh_key_path": { "type": "string", "description": "SSH Private Key Path" }, "ssh_cert": { "type": "string", "description": "SSH Certificate" }, "ssh_cert_path": { "type": "string", "description": "SSH Certificate Path" }, "labels": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object", "description": "Node Labels" }, "taints": { "items": { "$ref": "#/definitions/RKETaint" }, "type": "array", "description": "Node Taints" } }, "additionalProperties": false, "type": "object" }, "RKEConfigServices": { "properties": { "etcd": { "$ref": "#/definitions/ETCDService", "description": "Etcd Service" }, "kube-api": { "$ref": "#/definitions/KubeAPIService", "description": "KubeAPI Service" }, "kube-controller": { "$ref": "#/definitions/KubeControllerService", "description": "KubeController Service" }, "scheduler": { "$ref": "#/definitions/SchedulerService", "description": "Scheduler Service" }, "kubelet": { "$ref": "#/definitions/KubeletService", "description": "Kubelet Service" }, "kubeproxy": { "$ref": "#/definitions/KubeproxyService", "description": "KubeProxy Service" } }, "additionalProperties": false, "type": "object" }, "RKESystemImages": { "properties": { "etcd": { "type": "string", "description": "etcd image" }, "alpine": { "type": "string", "description": "Alpine image" }, "nginx_proxy": { "type": "string", "description": "rke-nginx-proxy image" }, "cert_downloader": { "type": "string", "description": "rke-cert-deployer image" }, "kubernetes_services_sidecar": { "type": "string", "description": "rke-service-sidekick image" }, "kubedns": { "type": "string", "description": "KubeDNS image" }, "dnsmasq": { "type": "string", "description": "DNSMasq image" }, "kubedns_sidecar": { "type": "string", "description": "KubeDNS side car image" }, "kubedns_autoscaler": { "type": "string", "description": "KubeDNS autoscaler image" }, "coredns": { "type": "string", "description": "CoreDNS image" }, "coredns_autoscaler": { "type": "string", "description": "CoreDNS autoscaler image" }, "nodelocal": { "type": "string", "description": "Nodelocal image" }, "kubernetes": { "type": "string", "description": "Kubernetes image" }, "flannel": { "type": "string", "description": "Flannel image" }, "flannel_cni": { "type": "string", "description": "Flannel CNI image" }, "calico_node": { "type": "string", "description": "Calico Node image" }, "calico_cni": { "type": "string", "description": "Calico CNI image" }, "calico_controllers": { "type": "string", "description": "Calico Controllers image" }, "calico_ctl": { "type": "string", "description": "Calicoctl image" }, "calico_flexvol": { "type": "string", "description": "CalicoFlexVol image" }, "canal_node": { "type": "string", "description": "Canal Node Image" }, "canal_cni": { "type": "string", "description": "Canal CNI image" }, "canal_controllers": { "type": "string", "description": "Canal Controllers Image needed for Calico/Canal v3.14.0+" }, "canal_flannel": { "type": "string", "description": "CanalFlannel image" }, "canal_flexvol": { "type": "string", "description": "CanalFlexVol image" }, "weave_node": { "type": "string", "description": "Weave Node image" }, "weave_cni": { "type": "string", "description": "Weave CNI image" }, "pod_infra_container": { "type": "string", "description": "Pod infra container image" }, "ingress": { "type": "string", "description": "Ingress Controller image" }, "ingress_backend": { "type": "string", "description": "Ingress Controller Backend image" }, "ingress_webhook": { "type": "string", "description": "Ingress Webhook image" }, "metrics_server": { "type": "string", "description": "Metrics Server image" }, "windows_pod_infra_container": { "type": "string", "description": "Pod infra container image for Windows" }, "aci_cni_deploy_container": { "type": "string", "description": "Cni deployer container image for Cisco ACI" }, "aci_host_container": { "type": "string", "description": "host container image for Cisco ACI" }, "aci_opflex_container": { "type": "string", "description": "opflex agent container image for Cisco ACI" }, "aci_mcast_container": { "type": "string", "description": "mcast daemon container image for Cisco ACI" }, "aci_ovs_container": { "type": "string", "description": "OpenvSwitch container image for Cisco ACI" }, "aci_controller_container": { "type": "string", "description": "Controller container image for Cisco ACI" }, "aci_gbp_server_container": { "type": "string", "description": "GBP Server container image for Cisco ACI" }, "aci_opflex_server_container": { "type": "string", "description": "Opflex Server container image for Cisco ACI" } }, "additionalProperties": false, "type": "object" }, "RKETaint": { "properties": { "key": { "type": "string" }, "value": { "type": "string" }, "effect": { "type": "string" }, "timeAdded": { "type": "string", "format": "date-time" } }, "additionalProperties": false, "type": "object" }, "RancherKubernetesEngineConfig": { "properties": { "nodes": { "items": { "$ref": "#/definitions/RKEConfigNode" }, "type": "array", "description": "Kubernetes nodes" }, "services": { "$ref": "#/definitions/RKEConfigServices", "description": "Kubernetes components" }, "network": { "$ref": "#/definitions/NetworkConfig", "description": "Network configuration used in the kubernetes cluster (flannel, calico)" }, "authentication": { "$ref": "#/definitions/AuthnConfig", "description": "Authentication configuration used in the cluster (default: x509)" }, "addons": { "type": "string", "description": "YAML manifest for user provided addons to be deployed on the cluster" }, "addons_include": { "items": { "type": "string" }, "type": "array", "description": "List of urls or paths for addons" }, "system_images": { "$ref": "#/definitions/RKESystemImages", "description": "List of images used internally for proxy, cert download and kubedns" }, "ssh_key_path": { "type": "string", "description": "SSH Private Key Path" }, "ssh_cert_path": { "type": "string", "description": "SSH Certificate Path" }, "ssh_agent_auth": { "type": "boolean", "description": "SSH Agent Auth enable" }, "authorization": { "$ref": "#/definitions/AuthzConfig", "description": "Authorization mode configuration used in the cluster" }, "ignore_docker_version": { "type": "boolean", "description": "Enable/disable strict docker version checking" }, "enable_cri_dockerd": { "type": "boolean", "description": "Enable/disable using cri-dockerd" }, "kubernetes_version": { "type": "string", "description": "Kubernetes version to use (if kubernetes image is specified, image version takes precedence)" }, "private_registries": { "items": { "$ref": "#/definitions/PrivateRegistry" }, "type": "array", "description": "List of private registries and their credentials" }, "ingress": { "$ref": "#/definitions/IngressConfig", "description": "Ingress controller used in the cluster" }, "cluster_name": { "type": "string", "description": "Cluster Name used in the kube config" }, "cloud_provider": { "$ref": "#/definitions/CloudProvider", "description": "Cloud Provider options" }, "prefix_path": { "type": "string", "description": "kubernetes directory path" }, "win_prefix_path": { "type": "string", "description": "kubernetes directory path for windows" }, "addon_job_timeout": { "type": "integer", "description": "Timeout in seconds for status check on addon deployment jobs" }, "bastion_host": { "$ref": "#/definitions/BastionHost", "description": "Bastion/Jump Host configuration" }, "monitoring": { "$ref": "#/definitions/MonitoringConfig", "description": "Monitoring Config" }, "restore": { "$ref": "#/definitions/RestoreConfig", "description": "RestoreCluster flag" }, "rotate_certificates": { "$ref": "#/definitions/RotateCertificates", "description": "Rotating Certificates Option" }, "rotate_encryption_key": { "type": "boolean", "description": "Rotate Encryption Key Option" }, "dns": { "$ref": "#/definitions/DNSConfig", "description": "DNS Config" }, "upgrade_strategy": { "$ref": "#/definitions/NodeUpgradeStrategy", "description": "Upgrade Strategy for the cluster" } }, "additionalProperties": false, "type": "object" }, "ResourceConfiguration": { "required": [ "Resources", "Providers" ], "properties": { "Resources": { "items": { "type": "string" }, "type": "array" }, "Providers": { "items": { "$ref": "#/definitions/ProviderConfiguration" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "ResourceFieldSelector": { "required": [ "ContainerName", "Resource", "Divisor" ], "properties": { "ContainerName": { "type": "string" }, "Resource": { "type": "string" }, "Divisor": { "$ref": "#/definitions/Quantity" } }, "additionalProperties": false, "type": "object" }, "ResourceRequirements": { "required": [ "Limits", "Requests" ], "properties": { "Limits": { "patternProperties": { ".*": { "$ref": "#/definitions/Quantity" } }, "type": "object" }, "Requests": { "patternProperties": { ".*": { "$ref": "#/definitions/Quantity" } }, "type": "object" } }, "additionalProperties": false, "type": "object" }, "RestoreConfig": { "properties": { "restore": { "type": "boolean" }, "snapshot_name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "RollingUpdateDaemonSet": { "required": [ "MaxUnavailable", "MaxSurge" ], "properties": { "MaxUnavailable": { "$ref": "#/definitions/IntOrString" }, "MaxSurge": { "$ref": "#/definitions/IntOrString" } }, "additionalProperties": false, "type": "object" }, "RollingUpdateDeployment": { "required": [ "MaxUnavailable", "MaxSurge" ], "properties": { "MaxUnavailable": { "$ref": "#/definitions/IntOrString" }, "MaxSurge": { "$ref": "#/definitions/IntOrString" } }, "additionalProperties": false, "type": "object" }, "RotateCertificates": { "required": [ "CACertificates", "Services" ], "properties": { "CACertificates": { "type": "boolean", "description": "Rotate CA Certificates" }, "Services": { "items": { "type": "string" }, "type": "array", "description": "Services to rotate their certs" } }, "additionalProperties": false, "type": "object" }, "RouteOpenstackOpts": { "required": [ "router-id" ], "properties": { "router-id": { "type": "string", "description": "required" } }, "additionalProperties": false, "type": "object" }, "S3BackupConfig": { "required": [ "access_key", "secret_key", "bucket_name", "region", "endpoint", "custom_ca", "folder" ], "properties": { "access_key": { "type": "string" }, "secret_key": { "type": "string" }, "bucket_name": { "type": "string" }, "region": { "type": "string" }, "endpoint": { "type": "string" }, "custom_ca": { "type": "string" }, "folder": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ScaleIOVolumeSource": { "required": [ "Gateway", "System", "SecretRef", "SSLEnabled", "ProtectionDomain", "StoragePool", "StorageMode", "VolumeName", "FSType", "ReadOnly" ], "properties": { "Gateway": { "type": "string" }, "System": { "type": "string" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" }, "SSLEnabled": { "type": "boolean" }, "ProtectionDomain": { "type": "string" }, "StoragePool": { "type": "string" }, "StorageMode": { "type": "string" }, "VolumeName": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "SchedulerService": { "properties": { "image": { "type": "string" }, "extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "extra_binds": { "items": { "type": "string" }, "type": "array" }, "extra_env": { "items": { "type": "string" }, "type": "array" }, "win_extra_args": { "patternProperties": { ".*": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "type": "object" }, "win_extra_binds": { "items": { "type": "string" }, "type": "array" }, "win_extra_env": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "SecretKeySelector": { "required": [ "Name", "Key", "Optional" ], "properties": { "Name": { "type": "string" }, "Key": { "type": "string" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "SecretProjection": { "required": [ "Name", "Items", "Optional" ], "properties": { "Name": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/KeyToPath" }, "type": "array" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "SecretVolumeSource": { "required": [ "SecretName", "Items", "DefaultMode", "Optional" ], "properties": { "SecretName": { "type": "string" }, "Items": { "items": { "$ref": "#/definitions/KeyToPath" }, "type": "array" }, "DefaultMode": { "type": "integer" }, "Optional": { "type": "boolean" } }, "additionalProperties": false, "type": "object" }, "SecretboxConfiguration": { "required": [ "Keys" ], "properties": { "Keys": { "items": { "$ref": "#/definitions/Key" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "SecretsEncryptionConfig": { "required": [ "custom_config" ], "properties": { "enabled": { "type": "boolean", "description": "Enable/disable secrets encryption provider config" }, "custom_config": { "$ref": "#/definitions/EncryptionConfiguration", "description": "Custom Encryption Provider configuration object" } }, "additionalProperties": false, "type": "object" }, "ServiceAccountTokenProjection": { "required": [ "Audience", "ExpirationSeconds", "Path" ], "properties": { "Audience": { "type": "string" }, "ExpirationSeconds": { "type": "integer" }, "Path": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "ServiceOverride": { "required": [ "service", "region", "url", "signing-region", "signing-method", "signing-name" ], "properties": { "service": { "type": "string" }, "region": { "type": "string" }, "url": { "type": "string" }, "signing-region": { "type": "string" }, "signing-method": { "type": "string" }, "signing-name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "StorageOSVolumeSource": { "required": [ "VolumeName", "VolumeNamespace", "FSType", "ReadOnly", "SecretRef" ], "properties": { "VolumeName": { "type": "string" }, "VolumeNamespace": { "type": "string" }, "FSType": { "type": "string" }, "ReadOnly": { "type": "boolean" }, "SecretRef": { "$ref": "#/definitions/LocalObjectReference" } }, "additionalProperties": false, "type": "object" }, "Time": { "properties": {}, "additionalProperties": false, "type": "object" }, "Toleration": { "required": [ "Key", "Operator", "Value", "Effect", "TolerationSeconds" ], "properties": { "Key": { "type": "string" }, "Operator": { "type": "string" }, "Value": { "type": "string" }, "Effect": { "type": "string" }, "TolerationSeconds": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "TypedLocalObjectReference": { "required": [ "APIGroup", "Kind", "Name" ], "properties": { "APIGroup": { "type": "string" }, "Kind": { "type": "string" }, "Name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "Unknown": { "required": [ "Raw", "ContentEncoding", "ContentType" ], "properties": { "apiVersion": { "type": "string" }, "kind": { "type": "string" }, "Raw": { "type": "string" }, "ContentEncoding": { "type": "string" }, "ContentType": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "VirtualCenterConfig": { "properties": { "user": { "type": "string" }, "password": { "type": "string" }, "port": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "datacenters": { "type": "string" }, "soap-roundtrip-count": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "VolumeProjection": { "required": [ "Secret", "DownwardAPI", "ConfigMap", "ServiceAccountToken" ], "properties": { "Secret": { "$ref": "#/definitions/SecretProjection" }, "DownwardAPI": { "$ref": "#/definitions/DownwardAPIProjection" }, "ConfigMap": { "$ref": "#/definitions/ConfigMapProjection" }, "ServiceAccountToken": { "$ref": "#/definitions/ServiceAccountTokenProjection" } }, "additionalProperties": false, "type": "object" }, "VsphereCloudProvider": { "properties": { "global": { "$ref": "#/definitions/GlobalVsphereOpts" }, "virtual_center": { "patternProperties": { ".*": { "$ref": "#/definitions/VirtualCenterConfig" } }, "type": "object" }, "network": { "$ref": "#/definitions/NetworkVshpereOpts" }, "disk": { "$ref": "#/definitions/DiskVsphereOpts" }, "workspace": { "$ref": "#/definitions/WorkspaceVsphereOpts" } }, "additionalProperties": false, "type": "object" }, "VsphereVirtualDiskVolumeSource": { "required": [ "VolumePath", "FSType", "StoragePolicyName", "StoragePolicyID" ], "properties": { "VolumePath": { "type": "string" }, "FSType": { "type": "string" }, "StoragePolicyName": { "type": "string" }, "StoragePolicyID": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "WeaveNetworkProvider": { "properties": { "password": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "WorkspaceVsphereOpts": { "properties": { "server": { "type": "string" }, "datacenter": { "type": "string" }, "folder": { "type": "string" }, "default-datastore": { "type": "string" }, "resourcepool-path": { "type": "string" } }, "additionalProperties": false, "type": "object" } } }
cluster
{ "$ref": "#/definitions/StepModel", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "AptGetDepModel": { "properties": { "name": { "type": "string" }, "bin_name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "BashStepToolkitModel": { "properties": { "entry_file": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "BrewDepModel": { "properties": { "name": { "type": "string" }, "bin_name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "CheckOnlyDepModel": { "properties": { "name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "DependencyModel": { "properties": { "manager": { "type": "string" }, "name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "DepsModel": { "properties": { "brew": { "items": { "$ref": "#/definitions/BrewDepModel" }, "type": "array" }, "apt_get": { "items": { "$ref": "#/definitions/AptGetDepModel" }, "type": "array" }, "check_only": { "items": { "$ref": "#/definitions/CheckOnlyDepModel" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "GoStepToolkitModel": { "required": ["package_name"], "properties": { "package_name": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "StepModel": { "properties": { "title": { "type": "string" }, "summary": { "type": "string" }, "description": { "type": "string" }, "website": { "type": "string" }, "source_code_url": { "type": "string" }, "support_url": { "type": "string" }, "published_at": { "type": "string", "format": "date-time" }, "source": { "$ref": "#/definitions/StepSourceModel" }, "asset_urls": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "host_os_tags": { "items": { "type": "string" }, "type": "array" }, "project_type_tags": { "items": { "type": "string" }, "type": "array" }, "type_tags": { "items": { "type": "string" }, "type": "array" }, "dependencies": { "items": { "$ref": "#/definitions/DependencyModel" }, "type": "array" }, "toolkit": { "$ref": "#/definitions/StepToolkitModel" }, "deps": { "$ref": "#/definitions/DepsModel" }, "is_requires_admin_user": { "type": "boolean" }, "is_always_run": { "type": "boolean" }, "is_skippable": { "type": "boolean" }, "run_if": { "type": "string" }, "timeout": { "type": "integer" }, "meta": { "patternProperties": { ".*": { "additionalProperties": true } }, "type": "object" }, "inputs": { "items": { "patternProperties": { ".*": { "additionalProperties": true } }, "type": "object" }, "type": "array" }, "outputs": { "items": { "patternProperties": { ".*": { "additionalProperties": true } }, "type": "object" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "StepSourceModel": { "properties": { "git": { "type": "string" }, "commit": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "StepToolkitModel": { "properties": { "bash": { "$ref": "#/definitions/BashStepToolkitModel" }, "go": { "$ref": "#/definitions/GoStepToolkitModel" } }, "additionalProperties": false, "type": "object" } }, "id": "https://json.schemastore.org/bitrise-step.json" }
bitrise-step
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "integrationId": { "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": 1024 }, "integrationType": { "type": "string", "enum": [ "googlePubSub", "meridian", "mqtt", "particle" ] }, "enabled": { "type": "boolean" }, "topics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "googlePubSubConfig": { "type": "object", "properties": { "projectId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "keyJson": { "type": "string", "maxLength": 32767, "minLength": 4 } }, "additionalProperties": false, "required": [ "projectId", "keyJson" ] }, "mqttConfig": { "type": "object", "properties": { "clientId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "username": { "type": "string", "minLength": 1, "maxLength": 1024 }, "password": { "type": "string", "minLength": 1, "maxLength": 1024 }, "clean": { "type": "boolean" }, "port": { "type": "number", "minimum": 1, "maximum": 65535 }, "protocol": { "type": "string", "enum": [ "mqtt", "mqtts", "ws", "wss" ] }, "host": { "type": "string", "minLength": 1, "maxLength": 1024 }, "privateKey": { "type": "string", "maxLength": 32767, "minLength": 4 }, "certificate": { "type": "string", "maxLength": 32767, "minLength": 4 }, "caCertificate": { "type": "string", "maxLength": 32767, "minLength": 4 } }, "additionalProperties": false, "required": [ "port", "protocol", "host" ] }, "particleConfig": { "type": "object", "properties": { "accessToken": { "type": "string", "minLength": 1, "maxLength": 1024 }, "productSlugOrId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "orgSlugOrId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "deviceNameOrId": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "accessToken" ] }, "meridianConfig": { "type": "object", "properties": { "authenticationToken": { "type": "string", "minLength": 1, "maxLength": 1024 }, "locationId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "assetUpdates": { "type": "boolean" }, "zoneUpdates": { "type": "boolean" } }, "additionalProperties": false, "required": [ "authenticationToken", "locationId" ] }, "status": { "lastKeepAlive": { "type": [ "number" ] }, "nextAttempt": { "type": [ "number" ] }, "connectInfo": { "type": "object", "properties": { "ts": { "type": [ "number", "null" ] } } }, "disconnectInfo": { "type": "object", "properties": { "ts": { "type": [ "number", "null" ] }, "error": { "type": "string" } } } } } }
o9919
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The length of a side (for square)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g., circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_588b5021
{ "properties": { "entrypoint": { "additionalProperties": false, "description": "Traefik entrypoints", "properties": { "api-address": { "description": "Leave empty for listening on all interfaces.", "type": "string" }, "api-enable": { "default": true, "description": "Enable API entrypoint.", "type": "boolean" }, "api-port": { "default": 8080, "description": "API (admin) port, if not defined $PORT1 will be used", "type": "integer" }, "enable-dashboard": { "default": true, "description": "Enable Admin Dashboard.", "type": "boolean" }, "http-address": { "default": "", "description": "Leave empty for listening on all interfaces.", "type": "string" }, "http-compression": { "default": true, "description": "Enable compression.", "type": "boolean" }, "http-port": { "default": 80, "description": "HTTP port.", "minimum": 1, "type": "number" }, "https-address": { "default": "", "description": "Leave empty for listening on all interfaces.", "type": "string" }, "https-compression": { "default": true, "description": "Enable compression.", "type": "boolean" }, "https-enable": { "default": true, "description": "Enable HTTPS entrypoint.", "type": "boolean" }, "https-port": { "default": 443, "description": "HTTPS port.", "minimum": 1, "type": "number" } }, "type": "object" }, "kubernetess": { "additionalProperties": false, "description": "Allows access to Kubernetess applications", "properties": { "ca": { "description": "Path to the certificate authority file", "type": "string" }, "disable-pass-host-headers": { "default": false, "description": "Disable PassHost Headers", "type": "boolean" }, "enable": { "default": false, "description": "Enable Kubernetess provider.", "type": "boolean" }, "enable-pass-tls-cert": { "default": false, "description": "Disable PassHost Headers", "type": "boolean" }, "endpoint": { "description": "Kubernetes server endpoint", "type": "string" }, "filename": { "description": "Override default configuration template", "type": "string" }, "ingress-class": { "description": "Value of `kubernetes.io/ingress.class` annotation that identifies Ingress objects to be processed", "type": "string" }, "namespaces": { "description": "Comma-separated namespaces to watch", "type": "string" }, "token": { "description": "Bearer token used for the Kubernetes client configuration", "type": "string" } }, "type": "object" }, "logging": { "additionalProperties": false, "description": "Logging configuration", "properties": { "access-logs": { "default": false, "description": "Enable Access Logs", "type": "boolean" }, "access-logs-format": { "description": "Default is text", "type": "string" }, "access-logs-path": { "type": "string" } }, "type": "object" }, "marathon": { "additionalProperties": false, "description": "Marathon configuration", "properties": { "dialer-timeout": { "default": "60s", "description": "Amount of time to allow the Marathon provider to wait to open a TCP connection to a Marathon master.", "type": "string" }, "domain": { "default": "marathon.localhost", "description": "Default domain. Can be overridden by setting the 'traefik.domain' label on an application.", "type": "string" }, "enable": { "default": true, "description": "Enable Marathon provider.", "type": "boolean" }, "endpoint": { "default": "http://marathon.mesos:8080", "description": "Marathon endpoint, multiple instances separate by comma.", "type": "string" }, "expose": { "default": false, "description": "Expose Marathon apps by default in Traefik.", "type": "boolean" }, "force-task-hostname": { "default": false, "description": "By default, a task's IP address (as returned by the Marathon API) is used as backend server if an IP-per-task configuration can be found; otherwise, the name of the host running the task is used. The latter behavior can be enforced by enabling this switch.", "type": "boolean" }, "groups-as-subdomains": { "default": false, "description": "Convert Marathon groups to subdomains.", "type": "boolean" }, "keep-alive": { "default": "10s", "description": "Set the TCP Keep Alive interval for the Marathon HTTP Client.", "type": "string" }, "marathonlb-compatibility": { "default": false, "description": "Enable compatibility with marathon-lb labels.", "type": "boolean" }, "respect-readiness-checks": { "default": true, "description": "During deployment Traefik will respect readiness checks if defined in Marathon.", "type": "boolean" }, "watch": { "default": true, "description": "Watch changes in Marathon.", "type": "boolean" } }, "type": "object" }, "mesos": { "additionalProperties": false, "description": "Allows directly exposing Mesos applications", "properties": { "domain": { "default": "mesos.localhost", "description": "Default domain. Can be overridden by setting the 'traefik.domain' label on an application.", "type": "string" }, "enable": { "default": false, "description": "Enable Mesos provider.", "type": "boolean" }, "endpoint": { "default": "http://leader.mesos:5050", "description": "Mesos endpoint, multiple instances separate by comma.", "type": "string" }, "expose": { "default": false, "description": "Expose Mesos apps by default in Traefik.", "type": "boolean" }, "groups-as-subdomains": { "default": false, "description": "Convert Marathon groups to subdomains.", "type": "boolean" }, "ip-sources": { "default": "host", "description": "IP sources (e.g. host, docker, mesos, netinfo).", "type": "string" }, "refresh": { "default": 30, "description": "Polling interval", "minimum": 1, "type": "integer" }, "timeout": { "default": 30, "description": "Mesos HTTP API timeout", "minimum": 1, "type": "integer" }, "watch": { "default": true, "description": "Watch changes in Marathon.", "type": "boolean" }, "zk-timeout": { "default": 30, "description": "ZooKeeper timeout", "minimum": 1, "type": "integer" } }, "type": "object" }, "metrics": { "additionalProperties": false, "description": "Metrics configuration", "properties": { "datadog-address": { "default": "", "description": "DataDog endpoint", "type": "string" }, "datadog-pushinterval": { "default": "10s", "type": "string" }, "influxdb-address": { "default": "", "description": "InfluxDB endpoint", "type": "string" }, "influxdb-pushinterval": { "default": "10s", "type": "string" }, "prometheus-buckets": { "default": "0.1,0.3,1.2,5.0", "type": "string" }, "prometheus-entrypoint": { "default": "", "description": "Traefik entrypoint for Prometheus (e.g. api)", "type": "string" }, "recent-errors": { "default": 10, "description": "Number of logged recent errors", "minimum": 0, "type": "integer" }, "statsd-address": { "default": "", "description": "StatsD endpoint", "type": "string" }, "statsd-pushinterval": { "default": "10s", "type": "string" } }, "type": "object" }, "service": { "properties": { "cpus": { "default": 1, "description": "CPU shares to allocate to each Traefik instance.", "minimum": 0.5, "type": "number" }, "disk": { "default": 100, "description": "Disk space (in MB) to allocate for each instance.", "minimum": 20, "type": "integer" }, "instances": { "default": 2, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "maximumOverCapacity": { "default": 0.2, "description": "Maximum over capacity.", "minimum": 0, "type": "number" }, "mem": { "default": 128.0, "description": "Memory (MB) to allocate to each Traefik task.", "minimum": 64.0, "type": "number" }, "minimumHealthCapacity": { "default": 0.5, "description": "Minimum health capacity.", "minimum": 0, "type": "number" }, "name": { "default": "traefik", "description": "Name of the Traefik instance", "type": "string" }, "role": { "default": "slave_public", "description": "Deploy Traefik only on nodes with this role.", "type": "string" }, "user": { "default": "root", "description": "The user that runs the Traefik service and owns the Mesos sandbox.", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" }, "traefik": { "additionalProperties": false, "description": "Traefik configuration", "properties": { "config-file": { "description": "Path to additional Traefik config file in TOML format.", "type": "string" }, "grace-timeout": { "default": "30s", "description": "Duration to give active requests a chance to finish before Traefik stops", "type": "string" }, "healthcheck-interval": { "default": "30s", "description": "Default health check interval", "type": "string" }, "idle-timeout": { "default": "180s", "description": "The maximum duration an idle (keep-alive) connection will remain idle before closing itself.", "type": "string" }, "log-level": { "default": "INFO", "description": "Traefik log level.", "type": "string" }, "read-timeout": { "default": "0s", "description": "The maximum duration for reading the entire request, including the body", "type": "string" }, "retry": { "description": "Number of attempts to reach backend service", "type": "string" }, "secret-name": { "default": "", "description": "Name of the Secret Store credentials to use for DC/OS service authentication. This should be left empty unless service authentication is needed.", "type": "string" }, "watch-config-file": { "default": true, "description": "Watch config file for changes.", "type": "boolean" }, "write-timeout": { "default": "0s", "description": "The maximum duration before timing out writes of the response", "type": "string" } }, "type": "object" } }, "type": "object" }
o60312
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "O3D3xx clipping cuboid configuration", "type": "object", "properties": { "Xmin": { "type": "number", "default": 0 }, "Xmax": { "type": "number", "default": 0 }, "Ymin": { "type": "number", "default": 0 }, "Ymax": { "type": "number", "default": 0 }, "Zmin": { "type": "number", "default": 0 }, "Zmax": { "type": "number", "default": 0 } }, "required": [ "XMin", "XMax", "YMin", "YMax", "ZMin", "ZMax" ] }
o57603
{ "properties": { "attendees": { "description": "The attendees of the event", "items": { "type": "string" }, "type": "array" }, "end_date": { "description": "The end date and time of the event", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "start_date": { "description": "The start date and time of the event", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_date", "end_date" ], "type": "object" }
create_calendar_event_538e438c
{ "$schema": "http://json-schema.org/draft-04/schema#", "$schema-location": "Entity-Schema.json", "name": "Service-Schema", "version": "1", "author": "denis", "description": "Represent the deployed service from a Charm", "associated-tool": "Juju-CLI", "type": "object", "properties": { "$schema-location": { "enum": [ "Service-Schema.json" ] }, "id": { "type": "string" }, "exposed": { "type": "boolean", "default-value": "false", "description": "whether the service is exposed to outside world or not" } }, "required": ["id","exposed"] }
o35778
{ "$schema": "http://json-schema.org/draft-04/schema", "_format": "date-time", "description": "When the content was last updated (RFC3339-formatted).", "title": "Last Updated Date", "type": "string" }
wp_69_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "items": { "$ref": "#/definitions/file_attachment_asset" }, "type": "array" }, "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "emphasised_organisations": { "$ref": "#/definitions/emphasised_organisations" }, "first_public_at": { "$ref": "#/definitions/first_public_at" }, "government": { "$ref": "#/definitions/government" }, "image": { "$ref": "#/definitions/image" }, "political": { "$ref": "#/definitions/political" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "body" ], "type": "object" }, "emphasised_organisations": { "description": "The content ids of the organisations that should be displayed first in the list of organisations related to the item, these content ids must be present in the item organisation links hash.", "items": { "$ref": "#/definitions/guid" }, "type": "array" }, "file_attachment_asset": { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, "first_public_at": { "_format": "date-time", "description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.", "type": "string" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "government": { "additionalProperties": false, "description": "DEPRECATED: Content should be associated with a government through a link", "properties": { "current": { "description": "Is the government that published this document still the current government.", "type": "boolean" }, "slug": { "description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.", "type": "string" }, "title": { "description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.", "type": "string" } }, "required": [ "title", "slug", "current" ], "type": "object" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "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" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "political": { "description": "If the content is considered political in nature, reflecting views of the government it was published under.", "type": "boolean" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "tags": { "additionalProperties": false, "description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).", "properties": { "additional_topics": { "items": { "type": "string" }, "type": "array" }, "browse_pages": { "items": { "type": "string" }, "type": "array" }, "policies": { "items": { "type": "string" }, "type": "array" }, "primary_topic": { "items": { "type": "string" }, "type": "array" }, "topics": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "press_release", "news_story", "government_response", "world_news_story" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The government associated with this document", "maxItems": 1 }, "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" }, "people": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "People that are associated with this document, typically the person part of a role association" }, "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_policies": { "$ref": "#/definitions/frontend_links_with_base_path" }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "roles": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Government roles that are associated with this document, typically the role part of a role association" }, "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" }, "topical_events": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The topical events this content item relates to." }, "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." }, "world_locations": { "$ref": "#/definitions/frontend_links", "description": "The world locations this content item is about." }, "worldwide_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The worldwide organisations associated with this content item." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/guid_list", "description": "The government associated with this document", "maxItems": 1 }, "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 }, "people": { "$ref": "#/definitions/guid_list", "description": "People that are associated with this document, typically the person part of a role association" }, "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 }, "related_policies": { "$ref": "#/definitions/guid_list" }, "roles": { "$ref": "#/definitions/guid_list", "description": "Government roles that are associated with this document, typically the role part of a role association" }, "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" }, "topical_events": { "$ref": "#/definitions/guid_list", "description": "The topical events this content item relates to." }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." }, "world_locations": { "$ref": "#/definitions/guid_list", "description": "The world locations this content item is about." }, "worldwide_organisations": { "$ref": "#/definitions/guid_list", "description": "The worldwide organisations associated with this content item." } }, "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": [ "news_article" ], "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" }
o21304
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { "description": "API version of the referent", "type": "string" }, "kind": { "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"", "type": "string" }, "name": { "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricSource": { "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.", "properties": { "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "metricSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "metricSelector is used to identify a specific time series within a given metric." }, "targetAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue." }, "targetValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue." } }, "required": [ "metricName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus": { "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", "properties": { "currentAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of metric averaged over autoscaled pods." }, "currentValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentValue is the current value of the metric (as a quantity)" }, "metricName": { "description": "metricName is the name of a metric used for autoscaling in metric system.", "type": "string" }, "metricSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "metricSelector is used to identify a specific time series within a given metric." } }, "required": [ "metricName", "currentValue" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition": { "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastTransitionTime is the last time the condition transitioned from one status to another" }, "message": { "description": "message is a human-readable explanation containing details about the transition", "type": "string" }, "reason": { "description": "reason is the reason for the condition's last transition.", "type": "string" }, "status": { "description": "status is the status of the condition (True, False, Unknown)", "type": "string" }, "type": { "description": "type describes the current condition", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec": { "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", "properties": { "maxReplicas": { "_format": "int32", "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", "type": "integer" }, "metrics": { "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricSpec" }, "type": "array" }, "minReplicas": { "_format": "int32", "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count." } }, "required": [ "scaleTargetRef", "maxReplicas" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus": { "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", "properties": { "conditions": { "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition" }, "type": "array" }, "currentMetrics": { "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricStatus" }, "type": "array" }, "currentReplicas": { "_format": "int32", "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", "type": "integer" }, "desiredReplicas": { "_format": "int32", "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed." }, "observedGeneration": { "_format": "int64", "description": "observedGeneration is the most recent generation observed by this autoscaler.", "type": "integer" } }, "required": [ "currentReplicas", "desiredReplicas", "conditions" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricSpec": { "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", "properties": { "external": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricSource", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_MetricStatus": { "description": "MetricStatus describes the last-read state of a single metric.", "properties": { "external": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricStatus", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricSource": { "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." }, "target": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "target is the described Kubernetes object." }, "targetValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetValue is the target value of the metric (as a quantity)." } }, "required": [ "target", "metricName", "targetValue" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus": { "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "currentValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentValue is the current value of the metric (as a quantity)." }, "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." }, "target": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "target is the described Kubernetes object." } }, "required": [ "target", "metricName", "currentValue" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricSource": { "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", "properties": { "metricName": { "description": "metricName is the name of the metric in question", "type": "string" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." }, "targetAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)" } }, "required": [ "metricName", "targetAverageValue" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_PodsMetricStatus": { "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "currentAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "metricName": { "description": "metricName is the name of the metric in question", "type": "string" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." } }, "required": [ "metricName", "currentAverageValue" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricSource": { "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "name": { "description": "name is the name of the resource in question.", "type": "string" }, "targetAverageUtilization": { "_format": "int32", "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", "type": "integer" }, "targetAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus": { "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "currentAverageUtilization": { "_format": "int32", "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", "type": "integer" }, "currentAverageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification." }, "name": { "description": "name is the name of the resource in question.", "type": "string" } }, "required": [ "name", "currentAverageValue" ], "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" } }, "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", "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": [ "autoscaling/v2beta1" ], "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "HorizontalPodAutoscaler" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec", "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus", "description": "status is the current information about the autoscaler." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", "version": "v2beta1" } ] }
kb_390_Normalized
{ "definitions": { "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_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets", "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" ] }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.", "type": [ "boolean", "null" ] }, "imagePullSecrets": { "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. 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", "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": [ "ServiceAccount" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "secrets": { "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ServiceAccount", "version": "v1" } ] }
kb_970_Normalized
{ "title": "Docker Encapsulated Environment", "required": [ "environment_type", "image" ], "properties": { "envscript": { "default": "", "type": "string", "title": "Env Script" }, "par_mounts": { "default": [], "items": { "type": "object", "properties": { "mountpath": { "type": "string" }, "jqscript": { "type": "string" } } }, "type": "array", "title": "Parameter Mounts" }, "image": { "type": "string", "title": "Image" }, "imagetag": { "default": "latest", "type": "string", "title": "Tag" }, "environment_type": { "default": "docker-encapsulated", "enum": [ "docker-encapsulated" ], "type": "string" }, "env": { "default": {}, "type": "object", "properties": {}, "title": "Env Vars" }, "resources": { "default": [], "type": "array", "title": "Resources" } }, "additionalProperties": false, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "id": "docker_enc_environment" }
o66158
{ "definitions": { "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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "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", "null" ] }, "type": [ "array", "null" ] }, "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", "null" ] }, "type": [ "array", "null" ] }, "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", "null" ], "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ], "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "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", "null" ] }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": [ "boolean", "null" ] }, "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", "null" ], "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", "null" ], "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", "null" ] } }, "required": [ "name" ], "type": "object" }
kb_119_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "trayOptionsItem": { "title": "Tray Option", "description": "An object that represents a single tray menu item", "type": "object", "properties": { "label": { "title": "Label", "description": "Text of menu item", "type": "string" }, "action": { "title": "Action", "description": "Action to perform when user clicks this menu item. 'openfilesystem', 'openbrowser', or 'stopserver'", "type": "string" }, "url": { "title": "URL", "description": "Url to open for 'openbrowser' action", "type": "string" }, "disabled": { "title": "Disabled", "description": "Turn menu item grey and nothing happens when clicking on it", "type": "boolean", "default": false }, "image": { "title": "Image", "description": "Path to PNG image to display on menu item next to the label", "type": "string", "default": "" }, "hotkey": { "title": "Hotkey", "description": "Keyboard shortcut to choose this menu item", "type": "string", "default": "" }, "path": { "title": "Path", "description": "Filesystem path to open for 'openfilesystem' action", "type": "string", "default": "" }, "items": { "title": "Items", "description": "Nested menu items", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/trayOptionsItem" }, "default": [] } } } }, "title": "CommandBox Server", "description": "Configuration file for a CommandBox server", "type": "object", "properties": { "name": { "title": "Name", "description": "The name of the server", "type": "string", "default": "" }, "openBrowser": { "title": "Open Browser", "description": "Controls whether browser opens by default when starting server", "type": "boolean", "default": true }, "openBrowserURL": { "title": "Open Browser URL", "description": "Override the URL to open when starting the server", "type": "string", "default": "" }, "startTimeout": { "title": "Server start timeout", "description": "The length of time in seconds to wait for the server to start", "type": "number", "default": 240 }, "stopsocket": { "title": "Stop Socket", "description": "The port the server listens on to receive a stop command", "type": "number", "default": 0 }, "debug": { "title": "Debug", "description": "Enable debug level logging for server", "type": "boolean", "default": false }, "trace": { "title": "Trace", "description": "Enable trace level logging for server", "type": "boolean", "default": false }, "console": { "title": "Console", "description": "Start the server in console mode instead of in the background", "type": "boolean", "default": false }, "trayEnable": { "title": "Tray Enable", "description": "Control whether the server has an associated icon in the system tray", "type": "boolean", "default": true }, "trayicon": { "title": "Tray Icon", "description": "Path to the server's tray icon", "type": "string", "default": "" }, "trayOptions": { "title": "Tray Options", "description": "An array of custom menu items to be added to the server's tray menu", "type": "array", "minItems": 0, "items": { "$ref": "#/definitions/trayOptionsItem" }, "default": [] }, "jvm": { "title": "JVM", "description": "JVM Options", "type": "object", "properties": { "heapSize": { "title": "Max Heap Size", "description": "The max heap size of the server", "type": [ "number", "string" ], "default": "" }, "minHeapSize": { "title": "Min Heap Size", "description": "The starting heap size for the server", "type": [ "number", "string" ], "default": "" }, "args": { "title": "JVM Arguments", "description": "Ad-hoc JVM args for the server such as -X:name", "type": "string", "default": "" }, "javaHome": { "title": "Java Home Path", "description": "Path to custom JRE. Default is the one that the CommandBox CLI is using", "type": "string", "default": "" }, "javaVersion": { "title": "Java Version", "description": "A Java installation ID. In its entirety, it has the form <version>_<type>_<arch>_<os>_<jvm-implementation>_<release>", "type": "string", "default": "" } } }, "web": { "title": "Web", "description": "Web Server Options", "type": "object", "properties": { "host": { "title": "Host", "description": "The default host name of the server", "type": "string", "default": "127.0.0.1" }, "webroot": { "title": "Webroot", "description": "Webroot directory", "type": "string", "default": "" }, "directoryBrowsing": { "title": "Directory Browsing", "description": "Enables file listing for directories with no welcome file", "type": "boolean", "default": false }, "accessLogEnable": { "title": "Access Log Enable", "description": "Enable web server access log", "type": "boolean", "default": true }, "GZIPEnable": { "title": "GZIP Enable", "description": "Enable GZip compression in HTTP responses", "type": "boolean", "default": true }, "welcomeFiles": { "title": "Welcome Files", "description": "A comma-delimited list of files that you would like CommandBox to look for when a user hits a directory", "type": "string", "default": "" }, "aliases": { "title": "Aliases", "description": "Web aliases for the web server, similar to virtual directories", "type": "object", "patternProperties": { "^(/[^/]+)+$": { "title": "Alias", "description": "The key is the web-accessible virtual path and the value is the relative or absolute path to the folder the alias points to", "type": "string" } }, "additionalProperties": false, "default": {} }, "errorPages": { "title": "Error Pages", "description": "The error pages that CommandBox servers return. You can have a setting for each status code including a default error page to be used if no other setting applies", "type": "object", "properties": { "default": { "title": "Default", "description": "Path to default error page", "type": "string", "default": "" } }, "patternProperties": { "^[1-5][0-9]{2}$": { "title": "Error Page", "description": "The key is the status code integer and the value is a relative (to the web root) path to be loaded for that status code", "type": "string" } }, "additionalProperties": false, "default": {} }, "HTTP": { "title": "HTTP Settings", "description": "Configure the HTTP listener on the server", "type": "object", "properties": { "enable": { "title": "Enable", "description": "Enable HTTP for this serer", "type": "boolean", "default": true }, "port": { "title": "Port", "description": "HTTP port to use", "type": "number", "default": 0 } } }, "SSL": { "title": "SSL", "description": "Configure the HTTPS listener on the server", "type": "object", "properties": { "enable": { "title": "Enable", "description": "Enable HTTPS for this server", "type": "boolean", "default": false }, "port": { "title": "Port", "description": "HTTPS port to use", "type": "number", "default": 1443 }, "certFile": { "title": "Cert File", "description": "Path to SSL cert file", "type": "string", "default": "" }, "keyFile": { "title": "Key File", "description": "Path to SSL key file", "type": "string", "default": "" }, "keyPass": { "title": "Key Pass", "description": "Password for SSL key file", "type": "string", "default": "" } } }, "AJP": { "title": "AJP", "description": "Configure the AJP listener on the server", "type": "object", "properties": { "enable": { "title": "Enable", "description": "Enable AJP for this server", "type": "boolean", "default": false }, "port": { "title": "Port", "description": "AJP port to use", "type": "number", "default": 8009 } } }, "rewrites": { "title": "Rewrites", "description": "Configure URL Rewrites", "type": "object", "properties": { "enable": { "title": "Enable", "description": "Enable URL Rewrites on this server", "type": "boolean", "default": false }, "logEnable": { "title": "Log Enable", "description": "Enable Rewrite log file", "type": "boolean", "default": false }, "config": { "title": "Config", "description": "Path to xml config file or .htaccess", "type": "string", "default": "" }, "statusPath": { "title": "Tuckey Status Path", "description": "URL path to visit Tuckey status page like '/tuckey-status'", "type": "string", "default": "/tuckey-status" }, "configReloadSeconds": { "title": "Config Reload Seconds", "description": "Number of seconds to check rewrite config file for changes", "type": "number" } } }, "basicAuth": { "title": "Configure basic authentication", "description": "", "type": "object", "properties": { "enable": { "title": "Enable", "description": "Enable basic auth for this server", "type": "boolean", "default": true }, "users": { "title": "Users", "description": "Users who can authenticate to basic auth", "type": "object", "additionalProperties": { "title": "User", "description": "The key is the user name and the value is the password.", "type": "string" }, "default": {} } } } } }, "app": { "title": "Application", "description": "Application Server Options", "type": "object", "properties": { "logDir": { "title": "Log Directory", "description": "The folder path where the servlet out, rewrite, and access log are written to", "type": "string", "default": "" }, "libDirs": { "title": "Jar lib Directories", "description": "A comma-delimited list of directories from which CommandBox will load JARs", "type": "string", "default": "" }, "webConfigDir": { "title": "Web Context Directory", "description": "Directory for Lucee/Railo web context", "type": "string", "default": "" }, "serverConfigDir": { "title": "Server Context Directory", "description": "Directory for Lucee/Railo server context", "type": "string", "default": "" }, "webXML": { "title": "Web XML", "description": "Path to web.xml file", "type": "string", "default": "" }, "WARPath": { "title": "WAR Path", "description": "Path to a local WAR archive or exploded WAR folder. Mutually exclusive with cfengine.", "type": "string", "default": "" }, "cfengine": { "title": "CFML Engine", "description": "An Endpoint ID that resolves to a CF engine such as 'adobe' or 'lucee'. Include version as 'adobe@2016'", "type": "string", "default": "" }, "restMappings": { "title": "REST Mappings", "description": "Comma delimited list of paths to map to the CF engine's REST servlet such as '/rest/*,/api/*'", "type": "string", "default": "" }, "serverHomeDirectory": { "title": "Server Home Directory", "description": "Path to folder where the server WAR will be expanded", "type": "string", "default": "" }, "sessionCookieSecure": { "title": "Session Cookie Secure", "description": "Enable secure session cookies", "type": "boolean", "default": false }, "sessionCookieHTTPOnly": { "title": "Session Cookie HttpOnly", "description": "Enable HTTP-only session cookies", "type": "boolean", "default": false } } }, "runwar": { "title": "Configure RunWar", "description": "These settings apply to the underlying Runwar library that starts servers", "type": "object", "properties": { "args": { "title": "Arguments", "description": "Ad-hoc options for the underlying Runwar library", "type": "string", "default": "" } } } } }
o12499
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "report": { "title": "Single report", "description": "Report configuration", "type": "object", "properties": { "id": { "title": "Report ID", "description": "Unique report identifier (UUID)", "type": "string", "minLength": 36, "maxLength": 36 }, "model": { "title": "Moden name", "description": "Model from which the report is fetching the data", "type": "string", "minLength": 1 }, "widget_type": { "title": "Widget type", "description": "Type of widget used to render report", "type": "string", "enum": [ "report", "grid" ] }, "name": { "title": "Report name", "description": "User-friendly report name", "type": "string", "minLength": 1 }, "query": { "title": "SQL query", "description": "SQL query which is used to fetch report data", "type": "string", "minLength": 1 }, "columns": { "title": "Report columns", "description": "Comma-separated list of fields from the query used in the report", "type": "string", "minLength": 1 }, "totals": { "title": "Report totals", "description": "Comma-separated index of columns with totals", "type": "string" }, "renderAs": { "title": "Report rendering choice", "description": "How the report should be rendered/presented", "type": "string", "enum": [ "barChart", "donutChart", "knobChart", "lineChart", "table", "polarArea", "pieChart", "horizontalBar" ] }, "y_axis": { "title": "Y-axis column", "description": "Report column to use for the Y-axis (bar/line)", "type": "string" }, "x_axis": { "title": "X-axis column", "description": "Report column to use for the X-axis (bar/line)", "type": "string" }, "label": { "title": "Report value label", "description": "A single label for value in basic reports (knob/pie)", "type": "string" }, "value": { "title": "Report value", "description": "A single value for basic reports (knob/pie)", "type": "string" }, "max": { "title": "Report value maximum", "description": "A maximum for a single value in basic reports (knob)", "type": "string" }, "options": { "title": "Other options", "description": "Additional options for the chats", "type": "object" }, "finder": { "title": "Cakephp ORM finder", "description": "Custom Finder Methods", "type": "object" } }, "additionalProperties": false, "required": [ "id", "model", "widget_type", "name", "columns" ] } }, "title": "Reports configuration", "description": "Reports configuration options", "type": "object", "properties": {}, "additionalProperties": { "allOf": [ { "$ref": "#/definitions/report" } ] } }
o13138
{ "properties": { "expenses": { "items": { "properties": { "amount": { "description": "The amount of the expense", "type": "number" }, "category": { "description": "The category of the expense", "type": "string" } }, "required": [ "category", "amount" ], "type": "object" }, "type": "array" }, "month": { "description": "The month for which the expenses are being tracked", "type": "integer" }, "year": { "description": "The year for which the expenses are being tracked", "type": "integer" } }, "required": [ "month", "year", "expenses" ], "type": "object" }
track_expenses_a6fa070d
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Task Schema", "type": "object", "additionalProperties": false, "required": [ "task", "status" ], "properties": { "_id": { "type": "string", "description": "Unique identifier for this archetype record", "maxLength": 50, "default": "" }, "draft": { "type": "boolean", "description": "Indicates this archetype record is a draft and is not published", "default": false }, "created": { "type": "string", "description": "Date and time this archetype record was created in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD", "format": "date-time", "default": "" }, "updated": { "type": "string", "description": "Date and time this archetype record was updated in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD", "format": "date-time", "default": "" }, "task": { "type": "string", "description": "The task", "maxLength": 4000, "default": "" }, "status": { "enum": [ "not completed", "completed", "on hold" ], "description": "Three options in string format to describe status of the task", "default": "not completed" }, "list": { "type": "string", "description": "The list this task belongs to", "maxLength": 300, "default": "" }, "parent_task": { "type": "string", "description": "ID of another task that this task belongs to", "maxLength": 100, "default": "" }, "category": { "type": "string", "description": "Category for the task", "maxLength": 50, "default": "" }, "due_date": { "type": "string", "description": "Date and time the task is due in ISO 8601 date standard e.g. YYYY-MM-DDThh:mm:ss.sTZD", "format": "date-time", "default": "" }, "priority_level": { "type": "integer", "description": "Priority level. 5 being the most important", "minimum": 1, "maximum": 5, "default": 1 }, "percentage_completed": { "type": "integer", "description": "Number out of 100 to represent how much of this task has been completed", "minimum": 0, "maximum": 100, "default": 0 }, "assignees": { "type": "array", "description": "People whom this task has been assigned to", "maxItems": 30, "_uniqueItems": true, "additionalItems": false, "default": [], "items": { "type": "string", "default": "" } } } }
o20531
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "moveItems": { "type": "object", "required": ["to", "names"], "properties": { "to": { "type": "string", "description": "The path to move the directory to" }, "names": { "type": "array", "items": { "type": "string", "description": "The directories to move" } } } }, "mergeJson": { "description": "Merge json file with jq command line tool pattern matching", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["jq"] }, "path": { "type": "string", "description": "Path to file to merge" }, "replace": { "type": "array", "description": "JQ pattern of property to replace", "items": { "type": "string" } }, "create": { "type": "array", "description": "JQ pattern of property to create if the property does not exist in target project file", "items": { "type": "string" } }, "replaceIf": { "type": "array", "description": "A set of properties to replace if the condition evaluates to truthy", "items": { "type": "object", "description": "Configuration for property to replace if condition evaluates to truthy", "required": ["condition", "pattern"], "properties": { "condition": { "type": "string", "description": "The condition to evaluate for truthiness. If truthy will replace property matched by pattern" }, "pattern": { "type": "string", "description": "JQ pattern of property to replace" } } } }, "set": { "type": "object", "description": "Set the value of these items to the value. So `'.license':MIT` would set the `license` property of the json file to 'MIT'", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "description": "A list of items to not create, copy, replace, or remove in target file", "items": { "type": "string" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } }, "mergeYaml": { "description": "Merge yaml file with yq command line tool pattern matching", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["yq"] }, "path": { "type": "string", "description": "Path to file to merge" }, "replace": { "type": "array", "description": "YQ pattern of property to replace", "items": { "type": "string" } }, "create": { "type": "array", "description": "YQ pattern of property to create if the property does not exist in target project file", "items": { "type": "string" } }, "replaceIf": { "type": "array", "description": "A set of properties to replace if the condition evaluates to truthy", "items": { "type": "object", "description": "Configuration for property to replace if condition evaluates to truthy", "required": ["condition", "pattern"], "properties": { "condition": { "type": "string", "description": "The condition to evaluate for truthiness. If truthy will replace property matched by pattern" }, "pattern": { "type": "string", "description": "YQ pattern of property to replace" } } } }, "set": { "type": "object", "description": "Set the value of these items to the value. So `'license':MIT` would set the `license` property of the yaml file to 'MIT'", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "description": "A list of items to not create, copy, replace, or remove in target file", "items": { "type": "string" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } }, "mergeGit": { "description": "Merge file using git merge (use with varied reliability)", "required": ["type", "path"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Merge type", "enum": ["git"] }, "path": { "type": "string", "description": "Path to file to merge" } } }, "mergeEnv": { "type": "object", "additionalProperties": false, "required": ["type", "path"], "properties": { "type": { "type": "string", "enum": ["env"] }, "path": { "type": "string" }, "set": { "type": "object", "additionalProperties": { "type": "string" } }, "skip": { "type": "array", "items": { "type": "string" } }, "create": { "type": "array", "description": "List of Environment variable names to create in target project if they are not already created", "items": { "type": "string", "description": "The Environment variable name" } }, "skipIfNotSameFileName": { "type": "array", "items": { "type": "string" } } } } }, "description": "plagiarize-me.yaml configuration schema", "id": "https://json.schemastore.org/plagiarize-me", "properties": { "repo": { "type": "object", "description": "Git repo of where this plagiarizable project is hosted", "additionalProperties": false, "required": ["url"], "properties": { "url": { "type": "string", "description": "The git repo url of this project" }, "checkout": { "type": "string", "description": "The default branch that downstream projects should checkout when plagiarizing this project", "default": "master" } } }, "move": { "type": "object", "description": "Files to move in target project from their previous locations", "properties": { "directories": { "type": "array", "description": "Directories to move from the target repo to the target repo. Useful for refactoring project structures", "items": { "$ref": "#/definitions/moveItems" } }, "files": { "type": "array", "description": "Files to move from the target repo to the target repo. Useful for refactoring", "items": { "$ref": "#/definitions/moveItems" } } } }, "run": { "type": "array", "description": "Shell commands to run after plagiarize files are done being copied and updated", "items": { "type": "object", "required": ["command"], "properties": { "command": { "type": "string", "description": "The shell command to run" }, "parallel": { "type": "boolean", "description": "Whether or not to run this command synchronously or in parallel to other commands where `parallel: true`" }, "when": { "oneOf": [ { "type": "string", "enum": ["always"], "description": "Condition type" }, { "type": "object", "description": "Run this command only if configured file does not exist in target project", "required": ["type", "options"], "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Condition type", "enum": ["if-missing"] }, "options": { "type": "object", "required": ["path"], "properties": { "path": { "type": "string" } } } } }, { "type": "object", "description": "Always run this command", "required": ["type"], "additionalProperties": false, "properties": { "type": { "description": "Condition type", "type": "string", "enum": ["always"] } } } ] } } } }, "replace": { "required": ["strings"], "type": "object", "description": "Configuration for strings, files, and file paths to replace in target file", "properties": { "strings": { "description": "Strings to find in target project and be replaced with plagiarized project's values", "type": "object", "additionalProperties": { "type": ["string", "integer", "boolean"] }, "required": ["project"], "properties": { "project": { "type": "string" } } }, "vars": { "description": "Variables available to be used for finding and replacing by variable name. For example `$var_name: hello` would replace string '$var_name' with 'hello' in target project", "type": "object", "additionalProperties": { "type": ["string", "integer", "boolean"] } }, "files": { "description": "Relative path to target files that will be completely overwritten by source files in the same path", "type": "array", "items": { "type": "string" } } } }, "create": { "type": "object", "properties": { "files": { "type": "array", "description": "Files to copy from plagiarized project if they do not exist in the target project", "items": { "type": "string" } }, "andClean": { "type": "array", "description": "Files to remove commented sections from. Eg code between `// plagiarize:start:always:delete` and `// plagiarize:end:always:delete`", "items": { "type": "string" } } } }, "merge": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/mergeJson" }, { "$ref": "#/definitions/mergeYaml" }, { "$ref": "#/definitions/mergeGit" }, { "$ref": "#/definitions/mergeEnv" } ] } }, "templates": { "type": "array", "description": "Files that are used the have similarities between instances of that that. .env files for example are similar and could be templated", "items": { "type": "object", "additionalProperties": false, "required": ["name", "replace"], "properties": { "name": { "type": "string", "description": "The name of the template" }, "replace": { "type": "object", "additionalProperties": false, "required": ["strings"], "properties": { "strings": { "type": "object", "description": "Values to be used as variables within the target project. So `var_name: hello` in the template configuration and `var_name: world` would replace instances of 'hello' found in the source file with with 'world' found in the target file", "additionalProperties": { "type": ["string", "boolean", "number"] } }, "values": { "type": "object", "description": "Values to be used as variables within the target project. So `var_name: hello` would replace instances of '$var_name' with 'hello' in the target file", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } }, "vars": { "type": "object", "description": "Values to be used as variables within the plagiarize-me.yaml file only. So `var_name: hello` would replace '$var_name' with 'hello' in plagiarize-me.yaml", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } } } }, "merge": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/mergeJson" }, { "$ref": "#/definitions/mergeYaml" }, { "$ref": "#/definitions/mergeGit" }, { "$ref": "#/definitions/mergeEnv" } ] } }, "create": { "type": "object", "additionalProperties": false, "properties": { "files": { "type": "array", "items": { "type": "string", "description": "The path to the file to create if it does not already exist" } } } }, "configs": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "strings": { "type": "object", "additionalProperties": { "type": ["string", "boolean", "number"] } }, "vars": { "type": "object", "additionalProperties": { "type": ["string", "boolean", "number", "null"] } } } } } } } }, "push": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "values": { "type": "object", "description": "Values to set when iterating through each instance", "additionalProperties": { "type": "string" } }, "instances": { "type": "array", "items": { "type": "object", "required": ["project"], "additionalProperties": { "type": "string" } } }, "git": { "type": "object", "additionalProperties": false, "required": ["repos", "commit", "branch", "remotes"], "properties": { "repos": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": ["remote"], "properties": { "local": { "type": "string" }, "remote": { "type": "object", "additionalProperties": false, "required": ["url", "checkout", "defaultName"], "properties": { "url": { "type": "string" }, "checkout": { "type": "string" }, "defaultName": { "type": "string" } } } } } }, "commit": { "type": "object", "additionalProperties": false, "required": ["message"], "properties": { "create": { "type": "boolean", "default": false }, "message": { "type": "string" } } }, "branch": { "type": "string" }, "push": { "type": "boolean", "default": false }, "remotes": { "type": "array", "description": "A list of removes to push to (if `push: true`)", "items": { "type": "string", "description": "name of the remote" } }, "hooks": { "type": "object", "additionalProperties": false, "properties": { "post-push": { "type": "array", "items": { "oneOf": [ { "type": "object", "required": ["type", "api", "remote", "targetBranch"], "properties": { "type": { "type": "string", "enum": ["create-merge-request"] }, "api": { "type": "string", "enum": ["gitlab"] }, "envVars": { "type": "object", "additionalProperties": { "type": "string" } }, "remote": { "type": "string" }, "targetBranch": { "type": "string" }, "removeSourceBranch": { "type": "boolean", "default": false } } } ] } } } } } } } } } }, "required": ["replace"], "title": "Plagiarize Me Configuration", "type": "object" }
plagiarize-me
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "items": { "$ref": "#/definitions/file_attachment_asset" }, "type": "array" }, "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "first_public_at": { "$ref": "#/definitions/first_public_at" }, "government": { "$ref": "#/definitions/government" }, "image": { "$ref": "#/definitions/image" }, "political": { "$ref": "#/definitions/political" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "body", "political" ], "type": "object" }, "file_attachment_asset": { "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "enum": [ "file" ], "type": "string" }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "_format": "uri", "type": "string" }, "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "attachment_type", "content_type", "id", "url" ], "type": "object" }, "first_public_at": { "_format": "date-time", "description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.", "type": "string" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "government": { "additionalProperties": false, "description": "DEPRECATED: Content should be associated with a government through a link", "properties": { "current": { "description": "Is the government that published this document still the current government.", "type": "boolean" }, "slug": { "description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.", "type": "string" }, "title": { "description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.", "type": "string" } }, "required": [ "title", "slug", "current" ], "type": "object" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "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" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "political": { "description": "If the content is considered political in nature, reflecting views of the government it was published under.", "type": "boolean" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "tags": { "additionalProperties": false, "description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).", "properties": { "additional_topics": { "items": { "type": "string" }, "type": "array" }, "browse_pages": { "items": { "type": "string" }, "type": "array" }, "policies": { "items": { "type": "string" }, "type": "array" }, "primary_topic": { "items": { "type": "string" }, "type": "array" }, "topics": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "world_location_news_article" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The government associated with this document", "maxItems": 1 }, "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" }, "topical_events": { "$ref": "#/definitions/frontend_links_with_base_path" }, "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." }, "world_locations": { "$ref": "#/definitions/frontend_links" }, "worldwide_organisations": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "government": { "$ref": "#/definitions/guid_list", "description": "The government associated with this document", "maxItems": 1 }, "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" }, "topical_events": { "$ref": "#/definitions/guid_list" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." }, "world_locations": { "$ref": "#/definitions/guid_list" }, "worldwide_organisations": { "$ref": "#/definitions/guid_list" } }, "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": [ "world_location_news_article" ], "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" }
o21437
{ "definitions": { "address": { "description": "schema for a host address", "format": "hostname", "type": "string" }, "port": { "description": "schema for a port", "maximum": 65536, "minimum": 1024, "type": "integer" } }, "description": "Test schema.", "properties": { "address": { "$ref": "#/definitions/address" }, "port": { "$ref": "#/definitions/port" }, "str": { "format": "only-a", "type": "string" } }, "required": [ "port" ], "type": "object" }
o55253
{ "properties": { "appRoot": { "type": "string" }, "flat": { "default": true, "type": "boolean" }, "module": { "alias": "m", "description": "Allows specification of the declaring module.", "subtype": "filepath", "type": "string" }, "name": { "type": "string" }, "path": { "default": "app", "type": "string" }, "sourceDir": { "default": "src", "type": "string" }, "spec": { "default": true, "type": "boolean" } }, "required": [ "name" ], "title": "Angular Guard Options Schema", "type": "object" }
o83170
{ "properties": { "service": { "properties": { "name": { "default": "zeppelin", "type": "string" }, "zeppelin_java_opts": { "default": "-Dspark.mesos.coarse=true -Dspark.mesos.executor.home=/opt/spark/dist", "description": "Sets ZEPPELIN_JAVA_OPTS. You can use this to set arbitrary spark configuration properties (e.g. spark.mesos.uris)", "type": "string" } }, "type": "object" }, "spark": { "properties": { "cores_max": { "default": "", "description": "Sets spark.cores.max", "type": "string" }, "executor_docker_image": { "default": "mesosphere/spark:1.1.0-2.1.1-hadoop-2.7", "description": "The docker image to launch Spark executors with. By default, this will use this value specified in this package's resource.json", "type": "string" }, "executor_memory": { "description": "Sets spark.executor.memory", "type": "string" }, "uri": { "default": "https://downloads.mesosphere.com/spark/assets/spark-2.1.1-bin-2.7.tgz", "description": "A URI serving the Spark distribution to use for the local Zeppelin Spark context. By default, this will use the value specified in this package's resource.json", "type": "string" } }, "type": "object" } }, "type": "object" }
o90830
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "origin": { "type": "string" }, "date": { "type": "string" }, "marxs_version": { "type": "string" }, "format_version": { "type": "integer" }, "time": { "type": "string" } }, "required": [ "origin", "date", "marxs_version", "format_version", "time" ] }, "elements": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/Element" }, { "$ref": "#/definitions/Bufferelement" } ] } } }, "required": [ "meta", "elements" ], "definitions": { "Element": { "type": "object", "properties": { "materialproperties": { "type": "object", "properties": { "color": { "type": "string" }, "opacity": { "type": "number" }, "side": { "type": "integer" }, "transparent": { "type": "string" } }, "required": [ "color" ] }, "name": { "type": "string" }, "geometry": { "type": "string" }, "material": { "type": "string" }, "n": { "type": "integer" }, "pos4d": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "maxItems": 16, "minItems": 16 }, "minItems": 1 } }, "required": [ "materialproperties", "name", "geometry", "material", "n", "pos4d", "geometrypars" ] }, "Bufferelement": { "type": "object", "properties": { "materialproperties": { "type": "object" }, "name": { "type": "string" }, "geometry": { "type": "string" }, "geometrytype": { "type": "string" }, "material": { "type": "string" }, "n": { "type": "integer" }, "pos": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "minItems": 3 }, "minItems": 1 }, "faces": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "minItems": 3 }, "minItems": 1 }, "color": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "minItems": 3 }, "minItems": 1 } }, "required": [ "materialproperties", "name", "geometry", "material", "n", "pos", "geometrytype" ] } } }
o45306
{ "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 the area (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_eb8b2f8d
{ "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiGroup": { "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", "type": [ "string", "null" ] }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": [ "string", "null" ] }, "name": { "description": "Name of the object being referenced.", "type": [ "string", "null" ] }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": [ "string", "null" ] } }, "required": [ "kind", "name" ], "type": "object" }
kb_1037_Normalized
{ "properties": { "DestroyFVKeyOnStandby": { "description": "Destroy FileVault key on standby", "type": "boolean" }, "PayloadDescription": { "default": "Energy Saver Settings", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "Energy Saver Settings", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.MCX", "description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier", "type": "string" }, "PayloadOrganization": { "description": "This value describes the issuing organization of the profile, as displayed to the user", "type": "string" }, "PayloadType": { "default": "com.apple.MCX", "description": "The type of the payload, a reverse dns string", "type": "string" }, "PayloadUUID": { "default": "", "description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)", "pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$", "type": "string" }, "PayloadVersion": { "default": 1, "description": "The version of the whole configuration profile.", "type": "number" }, "SleepDisabled": { "description": "Key needs verification", "type": "boolean" }, "com.apple.EnergySaver.desktop.ACPower": { "description": "Managed settings for the desktop energy profile", "properties": { "Automatic Restart On Power Loss": { "description": "0 - do not restart on power loss", "type": "number" }, "Disk Sleep Timer-boolean": { "description": "Put hard disks to sleep when possible", "type": "boolean" }, "Display Sleep Timer": { "description": "Display Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "System Sleep Timer": { "description": "System Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "Wake On LAN": { "description": "Wake On LAN, 0 - disabled", "type": "number" } }, "type": "object" }, "com.apple.EnergySaver.desktop.ACPower-ProfileNumber": { "description": "Desktop Energy Saver Profile (-1 for none?)", "type": "number" }, "com.apple.EnergySaver.desktop.Schedule": { "description": "Use this key to manage scheduled power on and power off events", "properties": { "RepeatingPowerOff": { "description": "Use this key to describe a repeating shut down, sleep or restart", "properties": { "eventtype": { "description": "The type of action to take at the scheduled time", "enum": [ "wake", "wakepoweron", "sleep", "shutdown", "restart" ], "type": "string" }, "time": { "default": 1200, "description": "The time of day to perform the action as an int offset added to the scheduled day(s) eg 1200 for 12 hours", "type": "number" }, "weekdays": { "default": 31, "description": "The days on which the scheduled event occurs. TODO: needs more format description", "type": "number" } }, "type": "object" }, "RepeatingPowerOn": { "description": "Use this key to describe a repeating start up/wake time", "properties": { "eventtype": { "description": "The type of action to take at the scheduled time", "enum": [ "wake", "wakepoweron", "sleep", "shutdown", "restart" ], "type": "string" }, "time": { "default": 1200, "description": "The time of day to perform the action as an int offset added to the scheduled day(s) eg 1200 for 12 hours", "type": "number" }, "weekdays": { "default": 31, "description": "The days on which the scheduled event occurs. TODO: needs more format description", "type": "number" } }, "type": "object" } }, "type": "object" }, "com.apple.EnergySaver.portable.ACPower": { "description": "Managed settings for the portable AC power energy profile", "properties": { "Automatic Restart On Power Loss": { "description": "0 - do not restart on power loss", "type": "number" }, "Disk Sleep Timer-boolean": { "description": "Put hard disks to sleep when possible", "type": "boolean" }, "Display Sleep Timer": { "description": "Display Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "System Sleep Timer": { "description": "System Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "Wake On LAN": { "description": "Wake On LAN, 0 - disabled", "type": "number" } }, "type": "object" }, "com.apple.EnergySaver.portable.ACPower-ProfileNumber": { "description": "Energy Saver Profile (-1 for none?)", "type": "number" }, "com.apple.EnergySaver.portable.BatteryPower": { "description": "Managed settings for the portable battery power energy profile", "properties": { "Automatic Restart On Power Loss": { "description": "0 - do not restart on power loss", "type": "number" }, "Disk Sleep Timer-boolean": { "description": "Put hard disks to sleep when possible", "type": "boolean" }, "Display Sleep Timer": { "description": "Display Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "System Sleep Timer": { "description": "System Sleep Timer, in minutes. 0 - never sleep", "type": "number" }, "Wake On LAN": { "description": "Wake On LAN, 0 - disabled", "type": "number" } }, "type": "object" }, "com.apple.EnergySaver.portable.BatteryPower-ProfileNumber": { "description": "Energy Saver Profile (-1 for none?)", "type": "number" } }, "title": "com.apple.MCX", "type": "object" }
o61586
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Root schema.", "description": "An explanation about the purpose of this instance.", "properties": { "manifests": { "type": "array", "title": "Manifests schema.", "description": "An explanation about the purpose of this instance.", "items": { "type": "object", "title": "0 schema.", "description": "An explanation about the purpose of this instance.", "properties": { "standardsVersion": { "type": "string", "title": "StandardsVersion schema.", "description": "An explanation about the purpose of this instance." }, "id": { "type": "string", "title": "Id schema.", "description": "An explanation about the purpose of this instance." }, "creator": { "type": "string", "title": "Creator schema.", "description": "An explanation about the purpose of this instance." }, "dateCreated": { "type": "string", "title": "DateCreated schema.", "description": "An explanation about the purpose of this instance." }, "researchObject": { "type": "object", "title": "ResearchObject schema.", "description": "An explanation about the purpose of this instance.", "properties": { "title": { "type": "string", "title": "Title schema.", "description": "An explanation about the purpose of this instance." }, "creators": { "type": "array", "title": "Creators schema.", "description": "An explanation about the purpose of this instance.", "items": { "type": "object", "title": "1 schema.", "description": "An explanation about the purpose of this instance.", "properties": { "name": { "type": "string", "title": "Name schema.", "description": "An explanation about the purpose of this instance." }, "email": { "type": "null", "title": "Email schema.", "description": "An explanation about the purpose of this instance." } }, "required": [ "name", "email" ] } }, "dates": { "type": "object", "title": "Dates schema.", "description": "An explanation about the purpose of this instance.", "properties": { "dateCreated": { "type": "string", "title": "DateCreated schema.", "description": "An explanation about the purpose of this instance." } }, "required": [ "dateCreated" ] }, "provenance": { "type": "object", "title": "Provenance schema.", "description": "An explanation about the purpose of this instance.", "properties": { "narrative": { "type": "string", "title": "Narrative schema.", "description": "An explanation about the purpose of this instance." } }, "required": [ "narrative" ] }, "bibliographicCitations": { "type": "array", "title": "BibliographicCitations schema.", "description": "An explanation about the purpose of this instance.", "items": { "type": "string", "title": "1 schema.", "description": "An explanation about the purpose of this instance." } }, "distributions": { "type": "array", "title": "Distributions schema.", "description": "An explanation about the purpose of this instance.", "items": { "type": "object", "title": "0 schema.", "description": "An explanation about the purpose of this instance.", "properties": { "uri": { "type": "string", "title": "Uri schema.", "description": "An explanation about the purpose of this instance." }, "comment": { "type": "string", "title": "Comment schema.", "description": "An explanation about the purpose of this instance." } }, "required": [ "uri", "comment" ] } }, "files": { "type": "array", "title": "Files schema.", "description": "An explanation about the purpose of this instance.", "items": { "type": "object", "title": "7 schema.", "description": "An explanation about the purpose of this instance.", "properties": { "name": { "type": "string", "title": "Name schema.", "description": "An explanation about the purpose of this instance." }, "format": { "type": "string", "title": "Format schema.", "description": "An explanation about the purpose of this instance." }, "abstract": { "type": "string", "title": "Abstract schema.", "description": "An explanation about the purpose of this instance." }, "size": { "type": "string", "title": "Size schema.", "description": "An explanation about the purpose of this instance." }, "uri": { "type": "string", "title": "Uri schema.", "description": "An explanation about the purpose of this instance." }, "permissions": { "type": "string", "title": "Permissions schema.", "description": "An explanation about the purpose of this instance." }, "dates": { "type": "object", "title": "Dates schema.", "description": "An explanation about the purpose of this instance.", "properties": { "dateCreated": { "type": "string", "title": "DateCreated schema.", "description": "An explanation about the purpose of this instance." } }, "required": [ "dateCreated" ] } }, "required": [ "name", "format", "abstract", "size", "uri", "permissions", "dates" ] } } }, "required": [ "title", "creators", "dates", "provenance", "bibliographicCitations", "distributions", "files" ] } }, "required": [ "standardsVersion", "id", "creator", "dateCreated", "researchObject" ] } } }, "required": [ "manifests" ] }
o57145
{ "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/SuiteResult", "definitions": { "SuiteResult": { "required": [ "projectName", "timestamp", "successRate", "environment", "tags", "executionTime", "executionStatus", "specResults", "beforeSuiteHookFailure", "afterSuiteHookFailure", "passedSpecsCount", "failedSpecsCount", "skippedSpecsCount", "basePath" ], "properties": { "afterSuiteHookFailure": { "$ref": "#/definitions/hookFailure" }, "basePath": { "type": "string" }, "beforeSuiteHookFailure": { "$ref": "#/definitions/hookFailure" }, "environment": { "type": "string" }, "executionStatus": { "type": "string" }, "executionTime": { "type": "integer" }, "failedSpecsCount": { "type": "integer" }, "passedSpecsCount": { "type": "integer" }, "projectName": { "type": "string" }, "skippedSpecsCount": { "type": "integer" }, "specResults": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/spec" }, "type": "array" }, "successRate": { "type": "number" }, "tags": { "type": "string" }, "timestamp": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "buildError": { "required": [ "ErrorType", "FileName", "LineNumber", "Message" ], "properties": { "ErrorType": { "type": "string" }, "FileName": { "type": "string" }, "LineNumber": { "type": "integer" }, "Message": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "comment": { "required": [ "Text" ], "properties": { "Text": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "concept": { "required": [ "itemType", "conceptStep", "items", "result" ], "properties": { "conceptStep": { "$ref": "#/definitions/step" }, "itemType": { "type": "string" }, "items": { "items": { "$ref": "#/definitions/item" }, "type": "array" }, "result": { "$ref": "#/definitions/result" } }, "additionalProperties": false, "type": "object" }, "fragment": { "required": [ "FragmentKind", "Text", "Name", "Table", "FileName" ], "properties": { "FileName": { "type": "string" }, "FragmentKind": { "type": "integer" }, "Name": { "type": "string" }, "Table": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/table" }, "Text": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "hookFailure": { "required": [ "hookName", "errorMessage", "screenshot", "stackTrace", "tableRowIndex" ], "properties": { "errorMessage": { "type": "string" }, "hookName": { "type": "string" }, "screenshot": { "type": "string" }, "stackTrace": { "type": "string" }, "tableRowIndex": { "type": "integer" } }, "additionalProperties": false, "type": "object" }, "item": { "required": [ "Kind", "Step", "Concept", "Comment" ], "properties": { "Comment": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/comment" }, "Concept": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/concept" }, "Kind": { "type": "string" }, "Step": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/step" } }, "additionalProperties": false, "type": "object" }, "result": { "required": [ "status", "stackTrace", "screenshot", "errorMessage", "executionTime", "skippedReason", "messages", "errorType" ], "properties": { "errorMessage": { "type": "string" }, "errorType": { "type": "string" }, "executionTime": { "type": "string" }, "messages": { "items": { "type": "string" }, "type": "array" }, "screenshot": { "type": "string" }, "skippedReason": { "type": "string" }, "stackTrace": { "type": "string" }, "status": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "row": { "required": [ "cells", "status" ], "properties": { "cells": { "items": { "type": "string" }, "type": "array" }, "status": { "type": "string" } }, "additionalProperties": false, "type": "object" }, "scenario": { "required": [ "scenarioHeading", "tags", "executionTime", "executionStatus", "contexts", "teardowns", "items", "beforeScenarioHookFailure", "afterScenarioHookFailure", "skipErrors", "tableRowIndex" ], "properties": { "afterScenarioHookFailure": { "$ref": "#/definitions/hookFailure" }, "beforeScenarioHookFailure": { "$ref": "#/definitions/hookFailure" }, "contexts": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/item" }, "type": "array" }, "executionStatus": { "type": "string" }, "executionTime": { "type": "string" }, "items": { "items": { "$ref": "#/definitions/item" }, "type": "array" }, "scenarioHeading": { "type": "string" }, "skipErrors": { "items": { "type": "string" }, "type": "array" }, "tableRowIndex": { "type": "integer" }, "tags": { "items": { "type": "string" }, "type": "array" }, "teardowns": { "items": { "$ref": "#/definitions/item" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "spec": { "required": [ "commentsBeforeDatatable", "comentsAfterDatatable", "specHeading", "fileName", "tags", "executionTime", "executionStatus", "scenarios", "isTableDriven", "datatable", "beforeSpecHookFailures", "afterSpecHookFailures", "passedScenarioCount", "failedScenarioCount", "skippedScenarioCount", "errors" ], "properties": { "afterSpecHookFailures": { "items": { "$ref": "#/definitions/hookFailure" }, "type": "array" }, "beforeSpecHookFailures": { "items": { "$ref": "#/definitions/hookFailure" }, "type": "array" }, "comentsAfterDatatable": { "items": { "type": "string" }, "type": "array" }, "commentsBeforeDatatable": { "items": { "type": "string" }, "type": "array" }, "datatable": { "$ref": "#/definitions/table" }, "errors": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/buildError" }, "type": "array" }, "executionStatus": { "type": "string" }, "executionTime": { "type": "integer" }, "failedScenarioCount": { "type": "integer" }, "fileName": { "type": "string" }, "isTableDriven": { "type": "boolean" }, "passedScenarioCount": { "type": "integer" }, "scenarios": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/scenario" }, "type": "array" }, "skippedScenarioCount": { "type": "integer" }, "specHeading": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" } }, "additionalProperties": false, "type": "object" }, "step": { "required": [ "fragments", "itemType", "stepText", "table", "beforeStepHookFailure", "afterStepHookFailure", "result" ], "properties": { "afterStepHookFailure": { "$ref": "#/definitions/hookFailure" }, "beforeStepHookFailure": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/hookFailure" }, "fragments": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/fragment" }, "type": "array" }, "itemType": { "type": "string" }, "result": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/result" }, "stepText": { "type": "string" }, "table": { "$ref": "#/definitions/table" } }, "additionalProperties": false, "type": "object" }, "table": { "required": [ "headers", "rows" ], "properties": { "headers": { "items": { "type": "string" }, "type": "array" }, "rows": { "items": { "$schema": "http://json-schema.org/draft-04/schema#", "$ref": "#/definitions/row" }, "type": "array" } }, "additionalProperties": false, "type": "object" } } }
o43046
{ "properties": { "codeEditor": { "default": true, "description": "Whether covalent code-editor should be set up.", "type": "boolean", "x-prompt": "Set up code editor?" }, "dynamicForms": { "default": true, "description": "Whether covalent dynamic-forms should be set up.", "type": "boolean", "x-prompt": "Set up dynamic forms?" }, "echarts": { "default": true, "description": "Whether covalent echarts should be set up.", "type": "boolean", "x-prompt": "Set up covalent echarts?" }, "flavoredMarkdown": { "default": true, "description": "Whether covalent flavored markdown should be set up.", "type": "boolean", "x-prompt": "Set up flavored markdown for rendering material design components?" }, "highlight": { "default": true, "description": "Whether covalent highlight should be set up.", "type": "boolean", "x-prompt": "Set up highlight for code snippets?" }, "http": { "default": true, "description": "Whether covalent http should be set up.", "type": "boolean", "x-prompt": "Set up http service?" }, "markdown": { "default": true, "description": "Whether covalent markdown parser should be set up.", "type": "boolean", "x-prompt": "Set up markdown parser for writing md files?" }, "markdownNavigator": { "default": true, "description": "Whether covalent markdown-navigator should be set up.", "type": "boolean", "x-prompt": "Set up markdown navigator?" }, "styleSheetColors": { "default": true, "description": "Whether covalent colors should be added.", "type": "boolean", "x-prompt": "Add colors stylesheet" }, "styleSheetFlexLayout": { "default": true, "description": "Whether covalent flex layout should be added.", "type": "boolean", "x-prompt": "Add flex layout stylesheet" }, "styleSheetUtilities": { "default": true, "description": "Whether covalent utilities mixin should be added.", "type": "boolean", "x-prompt": "Add stylesheet utilities" }, "textEditor": { "default": true, "description": "Whether covalent text-editor should be set up.", "type": "boolean", "x-prompt": "Set up text editor?" } }, "required": [], "title": "Covalent core ng-add schematic", "type": "object" }
o15131
{ "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": [ "string", "null" ] }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": [ "string", "null" ] } }, "required": [ "clientCIDR", "serverAddress" ], "type": "object" }
kb_967_Normalized
{ "properties": { "basePath": { "description": "Base path of the test suite", "type": "string" }, "casesToRun": { "description": "IDs of the cases to be run. If the field is not present, all cases are run", "items": { "type": "string" }, "type": "array" }, "manifestPath": { "description": "Path of the manifest.jsonld file relative to the validation folder inside the test suite", "type": "string" } }, "required": [ "basePath", "manifestPath" ], "type": "object" }
o88969
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "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": { "type": "string", "enum": [ "organisation" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "ordered_board_members": { "description": "Board members primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_chief_professional_officers": { "description": "Chief professional officers primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_child_organisations": { "description": "Child organisations primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_contacts": { "description": "Contact details primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_featured_policies": { "description": "Featured policies primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_foi_contacts": { "description": "FoI contact details primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_high_profile_groups": { "description": "High profile groups primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_military_personnel": { "description": "Military personnel primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_ministers": { "description": "Ministers primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_parent_organisations": { "description": "Parent organisations primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_roles": { "description": "Organisational roles primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_special_representatives": { "description": "Special representatives primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_successor_organisations": { "description": "Successor organisations primarily for use with closed Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "ordered_traffic_commissioners": { "description": "Traffic commissioners primarily for use with Whitehall organisations.", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "organisation" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "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.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_note": { "description": "Change note for the most recent update", "type": [ "string", "null" ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "additionalProperties": false, "properties": { "acronym": { "description": "The organisation's acronym, if it has one.", "type": [ "string", "null" ] }, "alternative_format_contact_email": { "description": "The organisation's email for requesting an alternative format for attachments", "type": [ "string", "null" ] }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "body": { "$ref": "#/definitions/body" }, "brand": { "description": "The organisation's brand class name, which is mapped to a colour in the frontend.", "type": [ "string", "null" ] }, "change_note": { "$ref": "#/definitions/change_note" }, "default_news_image": { "$ref": "#/definitions/image" }, "external_related_links": { "$ref": "#/definitions/external_related_links" }, "foi_exempt": { "description": "Whether the organisation is exempt from Freedom of Information requests.", "type": "boolean" }, "important_board_members": { "description": "The number of board members that will have photos displayed for them.", "type": "integer" }, "logo": { "description": "The organisation's logo, including the logo image and formatted name.", "type": "object", "properties": { "crest": { "type": [ "string", "null" ], "enum": [ "bis", "dit", "eo", "hmrc", "ho", "mod", "portcullis", "single-identity", "so", "ukaea", "wales", null ] }, "formatted_title": { "type": "string" }, "image": { "$ref": "#/definitions/image" } } }, "ordered_corporate_information_pages": { "description": "A set of links to corporate information pages to display for the organisation.", "type": "array", "items": { "type": "object", "required": [ "title", "href" ], "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } } } }, "ordered_featured_documents": { "description": "A set of featured documents to display for the organisation. Turn into proper links once organisations are fully migrated.", "type": "array", "items": { "type": "object", "required": [ "title", "href", "image", "summary", "public_updated_at", "document_type" ], "additionalProperties": false, "properties": { "document_type": { "type": [ "string", "null" ] }, "href": { "type": "string" }, "image": { "$ref": "#/definitions/image" }, "public_updated_at": { "type": [ "string", "null" ] }, "summary": { "type": "string" }, "title": { "type": "string" } } } }, "ordered_featured_links": { "description": "A set of featured links to display for the organisation.", "type": "array", "items": { "type": "object", "required": [ "title", "href" ], "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } } } }, "ordered_promotional_features": { "description": "A set of promotional features to display for the organisation. Turn into proper links once organisations are fully migrated.", "type": "array", "items": { "type": "object", "required": [ "title", "items" ], "additionalProperties": false, "properties": { "items": { "type": "array", "items": { "type": "object", "required": [ "summary", "double_width" ], "additionalProperties": false, "properties": { "double_width": { "type": "boolean" }, "href": { "type": [ "string", "null" ] }, "image": { "$ref": "#/definitions/image" }, "links": { "type": "array", "items": { "type": "object", "required": [ "title", "href" ], "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } } } }, "summary": { "type": "string" }, "title": { "type": [ "string", "null" ] } } } }, "title": { "type": "string" } } } }, "organisation_featuring_priority": { "description": "Whether to prioritise news or services on the organisation's home page.", "type": "string", "enum": [ "news", "service" ] }, "organisation_govuk_status": { "description": "The status of the organisation on GOV.UK.", "type": "object", "required": [ "status" ], "additionalProperties": false, "properties": { "status": { "type": "string", "enum": [ "changed_name", "devolved", "exempt", "joining", "left_gov", "live", "merged", "no_longer_exists", "replaced", "split", "superseded_by_devolved_administration", "transitioning" ] }, "updated_at": { "type": [ "string", "null" ], "format": "date-time" }, "url": { "type": [ "string", "null" ] } } }, "organisation_political": { "description": "Determines whether content published by this organisation represents governments policies and can be eligible for history mode", "type": "boolean" }, "organisation_type": { "description": "The type of organisation.", "type": "string", "enum": [ "adhoc_advisory_group", "advisory_ndpb", "civil_service", "court", "devolved_administration", "executive_agency", "executive_ndpb", "executive_office", "independent_monitoring_body", "ministerial_department", "non_ministerial_department", "other", "public_corporation", "sub_organisation", "tribunal" ] }, "secondary_corporate_information_pages": { "description": "A string containing sentences and links to corporate information pages that are not included in ordered_corporate_information_pages.", "type": "string" }, "social_media_links": { "description": "A set of links to social media profiles for the organisation.", "type": "array", "items": { "type": "object", "required": [ "service_type", "title", "href" ], "additionalProperties": false, "properties": { "href": { "type": "string", "format": "uri" }, "service_type": { "type": "string", "enum": [ "blog", "email", "facebook", "flickr", "foursquare", "google-plus", "instagram", "linkedin", "other", "pinterest", "twitter", "youtube" ] }, "title": { "type": "string" } } } } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "external_related_links": { "type": "array", "items": { "$ref": "#/definitions/external_link" } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "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 }, "image": { "type": "object", "required": [ "url" ], "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "credit": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "high_resolution_url": { "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", "format": "uri" }, "url": { "description": "URL to the image. The image should be in a suitable resolution for display on the page.", "type": "string", "format": "uri" } } }, "locale": { "type": "string", "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" ] }, "public_updated_at": { "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", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "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" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "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" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21310
{ "_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" }
kb_1062_Normalized
{ "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": "StatefulSetCondition describes the state of a statefulset at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "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 statefulset condition.", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_1000_Normalized
{ "properties": { "PayloadDescription": { "default": "Desktop Wallpaper Settings", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "Desktop Wallpaper Settings", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.desktop", "description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier", "type": "string" }, "PayloadOrganization": { "description": "This value describes the issuing organization of the profile, as displayed to the user", "type": "string" }, "PayloadType": { "default": "com.apple.desktop", "description": "The type of the payload, a reverse dns string", "type": "string" }, "PayloadUUID": { "default": "", "description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)", "pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$", "type": "string" }, "PayloadVersion": { "default": 1, "description": "The version of the whole configuration profile.", "type": "number" }, "locked": { "default": false, "description": "Optional. If true, the desktop picture is locked. Default is false", "type": "boolean" }, "override-picture-path": { "description": "Optional. If supplied, it sets the path to the desktop picture.", "type": "string" } }, "title": "com.apple.desktop", "type": "object" }
o61606
{ "id": "http://schemas.triniti.io/json-schema/gdbots/common/mixin/taggable/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "tags": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$" } }, "additionalProperties": false, "description": "Tags is a map that categorizes data or tracks references in external systems. The tags names should be consistent and descriptive, e.g. fb_user_id:123, salesforce_customer_id:456.", "pbj": { "type": "string", "rule": "map" } } }, "additionalProperties": true }
o82294
{ "properties": { "namespace": { "description": "Namespace to evaluate rules for. Required.", "type": [ "string", "null" ] } }, "type": "object" }
kb_958_Normalized
{ "description": "Generates a new, generic end-to-end test definition for the given or default project.", "long-description": "e2e-long.md", "properties": { "relatedAppName": { "description": "The name of the app being tested.", "type": "string" }, "rootSelector": { "default": "app-root", "description": "The HTML selector for the root component of the test app.", "type": "string" } }, "required": [ "relatedAppName" ], "title": "Angular e2e Application Options Schema", "type": "object" }
o64879
{ "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape for which area needs to be calculated", "enum": [ "square", "rectangle", "circle" ], "type": "string" }, "side": { "description": "The side length of the square", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_510ca849
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelTestCaseFinishedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.0.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "string", "pattern": "^pkg:" }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "outcome": { "type": "object", "properties": { "verdict": { "type": "string", "enum": [ "PASSED", "FAILED", "INCONCLUSIVE" ] }, "conclusion": { "type": "string", "enum": [ "SUCCESSFUL", "FAILED", "ABORTED", "TIMED_OUT", "INCONCLUSIVE" ] }, "description": { "type": "string" }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": {} }, "required": [ "name", "value" ], "additionalProperties": false } } }, "required": [ "verdict", "conclusion" ], "additionalProperties": false }, "persistentLogs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "outcome" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5399
{ "id": "http://schemas.triniti.io/json-schema/gdbots/ncr/mixin/edge/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "from_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "to_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "multiplicity": { "type": "string", "default": "multi", "enum": [ "unknown", "multi", "simple", "many2one", "one2many", "one2one" ], "pbj": { "type": "string-enum", "rule": "single", "overridable": true } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } } }, "required": [ "from_ref", "to_ref" ], "additionalProperties": true }
o82481
{ "properties": { "base": { "description": "The base of the triangle (required if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (required if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (required if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (required if shape is circle)", "type": "number" }, "shape": { "description": "The shape to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (required if shape is rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_cdde5279
{ "description": "DEPRECATED.", "properties": { "revision": { "description": "The revision to rollback to. If set to 0, rollback to the last revision.", "format": "int64", "type": [ "integer", "null" ] } }, "type": "object" }
kb_871_Normalized
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the object", "type": "number" }, "length": { "description": "The length of the object", "type": "number" }, "radius": { "description": "The radius of the object", "type": "number" }, "width": { "description": "The width of the object", "type": "number" } }, "type": "object" }, "object_type": { "description": "The type of 3D object (e.g. cube, sphere, cylinder)", "type": "string" } }, "required": [ "object_type", "dimensions" ], "type": "object" }
calculate_volume_73171077
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "location": { "_format": "uri", "type": "string" }, "retries": { "type": "number" }, "retrieveDate": { "_format": "date-time", "type": "string" }, "retryInterval": { "type": "number" } }, "required": [ "location", "retrieveDate" ], "title": "UpdateFirmwareRequest", "type": "object" }
o43997
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "interface": { "type": "object", "title": "Interface Specification", "properties": { "type": { "type": "string", "description": "Network interface type.", "enum": [ "monitor", "vlan", "wifi-ap" ] }, "dhcp": { "type": "object", "properties": { "leasetime": { "type": "string", "description": "Duration of client leases, e.g. 2h.", "pattern": "\\d+[dhms]" }, "limit": { "type": "integer", "description": "Size of address range beginning at start value.", "minimum": 1 }, "start": { "type": "integer", "description": "Starting offset for address assignment.", "minimum": 3 } }, "additionalProperties": false }, "dns": { "type": "array", "description": "List of DNS servers to advertise to connected clients.", "items": { "type": "string" } }, "wireless": { "type": "object", "properties": { "ssid": { "type": "string", "description": "ESSID to broadcast.", "maxLength": 32 }, "key": { "type": "string", "description": "Wireless network password.", "minLength": 8 }, "nasid": { "type": "string", "description": "NAS identifier for RADIUS." }, "acct_server": { "type": "string", "description": "RADIUS accounting server." }, "acct_secret": { "type": "string", "description": "RADIUS accounting secret." }, "acct_interval": { "type": "integer", "description": "RADIUS accounting update interval (seconds).", "minimum": 1 }, "hidden": { "type": "boolean", "description": "Disable broadcasting the ESSID in beacons." }, "isolate": { "type": "boolean", "description": "Disable forwarding traffic between connected clients." }, "maxassoc": { "type": "integer", "description": "Maximum number of associated clients.", "minimum": 0 } }, "additionalProperties": false }, "requirements": { "type": "object", "properties": { "hwmode": { "type": "string", "description": "Required operating mode (11b for old hardware, 11g for 2.4 GHz, 11a for 5 Ghz).", "enum": [ "11b", "11g", "11a" ] }, "ipv4_network": { "type": "string", "description": "Required IP network in slash notation.", "pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+/\\d+" } }, "additionalProperties": false }, "l3bridge": { "type": "string", "description": "Bridge to another network using ARP proxying (experimental)." }, "vlan-id": { "type": "integer", "description": "VLAN tag for traffic to and from the interface.", "minimum": 1, "maximum": 4094 } }, "required": [ "type" ], "additionalProperties": false, "$$target": "#/definitions/interface" }, "service": { "type": "object", "title": "Service Specification", "properties": { "type": { "type": "string", "description": "Type of chute service.", "enum": [ "light", "normal", "image" ] }, "source": { "type": "string", "description": "Source directory for this service." }, "image": { "type": "string", "description": "Image specification for services that pull a Docker image." }, "command": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "dns": { "type": "array", "description": "List of DNS servers to be used within the container.", "items": { "type": "string" } }, "environment": { "type": "object", "description": "Environment variables." }, "interfaces": { "type": "object", "description": "Network interfaces to be connected.", "patternProperties": { "\\w{1,16}": { "$ref": "#/definitions/interface" } } }, "requests": { "type": "object", "properties": { "as-root": { "type": "boolean", "description": "Run service as privileged user." }, "port-bindings": { "type": "array", "description": "Port bindings from host to service container.", "items": { "type": "object", "properties": { "external": { "type": "integer", "description": "External (host) port number.", "minimum": 1, "maximum": 65536 }, "internal": { "type": "integer", "description": "Internal (container) port number.", "minimum": 1, "maximum": 65536 } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false, "$$target": "#/definitions/service" } }, "type": "object", "title": "Chute Specification", "properties": { "name": { "type": "string", "description": "Name of the chute." }, "description": { "type": "string", "description": "Description of the chute to be shown to users." }, "version": { "description": "Version of the chute.", "anyOf": [ { "type": "string" }, { "type": "number" } ] }, "services": { "type": "object", "description": "Services to be installed with the chute.", "patternProperties": { "\\w+": { "$ref": "#/definitions/service" } } }, "web": { "type": "object", "properties": { "service": { "type": "string", "description": "Name of chute service which provides the web service." }, "port": { "type": "integer", "description": "Listening port inside the chute.", "minimum": 1, "maximum": 65536 } }, "additionalProperties": false } }, "required": [ "name" ], "additionalProperties": false }
o12613
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "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": { "type": "string", "enum": [ "manual_section" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "manual_section" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "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.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "required": [ "body", "manual", "organisations" ], "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "type": "array", "items": { "$ref": "#/definitions/file_attachment_asset" } }, "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "manual": { "$ref": "#/definitions/manual_section_parent" }, "organisations": { "$ref": "#/definitions/manual_organisations" } } }, "file_attachment_asset": { "type": "object", "required": [ "attachment_type", "content_type", "id", "url" ], "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "type": "string", "enum": [ "file" ] }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "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 }, "locale": { "type": "string", "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" ] }, "manual_organisations": { "description": "A manual\u2019s organisations. TODO: Switch to use organisations in links", "type": "array", "items": { "type": "object", "required": [ "title", "abbreviation", "web_url" ], "additionalProperties": false, "properties": { "abbreviation": { "type": "string" }, "title": { "type": "string" }, "web_url": { "type": "string" } } } }, "manual_section_parent": { "description": "The parent manual for a manual section", "type": "object", "required": [ "base_path" ], "additionalProperties": false, "properties": { "base_path": { "$ref": "#/definitions/absolute_path" } } }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "public_updated_at": { "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", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "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" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "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" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21294
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "leftPanelEnabled": { "type": "boolean" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "navigatorEnabled": { "type": "boolean" }, "openTemplate": { "type": "string", "minLength": 1 }, "overrideFullScreen": { "type": "boolean" }, "pagingEnabled": { "type": "boolean" }, "pessimisticAccessControl": { "type": "boolean" }, "preserveViewport": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "saveUserSettings": { "type": "boolean" }, "searchWithinEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 }, "tokenStorage": { "type": "string", "minLength": 1 }, "useArrowKeysToNavigate": { "type": "boolean" } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "leftPanelEnabled", "limitLocales", "minWidthBreakPoint", "navigatorEnabled", "openTemplate", "overrideFullScreen", "pagingEnabled", "pessimisticAccessControl", "preserveViewport", "rightPanelEnabled", "saveUserSettings", "searchWithinEnabled", "theme", "tokenStorage", "useArrowKeysToNavigate" ] }, "modules": { "type": "object", "properties": { "contentLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "expandFullEnabled": { "type": "boolean" }, "galleryThumbChunkedResizingEnabled": { "type": "boolean" }, "galleryThumbChunkedResizingThreshold": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbLoadPadding": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "tabOrder": { "type": "string" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "expandFullEnabled", "galleryThumbChunkedResizingEnabled", "galleryThumbChunkedResizingThreshold", "galleryThumbHeight", "galleryThumbLoadPadding", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "tabOrder", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] }, "content": { "type": "object", "properties": { "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "date": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "index": { "type": "string", "minLength": 1 }, "select": { "type": "string", "minLength": 1 }, "selectAll": { "type": "string", "minLength": 1 }, "selection": { "type": "string", "minLength": 1 }, "sortBy": { "type": "string", "minLength": 1 }, "thumbnails": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "volume": { "type": "string", "minLength": 1 } }, "required": [ "collapse", "collapseFull", "date", "expand", "expandFull", "index", "select", "selectAll", "selection", "sortBy", "thumbnails", "title", "volume" ] } }, "required": [ "options", "content" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "confinedImageSize": { "type": "number" }, "maxImageWidth": { "type": "number" }, "selectionEnabled": { "type": "boolean" } }, "required": [ "confinedImageSize", "maxImageWidth", "selectionEnabled" ] }, "content": { "type": "object", "properties": { "currentViewAsJpg": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "downloadSelection": { "type": "string", "minLength": 1 }, "downloadSelectionButton": { "type": "string", "minLength": 1 }, "editSettings": { "type": "string", "minLength": 1 }, "entireDocument": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "pagingNote": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "wholeImageHighRes": { "type": "string", "minLength": 1 }, "wholeImageLowResAsJpg": { "type": "string", "minLength": 1 } }, "required": [ "currentViewAsJpg", "download", "downloadSelection", "downloadSelectionButton", "editSettings", "entireDocument", "entireFileAsOriginal", "noneAvailable", "pagingNote", "preview", "title", "wholeImageHighRes", "wholeImageLowResAsJpg" ] } }, "required": [ "options", "content" ] }, "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "downloadEnabled": { "type": "boolean" }, "embedEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "fullscreenEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "downloadEnabled", "embedEnabled", "feedbackEnabled", "fullscreenEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "feedback": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "feedback", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "emptyValue": { "type": "string", "minLength": 1 }, "invalidNumber": { "type": "string", "minLength": 1 }, "noMatches": { "type": "string", "minLength": 1 }, "ok": { "type": "string", "minLength": 1 }, "pageNotFound": { "type": "string", "minLength": 1 }, "refresh": { "type": "string", "minLength": 1 } }, "required": [ "emptyValue", "invalidNumber", "noMatches", "ok", "pageNotFound", "refresh" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "aggregateValues": { "type": "string" }, "canvasHeader": { "type": "string", "minLength": 1 }, "canvasExclude": { "type": "string" }, "displayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "manifestHeader": { "type": "string", "minLength": 1 }, "textLimit": { "type": "number" }, "textLimitType": { "type": "string", "minLength": 1 } }, "required": [ "aggregateValues", "canvasHeader", "canvasExclude", "displayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "manifestHeader", "textLimit", "textLimitType" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "manifestHeader": { "type": "string", "minLength": 1 }, "canvasHeader": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title", "manifestHeader", "canvasHeader" ] } }, "required": [ "options", "content" ] }, "pagingHeaderPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "autoCompleteBoxEnabled": { "type": "boolean" }, "imageSelectionBoxEnabled": { "type": "boolean" }, "localeToggleEnabled": { "type": "boolean" }, "pageModeEnabled": { "type": "boolean" }, "pagingToggleEnabled": { "type": "boolean" } }, "required": [ "autoCompleteBoxEnabled", "imageSelectionBoxEnabled", "localeToggleEnabled", "pageModeEnabled", "pagingToggleEnabled" ] }, "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "emptyValue": { "type": "string", "minLength": 1 }, "first": { "type": "string", "minLength": 1 }, "firstImage": { "type": "string", "minLength": 1 }, "firstPage": { "type": "string", "minLength": 1 }, "folio": { "type": "string", "minLength": 1 }, "go": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "last": { "type": "string", "minLength": 1 }, "lastImage": { "type": "string", "minLength": 1 }, "lastPage": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "nextImage": { "type": "string", "minLength": 1 }, "nextPage": { "type": "string", "minLength": 1 }, "of": { "type": "string", "minLength": 1 }, "oneUp": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "previousImage": { "type": "string", "minLength": 1 }, "previousPage": { "type": "string", "minLength": 1 }, "settings": { "type": "string", "minLength": 1 }, "twoUp": { "type": "string", "minLength": 1 } }, "required": [ "close", "emptyValue", "first", "firstImage", "firstPage", "folio", "go", "help", "image", "last", "lastImage", "lastPage", "next", "nextImage", "nextPage", "of", "oneUp", "page", "previous", "previousImage", "previousPage", "settings", "twoUp" ] } }, "required": [ "options", "content" ] }, "seadragonCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "animationTime": { "type": "number" }, "autoHideControls": { "type": "boolean" }, "blendTime": { "type": "number" }, "constrainDuringPan": { "type": "boolean" }, "controlsFadeAfterInactive": { "type": "number" }, "controlsFadeDelay": { "type": "number" }, "controlsFadeLength": { "type": "number" }, "defaultZoomLevel": { "type": "number" }, "immediateRender": { "type": "boolean" }, "maxZoomLevel": { "type": "number" }, "navigatorPosition": { "type": "string", "minLength": 1 }, "pageGap": { "type": "number" }, "showHomeControl": { "type": "boolean" }, "trimAttributionCount": { "type": "number" }, "visibilityRatio": { "type": "number" } }, "required": [ "animationTime", "autoHideControls", "blendTime", "constrainDuringPan", "controlsFadeAfterInactive", "controlsFadeDelay", "controlsFadeLength", "defaultZoomLevel", "immediateRender", "maxZoomLevel", "navigatorPosition", "pageGap", "showHomeControl", "trimAttributionCount", "visibilityRatio" ] }, "content": { "type": "object", "properties": { "acknowledgements": { "type": "string", "minLength": 1 }, "goHome": { "type": "string", "minLength": 1 }, "imageUnavailable": { "type": "string", "minLength": 1 }, "next": { "type": "string", "minLength": 1 }, "previous": { "type": "string", "minLength": 1 }, "rotateRight": { "type": "string", "minLength": 1 }, "zoomIn": { "type": "string", "minLength": 1 }, "zoomOut": { "type": "string", "minLength": 1 } }, "required": [ "acknowledgements", "goHome", "imageUnavailable", "next", "previous", "rotateRight", "zoomIn", "zoomOut" ] } }, "required": [ "options", "content" ] }, "searchFooterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideDetailsTermsCount": { "type": "number" }, "elideResultsTermsCount": { "type": "number" }, "pageModeEnabled": { "type": "boolean" } }, "required": [ "elideDetailsTermsCount", "elideResultsTermsCount", "pageModeEnabled" ] }, "content": { "type": "object", "properties": { "clearSearch": { "type": "string", "minLength": 1 }, "defaultLabel": { "type": "string", "minLength": 1 }, "displaying": { "type": "string", "minLength": 1 }, "enterKeyword": { "type": "string", "minLength": 1 }, "image": { "type": "string", "minLength": 1 }, "imageCaps": { "type": "string", "minLength": 1 }, "instanceFound": { "type": "string", "minLength": 1 }, "instancesFound": { "type": "string", "minLength": 1 }, "nextResult": { "type": "string", "minLength": 1 }, "page": { "type": "string", "minLength": 1 }, "pageCaps": { "type": "string", "minLength": 1 }, "previousResult": { "type": "string", "minLength": 1 }, "resultFoundFor": { "type": "string", "minLength": 1 }, "resultsFoundFor": { "type": "string", "minLength": 1 }, "searchWithin": { "type": "string", "minLength": 1 } }, "required": [ "clearSearch", "defaultLabel", "displaying", "enterKeyword", "image", "imageCaps", "instanceFound", "instancesFound", "nextResult", "page", "pageCaps", "previousResult", "resultFoundFor", "resultsFoundFor", "searchWithin" ] } }, "required": [ "options", "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "navigatorEnabled": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "navigatorEnabled", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] }, "clickThroughDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "viewTerms": { "type": "string", "minLength": 1 } }, "required": [ "viewTerms" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "restrictedDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "cancel": { "type": "string", "minLength": 1 } }, "required": [ "cancel" ] } }, "required": [ "content" ] } }, "required": [ "contentLeftPanel", "dialogue", "downloadDialogue", "embedDialogue", "footerPanel", "genericDialogue", "helpDialogue", "moreInfoRightPanel", "pagingHeaderPanel", "seadragonCenterPanel", "searchFooterPanel", "settingsDialogue", "clickThroughDialogue", "loginDialogue", "restrictedDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "canvasIndexOutOfRange": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "canvasIndexOutOfRange", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o66715
{ "additionalProperties": false, "description": "Schema for an event where a mobile application is installed.", "properties": {}, "self": { "format": "jsonschema", "name": "application_install", "vendor": "com.snowplowanalytics.mobile", "version": "1-0-0" }, "type": "object" }
sp_218_Normalized
{ "additionalProperties": false, "description": "An explanation about the puropose of this instance described by this schema.", "name": "/", "properties": { "about": { "_id": "about", "description": "An explanation about the puropose of this instance described by this schema.", "name": "about", "title": "About schema.", "type": "string" }, "company": { "_id": "company", "description": "An explanation about the puropose of this instance described by this schema.", "name": "company", "title": "Company schema.", "type": "string" }, "email": { "_id": "email", "description": "An explanation about the puropose of this instance described by this schema.", "name": "email", "title": "Email schema.", "type": "string" }, "firstName": { "_id": "firstName", "description": "An explanation about the puropose of this instance described by this schema.", "name": "firstName", "title": "FirstName schema.", "type": "string" }, "lastName": { "_id": "lastName", "description": "An explanation about the puropose of this instance described by this schema.", "name": "lastName", "title": "LastName schema.", "type": "string" }, "tags": { "_id": "tags", "additionalItems": false, "description": "An explanation about the puropose of this instance described by this schema.", "items": { "_id": "2", "description": "An explanation about the puropose of this instance described by this schema.", "name": "2", "title": "2 schema.", "type": "string" }, "name": "tags", "title": "Tags schema.", "type": "array" } }, "required": [ "about", "email", "firstName", "lastName", "tags", "company" ], "title": "Root schema.", "type": "object" }
o81562