json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "DS2PlusPlus Schema", "type": "object", "definitions": { "uuid": { "type": "string", "pattern": "^([0-9A-Z]{8})-([0-9A-Z]{4})-([0-9A-Z]{4})-([0-9A-Z]{4})-([0-9A-Z]{12})$" }, "result_type": { "enum": [ "string", "6bit-string", "hex_string", "boolean", "byte", "signed_byte", "short", "signed_short", "short_vin" ] }, "display_type": { "enum": [ "string", "raw", "float", "int", "hex_string", "hex_int", "enum" ] }, "ecu_result": { "type": "object", "properties": { "uuid": { "$ref": "#/definitions/uuid" }, "parent_id": { "$ref": "#/definitions/uuid" }, "type": { "$ref": "#/definitions/result_type" }, "display": { "anyOf": [ { "$ref": "#/definitions/display_type" }, { "type": "string", "pattern": "^string_table\\:(([0-9A-Z]{8})-([0-9A-Z]{4})-([0-9A-Z]{4})-([0-9A-Z]{4})-([0-9A-Z]{12}))$" } ] }, "start_pos": { "type": "integer" }, "length": { "type": "integer", "minimum": 1 }, "mask": { "type": "string" }, "levels": { "type": "object" }, "rpn": { "type": "string" }, "units": { "type": "string" } }, "required": [ "uuid" ], "anyOf": [ { "required": [ "parent_id" ] }, { "required": [ "type", "display", "start_pos", "length", "units" ] } ], "additionalProperties": false }, "ecu_operation": { "type": "object", "properties": { "uuid": { "$ref": "#/definitions/uuid" }, "parent_id": { "$ref": "#/definitions/uuid" }, "command": { "type": "array" }, "results": { "patternProperties": { "[a-z_0-9\\.\\-]*": { "$ref": "#/definitions/ecu_result" } } } }, "required": [ "uuid" ], "anyOf": [ { "required": [ "parent_id" ] }, { "required": [ "command", "results" ] } ], "additionalProperties": false }, "ecu": { "type": "object", "properties": { "dpp_version": { "type": "integer", "minimum": 1, "maximum": 1 }, "file_version": { "type": "integer", "minimum": 1 }, "file_mtime": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.0Z$" }, "file_type": { "type": "string", "pattern": "^ecu$" }, "uuid": { "$ref": "#/definitions/uuid" }, "name": { "type": "string" }, "address": { "type": "string" }, "family": { "type": "string" }, "hardware_number": { "type": "string" }, "software_number": { "type": "string" }, "part_number": { "type": "integer" }, "coding_index": { "type": "string" }, "endian": { "enum": [ "big", "little" ] }, "parent_id": { "type": [ "string", "null" ] }, "operations": { "patternProperties": { "[a-z_0-9\\.\\-]*": { "$ref": "#/definitions/ecu_operation" } } } }, "additionalProperties": false, "anyOf": [ { "properties": { "parent_id": { "type": "null" } }, "required": [ "parent_id" ] }, { "properties": { "parent_id": { "$ref": "#/definitions/uuid" } }, "required": [ "address", "family", "parent_id", "part_number", "coding_index", "hardware_number", "software_number", "endian" ] } ] }, "string_table": { "properties": { "dpp_version": { "type": "integer", "minimum": 1, "maximum": 1 }, "file_version": { "type": "integer", "minimum": 1 }, "file_mtime": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.0Z$" }, "file_type": { "type": "string", "pattern": "^string_table$" }, "uuid": { "$ref": "#/definitions/uuid" }, "table_name": { "type": "string" }, "strings": { "type": "object" } }, "required": [ "dpp_version", "file_version", "file_mtime", "file_type", "uuid", "strings", "table_name" ], "additionalProperties": false } }, "oneOf": [ { "$ref": "#/definitions/ecu" }, { "$ref": "#/definitions/string_table" } ] }
o47674
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "description": "The Avalon environment", "properties": { "AVALON_APP": { "description": "Name of application", "example": "maya2016", "pattern": "^\\w*$", "type": "string" }, "AVALON_ASSET": { "description": "Name of asset", "example": "Bruce", "pattern": "^\\w*$", "type": "string" }, "AVALON_CONFIG": { "description": "Name of Avalon configuration", "example": "polly", "pattern": "^\\w*$", "type": "string" }, "AVALON_CONTAINER_ID": { "default": "avalon.container", "description": "Unique identifier for a loaded representation in a working file", "example": "avalon.container", "pattern": "^[\\w.]*$", "type": "string" }, "AVALON_DB": { "default": "avalon", "description": "Name of database", "example": "avalon", "pattern": "^\\w*$", "type": "string" }, "AVALON_DEADLINE": { "default": null, "description": "Address to Deadline", "example": "http://192.168.99.101", "pattern": "^http[\\w/@:.]*$", "type": "string" }, "AVALON_DEBUG": { "default": null, "description": "Enable debugging mode. Some applications may use this for e.g. extended verbosity or mock plug-ins.", "example": "True", "type": "string" }, "AVALON_INSTANCE_ID": { "default": "avalon.instance", "description": "Unique identifier for instances in a working file", "example": "avalon.instance", "pattern": "^[\\w.]*$", "type": "string" }, "AVALON_LABEL": { "default": "Avalon", "description": "Nice name of Avalon, used in e.g. graphical user interfaces", "example": "Mindbender", "type": "string" }, "AVALON_MONGO": { "default": "mongodb://localhost:27017", "description": "Address to the asset database", "example": "mongodb://localhost:27017", "pattern": "^mongodb://[\\w/@:.]*$", "type": "string" }, "AVALON_PASSWORD": { "default": "secret", "description": "Generic password", "example": "abc123", "pattern": "^\\w*$", "type": "string" }, "AVALON_PROJECT": { "description": "Name of project", "example": "Hulk", "pattern": "^\\w*$", "type": "string" }, "AVALON_PROJECTS": { "description": "Absolute path to root of project directories", "example": "/nas/projects", "type": "string" }, "AVALON_SENTRY": { "default": null, "description": "Address to Sentry", "example": "https://5b872b280de742919b115bdc8da076a5:[email protected]/2", "pattern": "^http[\\w/@:.]*$", "type": "string" }, "AVALON_SILO": { "description": "Name of asset group or container", "example": "assets", "pattern": "^\\w*$", "type": "string" }, "AVALON_TASK": { "description": "Name of task", "example": "modeling", "pattern": "^\\w*$", "type": "string" }, "AVALON_TIMEOUT": { "default": "1000", "description": "Wherever there is a need for a timeout, this is the default value.", "example": "1000", "pattern": "^[0-9]*$", "type": "string" }, "AVALON_UPLOAD": { "default": null, "description": "Boolean of whether to upload published material to central asset repository", "example": "True", "type": "string" }, "AVALON_USERNAME": { "default": "avalon", "description": "Generic username", "example": "myself", "pattern": "^\\w*$", "type": "string" }, "AVALON_WORKDIR": { "description": "Current working directory of a host, such as Maya's location of workspace.mel", "example": "/mnt/projects/alita/assets/vector/maya", "type": "string" } }, "required": [ "AVALON_PROJECTS", "AVALON_PROJECT", "AVALON_ASSET", "AVALON_SILO", "AVALON_CONFIG" ], "title": "avalon-core:session-1.0", "type": "object" }
o60871
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Guild Parser", "description": "A WoWFinder Guild Parser", "type": "object", "properties": { "updated": { "type": "integer" }, "active": { "type": "boolean", "default": false }, "ranks": { "type": "object", "properties": { "rank_0": { "type": "boolean", "default": false }, "rank_1": { "type": "boolean", "default": false }, "rank_2": { "type": "boolean", "default": false }, "rank_3": { "type": "boolean", "default": false }, "rank_4": { "type": "boolean", "default": false }, "rank_5": { "type": "boolean", "default": false }, "rank_6": { "type": "boolean", "default": false }, "rank_7": { "type": "boolean", "default": false }, "rank_8": { "type": "boolean", "default": false }, "rank_9": { "type": "boolean", "default": false } } } } }
o85252
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Holds common attributes of ANS Content objects.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "address": { "$ref": "#/definitions/___traits_trait_address_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "canonical_url": { "$ref": "#/definitions/___traits_trait_canonical_url_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "comments": { "$ref": "#/definitions/___traits_trait_comments_json" }, "content_aliases": { "$ref": "#/definitions/___traits_trait_content_aliases_json" }, "content_restrictions": { "$ref": "#/definitions/___traits_trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/___traits_trait_contributors_json" }, "copyright": { "$ref": "#/definitions/___traits_trait_copyright_json" }, "created_date": { "$ref": "#/definitions/___traits_trait_created_date_json" }, "credits": { "$ref": "#/definitions/___traits_trait_credits_json" }, "description": { "$ref": "#/definitions/___traits_trait_description_json" }, "display_date": { "$ref": "#/definitions/___traits_trait_display_date_json" }, "distributor": { "$ref": "#/definitions/___traits_trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/___traits_trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/___traits_trait_first_publish_date_json" }, "geo": { "$ref": "#/definitions/___traits_trait_geo_json" }, "headlines": { "$ref": "#/definitions/___traits_trait_headlines_json" }, "label": { "$ref": "#/definitions/___traits_trait_label_json" }, "language": { "$ref": "#/definitions/___traits_trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/___traits_trait_last_updated_date_json" }, "location": { "$ref": "#/definitions/___traits_trait_location_json" }, "owner": { "$ref": "#/definitions/___traits_trait_owner_json" }, "pitches": { "$ref": "#/definitions/___traits_trait_pitches_json" }, "planning": { "$ref": "#/definitions/___traits_trait_planning_json" }, "promo_items": { "$ref": "#/definitions/___traits_trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/___traits_trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/___traits_trait_related_content_json" }, "revision": { "$ref": "#/definitions/___traits_trait_revision_json" }, "short_url": { "$ref": "#/definitions/___traits_trait_short_url_json" }, "slug": { "$ref": "#/definitions/___traits_trait_slug_json" }, "source": { "$ref": "#/definitions/___traits_trait_source_json" }, "status": { "$ref": "#/definitions/___traits_trait_status_json" }, "subheadlines": { "$ref": "#/definitions/___traits_trait_subheadlines_json" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "syndication": { "$ref": "#/definitions/___traits_trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/___traits_trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/___traits_trait_tracking_json" }, "type": { "type": "string" }, "vanity_credits": { "$ref": "#/definitions/___traits_trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/___traits_trait_version_json" }, "workflow": { "$ref": "#/definitions/___traits_trait_workflow_json" } }, "required": [ "type", "version" ], "title": "A content object.", "type": "object" }, "___image_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds attributes of an ANS image component. In the Arc ecosystem, these are stored in Anglerfish.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "address": { "$ref": "#/definitions/___traits_trait_address_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "alt_text": { "$ref": "#/definitions/___traits_trait_alt_text_json" }, "canonical_url": { "$ref": "#/definitions/___traits_trait_canonical_url_json" }, "caption": { "description": "Caption for the image.", "type": "string" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "comments": { "$ref": "#/definitions/___traits_trait_comments_json" }, "content_restrictions": { "$ref": "#/definitions/___traits_trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/___traits_trait_contributors_json" }, "copyright": { "$ref": "#/definitions/___traits_trait_copyright_json" }, "created_date": { "$ref": "#/definitions/___traits_trait_created_date_json" }, "credits": { "$ref": "#/definitions/___traits_trait_credits_json" }, "description": { "$ref": "#/definitions/___traits_trait_description_json" }, "display_date": { "$ref": "#/definitions/___traits_trait_display_date_json" }, "distributor": { "$ref": "#/definitions/___traits_trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/___traits_trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/___traits_trait_first_publish_date_json" }, "focal_point": { "$ref": "#/definitions/___traits_trait_focal_point_json" }, "geo": { "$ref": "#/definitions/___traits_trait_geo_json" }, "headlines": { "$ref": "#/definitions/___traits_trait_headlines_json" }, "height": { "description": "Height for the image.", "type": "integer" }, "image_type": { "$ref": "#/definitions/___traits_trait_image_type_json" }, "label": { "$ref": "#/definitions/___traits_trait_label_json" }, "language": { "$ref": "#/definitions/___traits_trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/___traits_trait_last_updated_date_json" }, "licensable": { "description": "True if the image can legally be licensed to others.", "type": "boolean" }, "location": { "$ref": "#/definitions/___traits_trait_location_json" }, "owner": { "$ref": "#/definitions/___traits_trait_owner_json" }, "pitches": { "$ref": "#/definitions/___traits_trait_pitches_json" }, "planning": { "$ref": "#/definitions/___traits_trait_planning_json" }, "promo_items": { "$ref": "#/definitions/___traits_trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/___traits_trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/___traits_trait_related_content_json" }, "revision": { "$ref": "#/definitions/___traits_trait_revision_json" }, "short_url": { "$ref": "#/definitions/___traits_trait_short_url_json" }, "slug": { "$ref": "#/definitions/___traits_trait_slug_json" }, "source": { "$ref": "#/definitions/___traits_trait_source_json" }, "status": { "$ref": "#/definitions/___traits_trait_status_json" }, "subheadlines": { "$ref": "#/definitions/___traits_trait_subheadlines_json" }, "subtitle": { "description": "Subtitle for the image.", "type": "string" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "syndication": { "$ref": "#/definitions/___traits_trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/___traits_trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/___traits_trait_tracking_json" }, "type": { "enum": [ "image" ], "type": "string" }, "url": { "description": "URL for the image.", "type": "string" }, "vanity_credits": { "$ref": "#/definitions/___traits_trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/___traits_trait_version_json" }, "width": { "description": "Width for the image.", "type": "integer" }, "workflow": { "$ref": "#/definitions/___traits_trait_workflow_json" } }, "required": [ "type", "version" ], "title": "An image.", "type": "object" }, "___redirect_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A redirect to another story.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "canonical_url": { "$ref": "#/definitions/___traits_trait_canonical_url_json" }, "owner": { "$ref": "#/definitions/___traits_trait_owner_json" }, "redirect_url": { "$ref": "#/definitions/___traits_trait_canonical_url_json" }, "revision": { "$ref": "#/definitions/___traits_trait_revision_json" }, "type": { "enum": [ "redirect" ], "type": "string" }, "version": { "$ref": "#/definitions/___traits_trait_version_json" } }, "required": [ "type", "version", "canonical_url", "redirect_url" ], "title": "A redirect object.", "type": "object" }, "___story_elements_custom_embed_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A custom embed element. Can be used to reference content from external providers about which little is known.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "embed": { "additionalProperties": false, "description": "The embed data.", "properties": { "config": { "additionalProperties": false, "description": "Arbitrary configuration data generated by a plugin. Users are responsible for maintaining schema.", "patternProperties": { "^([a-zA-Z0-9_])*$": {} }, "properties": { "referent": { "not": {} }, "type": { "not": {} }, "version": { "not": {} } }, "title": "Embed Configuration", "type": "object" }, "id": { "description": "Foreign ID of embedded item.", "maxLength": 128, "minLength": 1, "title": "Embed ID", "type": "string" }, "url": { "description": "Provider URL for this embed item. When concatenated with Embed ID, should produce a URL that returns json metadata about the embedded content.", "maxLength": 512, "minLength": 1, "title": "Embed Provider URL", "type": "string" } }, "required": [ "id", "url" ], "title": "Embed", "type": "object" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "custom_embed" ], "type": "string" } }, "required": [ "type", "embed" ], "title": "Custom Embed", "type": "object" }, "___story_elements_raw_html_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "An html content element", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "content": { "description": "Any arbitrary chunk of HTML.", "type": "string" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "raw_html" ] } }, "required": [ "type", "content" ], "type": "object" }, "___traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "___traits_trait_address_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "dependencies": { "extended_address": [ "street_address" ], "post_office_box": [ "street_address" ] }, "description": "An Address following the convention of http://microformats.org/wiki/hcard", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "country_name": { "type": "string" }, "extended_address": { "type": "string" }, "locality": { "type": "string" }, "post_office_box": { "type": "string" }, "postal_code": { "type": "string" }, "region": { "type": "string" }, "street_address": { "type": "string" } }, "title": "Address", "type": "object" }, "___traits_trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "___traits_trait_alt_text_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The direct ANS equivalent of the HTML 'alt' attribute. A description of the contents of an image for improved accessibility.", "title": "Alt Text", "type": "string" }, "___traits_trait_canonical_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.", "title": "Canonical URL", "type": "string" }, "___traits_trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "___traits_trait_comments_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Comment configuration data", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_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" }, "___traits_trait_content_aliases_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An list of alternate names that this content can be fetched by instead of id.", "items": { "pattern": "^([a-z])([a-z0-9-])*$", "type": "string" }, "title": "Aliases trait", "type": "array" }, "___traits_trait_content_restrictions_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Trait that applies contains the content restrictions of an ANS object.", "properties": { "content_code": { "description": "The content restriction code/level/flag associated with the ANS object", "type": "string" }, "embargo": { "additionalProperties": false, "description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.", "properties": { "active": { "description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.", "type": "boolean" }, "description": { "description": "An optional description for the embargo.", "type": "string" }, "end_time": { "_format": "date-time", "description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.", "type": "string" } }, "required": [ "active" ], "type": "object" }, "geo": { "additionalProperties": false, "description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.", "properties": { "restrictions": { "description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.", "items": { "additionalProperties": false, "description": "An object specifying the _id of the restriction this content should be associated with.", "properties": { "restriction_id": { "description": "The _id of the restriction that is stored in Global Settings.", "type": "string" } }, "required": [ "restriction_id" ], "type": "object" }, "maxItems": 1, "minItems": 1, "type": "array" } }, "required": [ "restrictions" ], "type": "object" } }, "title": "Content Restrictions", "type": "object" }, "___traits_trait_contributors_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that holds information on who created and contributed to a given document in Arc.", "properties": { "created_by": { "description": "The Creator of the Document.", "properties": { "display_name": { "description": "The display name of the Arc user who created the Document", "type": "string" }, "user_id": { "description": "The unique ID of the Arc user who created the Document", "type": "string" } }, "type": "object" } }, "title": "Contributors", "type": "object" }, "___traits_trait_copyright_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A copyright notice for the legal owner of this content. E.g., '\u00a9 1996-2018 The Washington Post.' Format may vary between organizations.", "title": "Copyright information", "type": "string" }, "___traits_trait_created_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was originally created (RFC3339-formatted). In the Arc ecosystem, this will be automatically generated for stories in the Story API.", "title": "Created Date", "type": "string" }, "___traits_trait_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A list of people and groups attributed to this content, keyed by type of contribution. In the Arc ecosystem, references in this list will be denormalized into author objects from the arc-author-service.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Credit trait", "type": "object" }, "___traits_trait_description_json": { "$ref": "#/definitions/dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The descriptions, or blurbs, for the content.", "title": "Description", "type": "object" }, "___traits_trait_display_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "The RFC3339-formatted dated time of the most recent date the story was (re)displayed on a public site.", "title": "Display_Date", "type": "string" }, "___traits_trait_distributor_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Information about a third party that provided this content from outside this document's hosted organization.", "oneOf": [ { "additionalProperties": false, "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "category": { "description": "The machine-readable category of how this content was produced. Use 'staff' if this content was produced by an employee of the organization who owns this document repository. (Multisite note: content produced within a single *organization*, but shared across multiple *websites* should still be considered 'staff.') Use \u2018wires\u2019 if this content was produced for another organization and shared with the one who owns this document repository. Use 'freelance' if this content was produced by an individual on behalf of the organization who owns this document repository. Use 'stock' if this content is stock media distributed directly from a stock media provider. Use 'handout' if this is content provided from a source for an article (usually promotional media distributed directly from a company). Use 'other' for all other cases.", "enum": [ "staff", "wires", "freelance", "stock", "handout", "other" ], "type": "string" }, "mode": { "enum": [ "custom" ], "type": "string" }, "name": { "description": "The human-readable name of the distributor of this content. E.g., Reuters.", "type": "string" }, "subcategory": { "description": "The machine-readable subcategory of how this content was produced. E.g., 'freelance - signed'. May vary between organizations.", "type": "string" } } }, { "additionalProperties": false, "properties": { "mode": { "enum": [ "reference" ], "type": "string" }, "reference_id": { "description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.", "type": "string" } }, "required": [ "reference_id", "mode" ] } ], "title": "Distributor", "type": "object" }, "___traits_trait_editor_note_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Additional information to be displayed near the content from the editor.", "title": "Editor_Note", "type": "string" }, "___traits_trait_first_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was first published.", "title": "First Publish Date", "type": "string" }, "___traits_trait_focal_point_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.", "properties": { "x": { "description": "The coordinate point on the horizontal axis", "type": "number" }, "y": { "description": "The coordinate point on the vertical axis", "type": "number" } }, "required": [ "x", "y" ], "title": "Focal Point", "type": "object" }, "___traits_trait_geo_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Latitidue and Longitude of the content", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "title": "Geo", "type": "object" }, "___traits_trait_headlines_json": { "$ref": "#/definitions/dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The headline(s) or title for this content. The 'basic' key is required.", "title": "Headlines", "type": "object" }, "___traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "___traits_trait_image_type_json": { "$schema": "http://json-schema.org/draft-04/schema#", "category": { "description": "The machine-readable enumeration of valid image types.", "enum": [ "photograph", "graphic", "illustration", "thumbnail" ], "type": "string" }, "description": "A more specific category for an image.", "title": "Image Type", "type": "string" }, "___traits_trait_label_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "What the Washington Post calls a Kicker", "patternProperties": { "^[a-zA-Z0-9_]*$": { "additionalProperties": false, "description": "Additional user-defined keyed label objects.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "properties": { "basic": { "additionalProperties": false, "description": "The default label object for this piece of content.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "title": "Label", "type": "object" }, "___traits_trait_last_updated_date_json": { "$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" }, "___traits_trait_locale_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ", "title": "Locale", "type": "string" }, "___traits_trait_location_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A description of the location, useful if a full address or lat/long specification is overkill.", "title": "Location related trait", "type": "string" }, "___traits_trait_owner_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)", "type": "string" }, "sponsored": { "description": "True if this content is advertorial or native advertising.", "type": "boolean" } }, "title": "Owner information ", "type": "object" }, "___traits_trait_pitches_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a story's pitches. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "platform": { "description": "A list of the story's pitches to a platform.", "items": { "$ref": "#/definitions/___traits_trait_platform_pitch_json" }, "type": "array" }, "publication": { "description": "A list of the story's pitches to a publication.", "items": { "$ref": "#/definitions/___traits_trait_publication_pitch_json" }, "type": "array" } }, "title": "Pitches", "type": "object" }, "___traits_trait_planning_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "budget_line": { "description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.", "title": "Budget Line", "type": "string" }, "deadline_miss": { "description": "The delta between the story's planned publish date and actual first publish time, in minutes.", "type": "integer" }, "internal_note": { "description": "This note is used for shared communication inside the newsroom.", "title": "Internal Note", "type": "string" }, "scheduling": { "additionalProperties": false, "description": "Scheduling information.", "properties": { "planned_publish_date": { "_format": "date-time", "description": "When the content is planned to be published.", "type": "string" }, "scheduled_publish_date": { "_format": "date-time", "description": "When the content was first published.", "type": "string" }, "will_have_gallery": { "description": "Will this content have galleries?", "type": "boolean" }, "will_have_graphic": { "description": "Will this content have graphics?", "type": "boolean" }, "will_have_image": { "description": "Will this content have images?", "type": "boolean" }, "will_have_video": { "description": "Will this content have videos?", "type": "boolean" } }, "type": "object" }, "story_length": { "additionalProperties": false, "description": "Story length information.", "properties": { "character_count_actual": { "description": "The current number of characters in the story.", "type": "integer" }, "character_count_planned": { "description": "The anticipated number of characters in the story.", "type": "integer" }, "character_encoding": { "description": "The encoding used for counting characters in the story.", "type": "string" }, "inch_count_actual": { "description": "The current length of the story in inches.", "type": "integer" }, "inch_count_planned": { "description": "The anticipated length of the story in inches.", "type": "integer" }, "line_count_actual": { "description": "The current length of the story in lines.", "type": "integer" }, "line_count_planned": { "description": "The anticipated length of the story in lines.", "type": "integer" }, "word_count_actual": { "description": "Current number of words.", "type": "integer" }, "word_count_planned": { "description": "The anticipated number of words in the story.", "type": "integer" } }, "type": "object" }, "websked_sort_date": { "_format": "date-time", "description": "Date to be used for chronological sorting in WebSked.", "type": "string" } }, "title": "Scheduling information", "type": "object" }, "___traits_trait_platform_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Platform pitch event", "type": "object" }, "___traits_trait_platform_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/___traits_trait_platform_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/___traits_trait_platform_pitch_event_json" }, "platform_path": { "description": "The path of the platform that this pitch targets.", "type": "string" } }, "title": "Platform pitch", "type": "object" }, "___traits_trait_promo_items_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of promotional content to use when highlighting the story. In the Arc ecosystem, references in these lists will be denormalized.", "patternProperties": { ".*": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "properties": { "basic": { "oneOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/reference_json" }, { "$ref": "#/definitions/___story_elements_raw_html_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ] } }, "title": "Promo Items", "type": "object" }, "___traits_trait_publication_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "edition_id": { "description": "The ID of the publication edition that this pitch targets.", "type": "string" }, "edition_time": { "_format": "date-time", "description": "The time of the publication edition that this pitch targets.", "type": "string" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Publication pitch event", "type": "object" }, "___traits_trait_publication_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/___traits_trait_publication_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/___traits_trait_publication_pitch_event_json" }, "publication_id": { "description": "The ID of the publication that this pitch targets.", "type": "string" } }, "title": "Publication pitch", "type": "object" }, "___traits_trait_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was published.", "title": "Publish_Date", "type": "string" }, "___traits_trait_related_content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of content items or references this story is related to, arbitrarily keyed. In the Arc ecosystem, references in this object will be denormalized into the fully-inflated content objects they represent.", "patternProperties": { ".*": { "items": { "anyOf": [ { "$ref": "#/definitions/___content_json" }, { "$ref": "#/definitions/reference_json" }, { "$ref": "#/definitions/___story_elements_custom_embed_json" } ], "type": "object" }, "type": "array" } }, "properties": { "redirect": { "description": "An attached redirect. In Arc, when this content item is fetched by url, content api will instead return this redirect object with appropriate headers. In all other cases, this content should be treated normally.", "items": { "$ref": "#/definitions/___redirect_json" }, "maxItems": 1, "type": "array" } }, "title": "Related_Content", "type": "object" }, "___traits_trait_revision_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "branch": { "description": "The name of the branch this revision was created on.", "type": "string" }, "editions": { "description": "A list of identifiers of editions that point to this revision.", "items": { "type": "string" }, "type": "array" }, "parent_id": { "description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.", "type": "string" }, "published": { "description": "Whether or not this revision's parent story is published, in any form or place", "type": "boolean" }, "revision_id": { "description": "The unique id of this revision.", "type": "string" }, "user_id": { "description": "The unique user id of the person who created this revision.", "type": "string" } }, "title": "Revision", "type": "object" }, "___traits_trait_short_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A url-shortened version of the canonical url.", "title": "Short_Url", "type": "string" }, "___traits_trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "___traits_trait_social_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Links to various social media", "items": { "additionalProperties": {}, "properties": { "site": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "title": "Social Links", "type": "array" }, "___traits_trait_source_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Information about the original source and/or owner of this content", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "edit_url": { "description": "A link to edit this content in its source CMS.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)", "type": "string" }, "source_id": { "description": "The id of this content in a foreign CMS.", "type": "string" }, "source_type": { "description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)", "type": "string" }, "system": { "description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.", "type": "string" } }, "title": "Source", "type": "object" }, "___traits_trait_status_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Optional field to story story workflow related status (e.g. published/embargoed/etc)", "title": "Status", "type": "string" }, "___traits_trait_subheadlines_json": { "$ref": "#/definitions/dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The sub-headline(s) for the content.", "title": "Sub-Headlines", "type": "object" }, "___traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" }, "___traits_trait_syndication_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Key-boolean pair of syndication services where this article may go", "patternProperties": { ".*": { "type": "boolean" } }, "properties": { "external_distribution": { "description": "Necessary for fulfilling contractual agreements with third party clients", "type": "boolean" }, "search": { "description": "Necessary so that we can filter out all articles that editorial has deemed should not be discoverable via search", "type": "boolean" } }, "title": "Syndication", "type": "object" }, "___traits_trait_taxonomy_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds the collection of tags, categories, keywords, etc that describe content.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "associated_tasks": { "description": "A list of WebSked task IDs that this content was created or curated to satisfy.", "items": { "pattern": "^[0-9a-fA-F]{24}$", "type": "string" }, "maxItems": 200, "type": "array" }, "auxiliaries": { "description": "A list of auxiliaries. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/auxiliary_json" }, "type": "array" }, "keywords": { "description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/keyword_json" }, "type": "array" }, "named_entities": { "description": "A list of named entities. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/named_entity_json" }, "type": "array" }, "primary_section": { "description": "A primary section object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/section_json" }, { "allOf": [ { "$ref": "#/definitions/reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "primary_site": { "description": "Deprecated in 0.10.9. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/site_json" }, { "allOf": [ { "$ref": "#/definitions/reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "sections": { "description": "A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/section_json" }, { "allOf": [ { "$ref": "#/definitions/reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "type": "array" }, "seo_keywords": { "description": "A list of user-editable manually entered keywords for search purposes. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "sites": { "description": "Deprecated in 0.10.9. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/site_json" }, { "allOf": [ { "$ref": "#/definitions/reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "type": "array" }, "stock_symbols": { "description": "A list of stock symbols of companies related to this content. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "tags": { "items": { "$ref": "#/definitions/tag_json" }, "type": "array" }, "topics": { "description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/topic_json" }, "type": "array" } }, "title": "Taxonomy", "type": "object" }, "___traits_trait_tracking_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Tracking information, probably implementation-dependent", "title": "Tracking", "type": "object" }, "___traits_trait_vanity_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Similar to the credits trait, but to be used only when ANS is being directly rendered to readers natively. For legal and technical reasons, the `credits` trait is preferred when converting ANS into feeds or other distribution formats. However, when present, `vanity_credits` allows more sophisticated credits presentation to override the default without losing that original data.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Vanity Credits trait", "type": "object" }, "___traits_trait_version_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.", "enum": [ "0.10.9" ], "title": "Describes the ANS version of this object", "type": "string" }, "___traits_trait_website_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.", "title": "Website", "type": "string" }, "___traits_trait_workflow_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies workflow information to a document or resource. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "note": { "description": "This note will be used for any task automatically generated via WebSked task triggers.", "type": "string" }, "status_code": { "description": "Code indicating the story's current workflow status. This number should match the values configured in WebSked.", "minimum": 1, "type": "integer" } }, "title": "Workflow information", "type": "object" }, "auxiliary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a auxiliary used in targeting a piece of content.", "properties": { "_id": { "description": "The unique identifier for this auxiliary.", "type": "string" }, "name": { "description": "The general name for this auxiliary.", "type": "string" }, "uid": { "description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "uid" ], "title": "Auxiliary", "type": "object" }, "dictionary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "patternProperties": { ".*": { "type": "string" } }, "properties": { "basic": { "type": "string" } }, "required": [ "basic" ] }, "keyword_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "frequency": { "description": "An optional count of the frequency of the keyword as it appears in the content it describes", "type": "integer" }, "keyword": { "description": "The keyword used to describe a piece of content", "type": "string" }, "score": { "description": "An arbitrary weighting to give the keyword", "type": "number" }, "tag": { "description": "The Part of Speech tag for this keyword.", "type": "string" } }, "required": [ "keyword", "score" ], "title": "Keyword", "type": "object" }, "named_entity_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.", "properties": { "_id": { "description": "A unique identifier for the concept of the named entity.", "type": "string" }, "name": { "description": "The actual string of text that was identified as a named entity.", "type": "string" }, "score": { "decription": "An optional relevancy for this named entitiy.", "type": "number" }, "type": { "description": "A description of what the named entity is. E.g. 'organization', 'person', or 'location'.", "type": "string" } }, "required": [ "_id", "name", "type" ], "title": "Named Entity", "type": "object" }, "reference_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "This represents a reference to external content that should be denormalized", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "referent": { "additionalProperties": false, "dependencies": { "website": { "properties": { "type": { "enum": [ "section" ], "type": "string" } } } }, "properties": { "id": { "description": "The id passed to the provider to retrieve an ANS document", "type": "string" }, "provider": { "description": "A URL that can resolve the id into an ANS element", "type": "string" }, "referent_properties": { "additionalProperties": {}, "description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object", "type": "object" }, "service": { "description": "The type of interaction the provider expects. E.g., 'oembed'", "type": "string" }, "type": { "description": "The ANS type that the provider should return.", "type": "string" }, "website": { "description": "The website which the referenced id belongs to. Currently supported only for sections.", "type": "string" } }, "required": [ "id" ], "type": "object" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element", "type": "object" }, "section_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "_website": { "$ref": "#/definitions/___traits_trait_website_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent": { "description": "The id of this section's parent section in various commonly-used hierarchies, where available.", "properties": { "default": { "type": "string" } }, "type": "object" }, "parent_id": { "description": "The id of this section's parent section in the default hierarchy, if any.", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "section" ] }, "version": { "$ref": "#/definitions/___traits_trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Section", "type": "object" }, "site_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent_id": { "description": "The id of this section's parent site, if any", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "site" ] }, "version": { "$ref": "#/definitions/___traits_trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Site", "type": "object" }, "tag_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/___traits_trait_slug_json" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "text": { "description": "The text of the tag as displayed to users.", "type": "string" }, "type": { "enum": [ "tag" ] } }, "required": [ "text" ], "title": "Tag", "type": "object" }, "topic_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a topic used in describing a piece of content.", "properties": { "_id": { "description": "The unique identifier for this topic.", "type": "string" }, "name": { "description": "The general name for this topic.", "type": "string" }, "score": { "description": "An arbitrary weighting to give the topic", "type": "number" }, "uid": { "description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "score", "uid" ], "title": "Topic", "type": "object" } }, "description": "Models attribution to an individual or group for contribution towards some content item. In the Arc ecosystem, these are stored in the arc-author-service.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "affiliation": { "description": "The name of an organization the author is affiliated with. E.g., The Washington Post, or George Mason University.", "title": "Affiliation", "type": "string" }, "awards": { "description": "A list of awards the author has received.", "items": { "additionalProperties": false, "properties": { "award_name": { "description": "The name of the award.", "title": "Award Name", "type": "string" } }, "type": "object" }, "title": "Awards", "type": "array" }, "bio": { "description": "A one or two sentence description of the author.", "title": "Short Biography", "type": "string" }, "books": { "description": "A list of books written by the author.", "items": { "additionalProperties": false, "properties": { "book_title": { "description": "The book title.", "title": "Title", "type": "string" }, "book_url": { "description": "A link to a page to purchase or learn more about the book.", "title": "URL", "type": "string" } }, "title": "Book", "type": "object" }, "title": "Books", "type": "array" }, "byline": { "description": "The public-facing name, or nom-de-plume, name of the author.", "title": "Byline", "type": "string" }, "contributor": { "description": "If true, this author is an external contributor to the publication.", "title": "Contributor", "type": "boolean" }, "division": { "description": "The desk or group that this author normally reports to. E.g., 'Politics' or 'Sports.'", "title": "Division", "type": "string" }, "education": { "description": "A list of schools that this author has graduated from.", "items": { "additionalProperties": false, "properties": { "school_name": { "description": "The name of the school.", "title": "School Name", "type": "string" } }, "title": "School", "type": "object" }, "title": "Education", "type": "array" }, "email": { "_format": "email", "description": "The professional email address of this author.", "title": "E-mail", "type": "string" }, "expertise": { "description": "A comma-delimited list of subjects the author in which the author has expertise.", "title": "Expertise", "type": "string" }, "first_name": { "description": "The real first name of a human author.", "title": "First Name", "type": "string" }, "image": { "$ref": "#/definitions/___image_json" }, "languages": { "description": "A description of list of languages that the author is somewhat fluent in, excluding the native language of the parent publication, and identified in the language of the parent publication. E.g., Russian, Japanese, Greek.", "title": "Languages", "type": "string" }, "last_name": { "description": "The real last name of a human author.", "title": "Last Name", "type": "string" }, "location": { "description": "The city or locality that the author resides in or is primarily associated with.", "title": "Location", "type": "string" }, "long_bio": { "description": "The full biography of the author.", "title": "Long Biography", "type": "string" }, "middle_name": { "description": "The real middle name of a human author.", "title": "Middle Name", "type": "string" }, "name": { "description": "The full human name of contributor. See also byline, first_name, last_name, middle_name, suffix.", "title": "Name", "type": "string" }, "org": { "description": "Deprecated. In ANS 0.5.8 and prior versions, this field is populated with the 'location' field from Arc Author Service. New implementations should use the 'location' and 'affiliation' field. Content should be identical to 'location.'", "title": "Org", "type": "string" }, "role": { "description": "The organizational role or title of this author.", "title": "Role", "type": "string" }, "slug": { "$ref": "#/definitions/___traits_trait_slug_json" }, "socialLinks": { "$ref": "#/definitions/___traits_trait_social_json", "description": "Deperecated. Included for backwards-compatibility. Content should be identical to social_links." }, "social_links": { "$ref": "#/definitions/___traits_trait_social_json" }, "suffix": { "description": "The real suffix of a human author.", "title": "Suffix", "type": "string" }, "type": { "description": "Indicates that this is an author", "enum": [ "author" ], "type": "string" }, "url": { "description": "A link to an author's landing page on the website, or a personal website.", "type": "string" }, "version": { "$ref": "#/definitions/___traits_trait_version_json" } }, "required": [ "type", "name" ], "title": "An author of a piece of content.", "type": "object" }
wp_105_Normalized
{ "additionalProperties": false, "description": "Schema for a Mailchimp campaign sending status event", "properties": { "data": { "additionalProperties": false, "properties": { "id": { "type": "string" }, "list_id": { "type": "string" }, "reason": { "type": [ "string", "null" ] }, "status": { "type": "string" }, "subject": { "type": "string" } }, "type": "object" }, "fired_at": { "_format": "date-time", "type": "string" }, "type": { "type": "string" } }, "self": { "format": "jsonschema", "name": "campaign_sending_status", "vendor": "com.mailchimp", "version": "1-0-0" }, "type": "object" }
sp_108_Normalized
{ "oneOf": [ { "additionalProperties": false, "properties": { "pip": { "description": "An array of strings representing of the requirements file to use for installing the subcommand for Pip. Each item is interpreted as a line in the requirements file.", "items": { "type": "string" }, "title": "Embedded Requirements File", "type": "array" } }, "required": [ "pip" ], "type": "object" } ] }
o90605
{ "properties": { "index": { "default": 1, "type": "number" }, "name": { "type": "string" } }, "required": [ "name" ], "title": "My Full Schematics Schema", "type": "object" }
o64893
{ "properties": { "event_date": { "description": "The date of the event", "format": "date", "type": "string" }, "event_description": { "description": "The description of the event", "type": "string" }, "event_location": { "description": "The location of the event", "type": "string" }, "event_time": { "description": "The time of the event", "format": "time", "type": "string" }, "event_title": { "description": "The title of the event", "type": "string" } }, "required": [ "event_title", "event_date", "event_time" ], "type": "object" }
create_calendar_event_91d51e42
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityStartedEvent", "extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event", "properties": { "meta": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityStartedEventMeta", "javaInterfaces": [ "com.ericsson.eiffel.semantics.events.Meta" ], "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelActivityStartedEvent" ] }, "version": { "type": "string", "enum": [ "1.1.0" ], "default": "1.1.0" }, "time": { "type": "integer", "format": "utc-millisec" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Source", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Serializer", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": [ "groupId", "artifactId", "version" ], "additionalProperties": false }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Security", "properties": { "sdm": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Sdm", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelActivityStartedEventData", "properties": { "executionUri": { "type": "string" }, "liveLogs": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.LiveLog", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.CustomData", "properties": { "key": { "type": "string" }, "value": { "anyOf": [ { "type": "object" }, { "type": "string" }, { "type": "array" }, { "type": "number" } ] } }, "required": [ "key", "value" ], "additionalProperties": false } } }, "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.Link", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o89719
{ "$schema": "http://json-schema.org/draft-07/schema#", "version": "1.0.1", "title": "SpellMetaArray", "type": "object", "definitions": { "spellMeta": { "properties": { "name": { "type": "string" }, "source": { "type": "string" }, "data": { "description": "Based on the Roll20 data, available e.g. here: https://app.roll20.net/compendium/dnd5e/Spells:Fireball.json", "type": "object", "properties": { "Save": { "type": "string" }, "Damage": { "type": "string" }, "Damage Type": { "type": "string" }, "Damage Progression": { "type": "string" }, "Target": { "type": "string" }, "Healing": { "type": "string" }, "Spell Attack": { "type": "string" }, "Save Success": { "type": "string" }, "Higher Spell Slot Die": { "type": "string" }, "Higher Spell Slot Dice": { "type": "string" }, "Add Casting Modifier": { "type": "string" }, "Secondary Damage": { "type": "string" }, "Secondary Damage Type": { "type": "string" }, "Higher Level Healing": { "type": "string" }, "Higher Spell Slot Bonus": { "type": "string" }, "Secondary Higher Spell Slot Die": { "type": "string" }, "Secondary Higher Spell Slot Dice": { "type": "string" }, "Secondary Damage Progression": { "type": "string" }, "Secondary Add Casting Modifier": { "type": "string" } }, "additionalProperties": false }, "shapedData": { "type": "object" } }, "required": [ "name", "source", "data" ], "additionalProperties": false } }, "properties": { "spell": { "type": "array", "items": { "$ref": "#/definitions/spellMeta" } } } }
o15210
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/document-block/1-0-1.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "css_class": { "type": "string", "pattern": "^[\\w\\s-]+$", "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pbj": { "type": "string", "rule": "single" } }, "updated_date": { "type": "string", "format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "type": "date-time", "rule": "single" } }, "aside": { "type": "boolean", "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "type": "boolean", "rule": "single" } }, "node_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "description": "An optional override for the title of the node.", "pbj": { "type": "string", "rule": "single" } }, "launch_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "aspect_ratio": { "type": "string", "enum": [ "unknown", "auto", "1by1", "2by3", "3by2", "3by4", "4by3", "4by5", "5by4", "9by16", "16by9", "original", "custom" ], "pbj": { "type": "string-enum", "rule": "single" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "An optional reference to an image asset to use as the poster.", "pbj": { "type": "identifier", "rule": "single" } }, "fallback_src_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "For imported document blocks it may be necessary to store the old URL.", "pbj": { "type": "text", "rule": "single", "format": "url" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82649
{ "description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. Deprecated: use AllowedHostPath from policy API Group instead.", "properties": { "pathPrefix": { "description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`", "type": [ "string", "null" ] }, "readOnly": { "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_13_Normalized
{ "properties": { "point1": { "description": "The coordinates of the first point", "properties": { "latitude": { "description": "The latitude of the first point", "type": "number" }, "longitude": { "description": "The longitude of the first point", "type": "number" } }, "type": "object" }, "point2": { "description": "The coordinates of the second point", "properties": { "latitude": { "description": "The latitude of the second point", "type": "number" }, "longitude": { "description": "The longitude of the second point", "type": "number" } }, "type": "object" } }, "required": [ "point1", "point2" ], "type": "object" }
calculate_distance_93a847ba
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_AggregationRule": { "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { "clusterRoleSelectors": { "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_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": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.20.", "properties": { "aggregationRule": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_AggregationRule", "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." }, "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" ] }, "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": [ "ClusterRole" ], "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." }, "rules": { "description": "Rules holds all the PolicyRules for this ClusterRole", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_PolicyRule" }, "type": [ "array", "null" ] } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRole", "version": "v1beta1" } ] }
kb_86_Normalized
{ "additionalProperties": false, "properties": { "createdAt": { "additionalProperties": false, "properties": { "since": { "format": "date-time", "type": "string" }, "until": { "format": "date-time", "type": "string" } }, "type": "object" }, "level": { "additionalProperties": false, "properties": { "comparison": { "default": "gte", "enum": [ "eq", "gt", "lt", "gte", "lte" ], "type": "string" }, "value": { "default": "info", "enum": [ "debug", "info", "warn", "error", "critical" ], "type": "string" } }, "type": "object" }, "source": { "additionalProperties": false, "properties": { "options": { "type": "string" }, "pattern": { "type": "string" } }, "required": [ "pattern" ], "type": "object" }, "time": { "additionalProperties": false, "properties": { "since": { "format": "date-time", "type": "string" }, "until": { "format": "date-time", "type": "string" } }, "type": "object" } }, "title": "LogsRequest", "type": "object" }
o10079
{ "properties": { "subjects": { "items": { "properties": { "credit_hours": { "description": "The credit hours for the subject", "type": "integer" }, "grade": { "description": "The grade received in the subject", "enum": [ "A", "B", "C", "D", "F" ], "type": "string" }, "name": { "description": "The name of the subject", "type": "string" } }, "required": [ "name", "grade", "credit_hours" ], "type": "object" }, "type": "array" } }, "required": [ "subjects" ], "type": "object" }
calculate_gpa_2ae944c7
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=pattern` pair. The profile is auto-activated if an Environment Variable `key` matches the pattern. If the pattern starts with `!`, activation happens if the remaining pattern is _not_ matched. The pattern matches if the Environment Variable value is exactly `pattern`, or the regex `pattern` is found in it. An empty `pattern` (e.g. `env: \"key=\"`) always only matches if the Environment Variable is undefined or empty.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=pattern</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> matches the pattern. If the pattern starts with <code>!</code>, activation happens if the remaining pattern is <em>not</em> matched. The pattern matches if the Environment Variable value is exactly <code>pattern</code>, or the regex <code>pattern</code> is found in it. An empty <code>pattern</code> (e.g. <code>env: &quot;key=&quot;</code>) always only matches if the Environment Variable is undefined or empty." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jib" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jib": { "$ref": "#/definitions/JibArtifact", "description": "builds images using the [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).", "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven or Gradle</a>." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "kaniko" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "kaniko": { "$ref": "#/definitions/KanikoArtifact", "description": "builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "buildpack" ], "properties": { "buildpack": { "$ref": "#/definitions/BuildpackArtifact", "description": "builds images using [Cloud Native Buildpacks](https://buildpacks.io/).", "x-intellij-html-description": "builds images using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "custom" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "custom": { "$ref": "#/definitions/CustomArtifact", "description": "*beta* builds images using a custom build script written by the user.", "x-intellij-html-description": "<em>beta</em> builds images using a custom build script written by the user." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "BazelArtifact": { "additionalProperties": false, "description": "describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "cluster" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "cluster": { "$ref": "#/definitions/ClusterDetails", "description": "*beta* describes how to do an on-cluster build.", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "BuildpackArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built using [Cloud Native Buildpacks](https://buildpacks.io/). It can be used to build images out of project's sources without any additional configuration.", "preferredOrder": [ "builder", "runImage", "env", "buildpacks", "dependencies" ], "properties": { "builder": { "description": "builder image used.", "type": "string", "x-intellij-html-description": "builder image used." }, "buildpacks": { "default": "[]", "description": "a list of strings, where each string is a specific buildpack to use with the builder. If you specify buildpacks the builder image automatic detection will be ignored. These buildpacks will be used to build the Image from your source code. Order matters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of strings, where each string is a specific buildpack to use with the builder. If you specify buildpacks the builder image automatic detection will be ignored. These buildpacks will be used to build the Image from your source code. Order matters." }, "dependencies": { "$ref": "#/definitions/BuildpackDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." }, "env": { "default": "[]", "description": "environment variables, in the `key=value` form, passed to the build. Values can use the go template syntax.", "examples": [ "[\"key1=value1\", \"key2=value2\", \"key3={{.ENV_VARIABLE}}\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "environment variables, in the <code>key=value</code> form, passed to the build. Values can use the go template syntax." }, "runImage": { "description": "overrides the stack's default run image.", "type": "string", "x-intellij-html-description": "overrides the stack's default run image." } }, "required": [ "builder" ], "x-intellij-html-description": "<em>alpha</em> describes an artifact built using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>. It can be used to build images out of project's sources without any additional configuration." }, "BuildpackDependencies": { "additionalProperties": false, "description": "*alpha* used to specify dependencies for an artifact built by a buildpack.", "preferredOrder": [ "paths", "ignore" ], "properties": { "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by a buildpack." }, "ClusterDetails": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build.", "preferredOrder": [ "HTTP_PROXY", "HTTPS_PROXY", "pullSecret", "pullSecretName", "pullSecretMountPath", "namespace", "timeout", "dockerConfig", "resources", "concurrency", "volumes", "randomPullSecret", "randomDockerConfigSecret" ], "properties": { "HTTPS_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "HTTP_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "concurrency": { "default": "0", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into a pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecret": { "description": "path to the Google Cloud service account secret key file.", "type": "string", "x-intellij-html-description": "path to the Google Cloud service account secret key file." }, "pullSecretMountPath": { "description": "path the pull secret will be mounted at within the running container.", "type": "string", "x-intellij-html-description": "path the pull secret will be mounted at within the running container." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling base images and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling base images and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key <code>kaniko-secret</code>." }, "randomDockerConfigSecret": { "default": "false", "description": "adds a random UUID postfix to the default name of the docker secret to facilitate parallel builds, e.g. docker-cfgfd154022-c761-416f-8eb3-cf8258450b85.", "type": "boolean", "x-intellij-html-description": "adds a random UUID postfix to the default name of the docker secret to facilitate parallel builds, e.g. docker-cfgfd154022-c761-416f-8eb3-cf8258450b85." }, "randomPullSecret": { "default": "false", "description": "adds a random UUID postfix to the default name of the pull secret to facilitate parallel builds, e.g. kaniko-secretdocker-cfgfd154022-c761-416f-8eb3-cf8258450b85.", "type": "boolean", "x-intellij-html-description": "adds a random UUID postfix to the default name of the pull secret to facilitate parallel builds, e.g. kaniko-secretdocker-cfgfd154022-c761-416f-8eb3-cf8258450b85." }, "resources": { "$ref": "#/definitions/ResourceRequirements", "description": "define the resource requirements for the kaniko pod.", "x-intellij-html-description": "define the resource requirements for the kaniko pod." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." }, "volumes": { "default": "[]", "description": "defines container mounts for ConfigMap and Secret resources.", "items": {}, "type": "array", "x-intellij-html-description": "defines container mounts for ConfigMap and Secret resources." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "CustomArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.", "preferredOrder": [ "buildCommand", "dependencies" ], "properties": { "buildCommand": { "description": "command executed to build the image.", "type": "string", "x-intellij-html-description": "command executed to build the image." }, "dependencies": { "$ref": "#/definitions/CustomDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold." }, "CustomDependencies": { "additionalProperties": false, "description": "*beta* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.", "preferredOrder": [ "dockerfile", "command", "paths", "ignore" ], "properties": { "command": { "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.", "type": "string", "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array." }, "dockerfile": { "$ref": "#/definitions/DockerfileDependency", "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.", "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies." }, "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>beta</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "additionalProperties": false, "description": "contains all the configuration needed by the deploy steps.", "preferredOrder": [ "helm", "kubectl", "kustomize", "statusCheckDeadlineSeconds", "kubeContext" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } }, "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "network", "cacheFrom", "noCache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "network": { "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.", "enum": [ "host", "bridge", "none" ], "type": "string", "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container." }, "noCache": { "default": "false", "description": "used to pass in --no-cache to docker build to prevent caching.", "type": "boolean", "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.", "type": "string", "x-intellij-html-description": "Kubernetes secret that contains the <code>config.json</code> Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "DockerfileDependency": { "additionalProperties": false, "description": "*beta* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.", "preferredOrder": [ "path", "buildArgs" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"'{{.ENV_VARIABLE}}'\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "path": { "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." } }, "x-intellij-html-description": "<em>beta</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "GitTagger": { "additionalProperties": false, "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "preferredOrder": [ "variant" ], "properties": { "variant": { "description": "determines the behavior of the git tagger. Valid variants are `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.", "enum": [ "Tags", "CommitSha", "AbbrevCommitSha", "TreeSha", "AbbrevTreeSha" ], "type": "string", "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha. <code>TreeSha</code>: use the full tree hash of the artifact workingdir. <code>AbbrevTreeSha</code>: use the abbreviated tree hash of the artifact workingdir." } }, "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "dockerImage", "kanikoImage", "mavenImage", "gradleImage", "packImage", "concurrency" ], "properties": { "concurrency": { "default": "0", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "kanikoImage": { "default": "gcr.io/kaniko-project/executor", "description": "image that runs a Kaniko build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Kaniko build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "packImage": { "default": "gcr.io/k8s-skaffold/pack", "description": "image that runs a Cloud Native Buildpacks build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Cloud Native Buildpacks build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "additionalProperties": false, "description": "image config in the syntax of image.repository and image.tag.", "preferredOrder": [ "explicitRegistry" ], "properties": { "explicitRegistry": { "default": "false", "description": "separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.", "type": "boolean", "x-intellij-html-description": "separates <code>image.registry</code> to the image config syntax. Useful for some charts e.g. <code>postgresql</code>." } }, "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "values", "namespace", "version", "setValues", "setValueTemplates", "setFiles", "wait", "recreatePods", "skipBuildDependencies", "useHelmSecrets", "remote", "overrides", "packaged", "imageStrategy" ], "properties": { "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy." }, "remote": { "default": "false", "description": "specifies whether the chart path is remote, or exists on the host filesystem. `remote: true` implies `skipBuildDependencies: true`.", "type": "boolean", "x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem. <code>remote: true</code> implies <code>skipBuildDependencies: true</code>." }, "setFiles": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set-file</code> flag to Helm CLI and append all pairs after the flag." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped." }, "useHelmSecrets": { "default": "false", "description": "instructs skaffold to use secrets plugin on deployment.", "type": "boolean", "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment." }, "values": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs supplementing the Helm `values` file.", "type": "object", "x-intellij-html-description": "key-value pairs supplementing the Helm <code>values</code> file." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibArtifact": { "additionalProperties": false, "description": "builds images using the [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).", "preferredOrder": [ "project", "args", "type" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to the builder.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to the builder." }, "project": { "description": "selects which sub-project to build for multi-module builds.", "type": "string", "x-intellij-html-description": "selects which sub-project to build for multi-module builds." }, "type": { "description": "the Jib builder type; normally determined automatically. Valid types are `maven`: for Maven. `gradle`: for Gradle.", "enum": [ "maven", "gradle" ], "type": "string", "x-intellij-html-description": "the Jib builder type; normally determined automatically. Valid types are <code>maven</code>: for Maven. <code>gradle</code>: for Gradle." } }, "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven and Gradle</a>." }, "KanikoArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, with kaniko.", "preferredOrder": [ "flags", "dockerfile", "target", "buildArgs", "env", "initImage", "image", "cache", "reproducible", "skipTLS", "volumeMounts" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"'{{.ENV_VARIABLE}}'\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "env": { "default": "[]", "description": "environment variables passed to the kaniko pod.", "items": {}, "type": "array", "x-intellij-html-description": "environment variables passed to the kaniko pod." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "initImage": { "description": "image used to run init container which mounts kaniko context.", "type": "string", "x-intellij-html-description": "image used to run init container which mounts kaniko context." }, "reproducible": { "default": "false", "description": "used to strip timestamps out of the built image.", "type": "boolean", "x-intellij-html-description": "used to strip timestamps out of the built image." }, "skipTLS": { "default": "false", "description": "skips TLS verification when pulling and pushing the image.", "type": "boolean", "x-intellij-html-description": "skips TLS verification when pulling and pushing the image." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." }, "volumeMounts": { "default": "[]", "description": "volume mounts passed to kaniko pod.", "items": {}, "type": "array", "x-intellij-html-description": "volume mounts passed to kaniko pod." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, with kaniko." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo", "hostPath" ], "properties": { "hostPath": { "description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.", "type": "string", "x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer." }, "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete", "disableValidation" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "disableValidation": { "default": "false", "description": "passes the `--validate=false` flag to supported `kubectl` commands when enabled.", "type": "boolean", "x-intellij-html-description": "passes the <code>--validate=false</code> flag to supported <code>kubectl</code> commands when enabled." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "paths", "flags", "buildArgs" ], "properties": { "buildArgs": { "default": "[]", "description": "additional args passed to `kustomize build`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args passed to <code>kustomize build</code>." }, "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "paths": { "default": "[\".\"]", "description": "path to Kustomization files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit", "concurrency" ], "properties": { "concurrency": { "default": "1", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "Metadata": { "additionalProperties": false, "description": "holds an optional name of the project.", "preferredOrder": [ "name" ], "properties": { "name": { "description": "an identifier for the project.", "type": "string", "x-intellij-html-description": "an identifier for the project." } }, "x-intellij-html-description": "holds an optional name of the project." }, "PortForwardResource": { "additionalProperties": false, "description": "describes a resource to port forward.", "preferredOrder": [ "resourceType", "resourceName", "namespace", "port", "address", "localPort" ], "properties": { "address": { "description": "local address to bind to. Defaults to the loopback address 127.0.0.1.", "type": "string", "x-intellij-html-description": "local address to bind to. Defaults to the loopback address 127.0.0.1." }, "localPort": { "description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.", "type": "integer", "x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. <em>Optional</em>." }, "namespace": { "description": "namespace of the resource to port forward.", "type": "string", "x-intellij-html-description": "namespace of the resource to port forward." }, "port": { "description": "resource port that will be forwarded.", "type": "integer", "x-intellij-html-description": "resource port that will be forwarded." }, "resourceName": { "description": "name of the Kubernetes resource to port forward.", "type": "string", "x-intellij-html-description": "name of the Kubernetes resource to port forward." }, "resourceType": { "description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.", "type": "string", "x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: <code>Service</code>, <code>Pod</code> and Controller resource type that has a pod spec: <code>ReplicaSet</code>, <code>ReplicationController</code>, <code>Deployment</code>, <code>StatefulSet</code>, <code>DaemonSet</code>, <code>Job</code>, <code>CronJob</code>." } }, "x-intellij-html-description": "describes a resource to port forward." }, "Profile": { "additionalProperties": false, "description": "used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "build", "test", "deploy", "portForward", "patches", "activation" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "name" ], "x-intellij-html-description": "used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ResourceRequirement": { "additionalProperties": false, "description": "stores the CPU/Memory requirements for the pod.", "preferredOrder": [ "cpu", "memory", "ephemeralStorage", "resourceStorage" ], "properties": { "cpu": { "description": "the number cores to be used.", "examples": [ "2`, `2.0` or `200m" ], "type": "string", "x-intellij-html-description": "the number cores to be used." }, "ephemeralStorage": { "description": "the amount of Ephemeral storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of Ephemeral storage to allocate to the pod." }, "memory": { "description": "the amount of memory to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of memory to allocate to the pod." }, "resourceStorage": { "description": "the amount of resource storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of resource storage to allocate to the pod." } }, "x-intellij-html-description": "stores the CPU/Memory requirements for the pod." }, "ResourceRequirements": { "additionalProperties": false, "description": "describes the resource requirements for the kaniko pod.", "preferredOrder": [ "requests", "limits" ], "properties": { "limits": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod." }, "requests": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod." } }, "x-intellij-html-description": "describes the resource requirements for the kaniko pod." }, "ResourceType": { "description": "describes the Kubernetes resource types used for port forwarding.", "type": "string", "x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).", "preferredOrder": [ "apiVersion", "kind", "metadata", "build", "test", "deploy", "portForward", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "metadata": { "$ref": "#/definitions/Metadata", "description": "holds additional information about the config.", "x-intellij-html-description": "holds additional information about the config." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "apiVersion", "kind" ], "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)." }, "Sync": { "additionalProperties": false, "default": "infer: [\"**/*\"]", "description": "*beta* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files. If no files are listed, sync all the files and infer the destination.", "preferredOrder": [ "manual", "infer" ], "properties": { "infer": { "default": "[]", "description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "file patterns which may be synced into the container. The container destination is inferred by the builder. Currently only available for docker artifacts." }, "manual": { "description": "manual sync rules indicating the source and destination.", "items": { "$ref": "#/definitions/SyncRule" }, "type": "array", "x-intellij-html-description": "manual sync rules indicating the source and destination." } }, "x-intellij-html-description": "<em>beta</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files. If no files are listed, sync all the files and infer the destination." }, "SyncRule": { "additionalProperties": false, "description": "specifies which local files to sync to remote folders.", "preferredOrder": [ "src", "dest", "strip" ], "properties": { "dest": { "description": "destination path in the container where the files should be synced to.", "examples": [ "\"app/\"" ], "type": "string", "x-intellij-html-description": "destination path in the container where the files should be synced to." }, "src": { "description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.", "examples": [ "\"css/**/*.css\"" ], "type": "string", "x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by <code>/</code> on all platforms." }, "strip": { "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.", "examples": [ "\"css/\"" ], "type": "string", "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder." } }, "required": [ "src", "dest" ], "x-intellij-html-description": "specifies which local files to sync to remote folders." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6369
{ "$schema": "http://json-schema.org/draft-07/schema", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "dicom", "file" ], "type": "object", "properties": { "dicom": { "type": "object", "properties": { "type": { "enum": [ "dicom" ] } } }, "file": { "type": "object", "properties": {} }, "text": { "type": "object", "properties": { "size": { "maximum": 100000 }, "name": { "pattern": "^.*.txt$" } } } } }, "config": { "required": [ "multiple", "string", "number", "phone", "boolean", "integer", "string2" ], "type": "object", "properties": { "multiple": { "exclusiveMaximum": 100, "default": 20, "multipleOf": 10, "type": "number" }, "string": { "default": "Example", "type": "string" }, "number": { "default": 3.5, "type": "number" }, "phone": { "default": "555-5555", "pattern": "^[0-9]{3}-[0-9]{4}$", "type": "string" }, "boolean": { "default": true, "type": "boolean" }, "integer": { "default": 7, "type": "integer" }, "string2": { "default": "Example 2", "minLength": 2, "type": "string", "maxLength": 15 } } } }, "title": "Invocation manifest for Flywheel Example Gear" }
o41232
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://integracja.firefighters.ki.agh.edu.pl", "description": "RQ from firefightersPost, RS from notification center", "type": "object", "properties": { "notificationId": { "id": "http://integracja.firefighters.ki.agh.edu.pl/notificationId", "type": "string" }, "postName": { "id": "http://integracja.firefighters.ki.agh.edu.pl/postName", "type": "string" }, "actionName": { "id": "http://integracja.firefighters.ki.agh.edu.pl/actionName", "type": "string" }, "accidentType": { "id": "http://integracja.firefighters.ki.agh.edu.pl/type", "type": "string" }, "community": { "id": "http://integracja.firefighters.ki.agh.edu.pl/community", "type": "string" }, "areaSize": { "id": "http://integracja.firefighters.ki.agh.edu.pl/areaSize", "type": "string" }, "objectName": { "id": "http://integracja.firefighters.ki.agh.edu.pl/objectName", "type": "string" }, "owner": { "id": "http://integracja.firefighters.ki.agh.edu.pl/owner", "type": "string" }, "otherDamages": { "id": "http://integracja.firefighters.ki.agh.edu.pl/otherDamages", "type": "array", "items": { "id": "http://integracja.firefighters.ki.agh.edu.pl/otherDamages/0", "type": "object", "properties": { "damageName": { "id": "http://integracja.firefighters.ki.agh.edu.pl/otherDamages/0/damageName", "type": "string" } }, "additionalProperties": false }, "additionalItems": false }, "creator": { "id": "http://integracja.firefighters.ki.agh.edu.pl/creator", "type": "string" }, "usedEquipment": { "id": "http://integracja.firefighters.ki.agh.edu.pl/usedEquipment", "type": "array", "items": { "id": "http://integracja.firefighters.ki.agh.edu.pl/usedEquipment/0", "type": "object", "properties": { "name": { "id": "http://integracja.firefighters.ki.agh.edu.pl/usedEquipment/0/name", "type": "string" }, "workTimeInH": { "id": "http://integracja.firefighters.ki.agh.edu.pl/usedEquipment/0/workTimeInH", "type": "integer" }, "fuelType": { "id": "http://integracja.firefighters.ki.agh.edu.pl/usedEquipment/0/fuelType", "type": "string" } }, "additionalProperties": false }, "additionalItems": false }, "firefighters": { "id": "http://integracja.firefighters.ki.agh.edu.pl/firefighters", "type": "array", "items": { "id": "http://integracja.firefighters.ki.agh.edu.pl/firefighters/0", "type": "object", "properties": { "name": { "id": "http://integracja.firefighters.ki.agh.edu.pl/firefighters/0/name", "type": "string" }, "surname": { "id": "http://integracja.firefighters.ki.agh.edu.pl/firefighters/0/surname", "type": "string" } }, "additionalProperties": false }, "additionalItems": false }, "brigades": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades", "type": "array", "items": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0", "type": "object", "properties": { "name": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/name", "type": "string" }, "membersNumber": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/membersNumber", "type": "integer" }, "distanceInKm": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/distanceInKm", "type": "integer" }, "departureTime": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/departureTime", "format": "date-time" }, "arrivalTime": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/arrivalTime", "format": "date-time" }, "pumpworkTime": { "id": "http://integracja.firefighters.ki.agh.edu.pl/brigades/0/pumpworkTime", "type": "string" } }, "additionalProperties": false }, "additionalItems": false } }, "additionalProperties": false }
o81498
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "TriggerMessageRequest", "type": "object", "properties": { "requestedMessage": { "type": "string", "enum": [ "BootNotification", "DiagnosticsStatusNotification", "FirmwareStatusNotification", "Heartbeat", "MeterValues", "StatusNotification" ] }, "connectorId": { "type": "integer" } }, "additionalProperties": false, "required": [ "requestedMessage" ] }
o43995
{ "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "type": "array", "$id": "http://www.pucomex.serpro.gov.br/lpco/consultar_exigencias.schema.json", "items": { "type": "object", "properties": { "numero": { "type": "string" }, "exigencia": { "type": "string" }, "dataExigencia": { "type": "string" }, "resposta": { "type": [ "string", "null" ] }, "dataResposta": { "type": [ "string", "null" ] }, "justificativa": { "type": [ "string", "null" ] }, "situacao": { "type": "object", "properties": { "id": { "type": "string" }, "descricao": { "type": "string" } } } } } }
o73030
{ "definitions": { "Instance": { "properties": { "data": { "properties": { "compatibleInstances": { "description": "Array of compatible plug-ins", "items": { "type": "string" }, "type": "array" }, "family": { "description": "Family of instance", "type": "string" } }, "required": [ "family" ], "type": "object" }, "name": { "description": "Name of instance", "type": "string" } }, "required": [ "name", "data" ], "type": "object" }, "Plugin": { "properties": { "data": { "properties": { "canProcessContext": { "description": "Whether or not the plug-in has implemented Context processing", "type": "boolean" }, "canProcessInstance": { "description": "Whether or not the plug-in has implemented Instance processing", "type": "boolean" }, "canRepairContext": { "description": "Whether or not the plug-in has implemented Instance repair", "type": "boolean" }, "canRepairInstance": { "description": "Whether or not the plug-in has implemented Instance repair", "type": "boolean" }, "compatibleInstances": { "description": "Array of compatible instances", "items": { "type": "string" }, "type": "array" }, "doc": { "type": [ "string", "null" ] }, "families": { "items": { "type": "string" }, "type": "array" }, "hasCompatible": { "type": "boolean" }, "hasRepair": { "type": "boolean" }, "module": { "type": "string" }, "optional": { "type": "boolean" }, "order": { "type": "number" }, "type": { "type": "string" }, "version": { "items": { "type": "integer" }, "maxItems": 3, "minItems": 3, "type": "array" } }, "required": [ "families" ], "type": "object" }, "name": { "description": "", "type": "string" } }, "required": [ "name", "data" ], "type": "object" } }, "description": "Current state of host", "properties": { "context": { "description": "Context", "properties": { "children": { "description": "Instances", "items": { "$ref": "#/definitions/Instance" }, "type": "array" }, "data": { "description": "Data of context", "type": "object" } }, "type": "object" }, "plugins": { "description": "Collection of plug-ins", "items": { "$ref": "#/definitions/Plugin" }, "type": "array" } }, "required": [ "context", "plugins" ], "title": "State", "type": "object" }
o68822
{ "$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" }, "change_note": { "description": "Change note for the most recent update", "type": [ "string", "null" ] }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "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_history": { "$ref": "#/definitions/change_history" }, "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.", "properties": { "crest": { "enum": [ "bis", "dit", "eo", "hmrc", "ho", "mod", "portcullis", "single-identity", "so", "ukaea", "wales", null ], "type": [ "string", "null" ] }, "formatted_title": { "type": "string" }, "image": { "$ref": "#/definitions/image" } }, "type": "object" }, "ordered_corporate_information_pages": { "description": "A set of links to corporate information pages to display for the organisation.", "items": { "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "href" ], "type": "object" }, "type": "array" }, "ordered_featured_documents": { "description": "A set of featured documents to display for the organisation. Turn into proper links once organisations are fully migrated.", "items": { "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" } }, "required": [ "title", "href", "image", "summary", "public_updated_at", "document_type" ], "type": "object" }, "type": "array" }, "ordered_featured_links": { "description": "A set of featured links to display for the organisation.", "items": { "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "href" ], "type": "object" }, "type": "array" }, "ordered_promotional_features": { "description": "A set of promotional features to display for the organisation. Turn into proper links once organisations are fully migrated.", "items": { "additionalProperties": false, "properties": { "items": { "items": { "additionalProperties": false, "properties": { "double_width": { "type": "boolean" }, "href": { "type": [ "string", "null" ] }, "image": { "$ref": "#/definitions/image" }, "links": { "items": { "additionalProperties": false, "properties": { "href": { "type": "string" }, "title": { "type": "string" } }, "required": [ "title", "href" ], "type": "object" }, "type": "array" }, "summary": { "type": "string" }, "title": { "type": [ "string", "null" ] } }, "required": [ "summary", "double_width" ], "type": "object" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "title", "items" ], "type": "object" }, "type": "array" }, "organisation_featuring_priority": { "description": "Whether to prioritise news or services on the organisation's home page.", "enum": [ "news", "service" ], "type": "string" }, "organisation_govuk_status": { "additionalProperties": false, "description": "The status of the organisation on GOV.UK.", "properties": { "status": { "enum": [ "changed_name", "devolved", "exempt", "joining", "left_gov", "live", "merged", "no_longer_exists", "replaced", "split", "superseded_by_devolved_administration", "transitioning" ], "type": "string" }, "updated_at": { "format": "date-time", "type": [ "string", "null" ] }, "url": { "type": [ "string", "null" ] } }, "required": [ "status" ], "type": "object" }, "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.", "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" ], "type": "string" }, "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.", "items": { "additionalProperties": false, "properties": { "href": { "_format": "uri", "type": "string" }, "service_type": { "enum": [ "blog", "email", "facebook", "flickr", "foursquare", "google-plus", "instagram", "linkedin", "other", "pinterest", "twitter", "youtube" ], "type": "string" }, "title": { "type": "string" } }, "required": [ "service_type", "title", "href" ], "type": "object" }, "type": "array" } }, "type": "object" }, "external_link": { "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "title", "url" ], "type": "object" }, "external_related_links": { "items": { "$ref": "#/definitions/external_link" }, "type": "array" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "image": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "credit": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "high_resolution_url": { "_format": "uri", "description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.", "type": "string" }, "url": { "_format": "uri", "description": "URL to the image. The image should be in a suitable resolution for display on the page.", "type": "string" } }, "required": [ "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "organisation" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_board_members": { "$ref": "#/definitions/frontend_links", "description": "Board members primarily for use with Whitehall organisations." }, "ordered_chief_professional_officers": { "$ref": "#/definitions/frontend_links", "description": "Chief professional officers primarily for use with Whitehall organisations." }, "ordered_child_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Child organisations primarily for use with Whitehall organisations." }, "ordered_contacts": { "$ref": "#/definitions/frontend_links", "description": "Contact details primarily for use with Whitehall organisations." }, "ordered_featured_policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Featured policies primarily for use with Whitehall organisations." }, "ordered_foi_contacts": { "$ref": "#/definitions/frontend_links", "description": "FoI contact details primarily for use with Whitehall organisations." }, "ordered_high_profile_groups": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "High profile groups primarily for use with Whitehall organisations." }, "ordered_military_personnel": { "$ref": "#/definitions/frontend_links", "description": "Military personnel primarily for use with Whitehall organisations." }, "ordered_ministers": { "$ref": "#/definitions/frontend_links", "description": "Ministers primarily for use with Whitehall organisations." }, "ordered_parent_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Parent organisations primarily for use with Whitehall organisations." }, "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." }, "ordered_roles": { "$ref": "#/definitions/frontend_links", "description": "Organisational roles primarily for use with Whitehall organisations." }, "ordered_special_representatives": { "$ref": "#/definitions/frontend_links", "description": "Special representatives primarily for use with Whitehall organisations." }, "ordered_successor_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Successor organisations primarily for use with closed Whitehall organisations." }, "ordered_traffic_commissioners": { "$ref": "#/definitions/frontend_links", "description": "Traffic commissioners primarily for use with Whitehall organisations." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "organisation" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21307
{ "title": "orderByFields", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "Object indicating the field display order for the related records and whether they should be sorted in ascending or descending order.", "properties": { "field": { "type": "string", "description": "The attribute value of the field selected that will drive the sorting of related records." }, "order": { "type": "string", "description": "Set the ascending or descending sort order of the returned related records.", "enum": [ "asc", "desc" ] } }, "esriDocumentation": { "examples": [ { "title": "orderByFields", "code": { "orderByFields": [ { "field": "relationships/0/FieldName", "order": "asc" } ] } } ] } }
o90253
{ "additionalProperties": false, "description": "Schema for a AWS CloudFront web distribution access log event. Version released 29 Apr 2014", "properties": { "cIp": { "maxLength": 45, "type": [ "string", "null" ] }, "csBytes": { "type": [ "number", "null" ] }, "csCookie": { "maxLength": 4096, "type": [ "string", "null" ] }, "csHost": { "maxLength": 2000, "type": [ "string", "null" ] }, "csMethod": { "maxLength": 3, "type": [ "string", "null" ] }, "csProtocol": { "enum": [ "http", "https", null ] }, "csReferer": { "maxLength": 8192, "type": [ "string", "null" ] }, "csUriQuery": { "maxLength": 8192, "type": [ "string", "null" ] }, "csUriStem": { "maxLength": 8192, "type": [ "string", "null" ] }, "csUserAgent": { "maxLength": 2000, "type": [ "string", "null" ] }, "dateTime": { "_format": "date-time", "type": "string" }, "scBytes": { "type": [ "number", "null" ] }, "scStatus": { "maxLength": 3, "type": [ "string", "null" ] }, "timeTaken": { "type": [ "number", "null" ] }, "xEdgeLocation": { "maxLength": 32, "type": [ "string", "null" ] }, "xEdgeRequestId": { "maxLength": 2000, "type": [ "string", "null" ] }, "xEdgeResultType": { "maxLength": 32, "type": [ "string", "null" ] }, "xHostHeader": { "maxLength": 2000, "type": [ "string", "null" ] } }, "required": [ "dateTime" ], "self": { "format": "jsonschema", "name": "wd_access_log", "vendor": "com.amazon.aws.cloudfront", "version": "1-0-3" }, "type": "object" }
sp_4_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Data Table Row", "description": "Schema for a single Data Table Row", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } }, "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": [ "string", "number", "boolean", "null" ] } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "sortColumn": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "dataTableId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "query": { "type": "object" } } }
o9819
{ "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": "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", "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", "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": "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", "null" ] }, "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", "null" ] }, "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", "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" ] }, "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", "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_323_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Network device discovery schema", "type": "object", "properties": { "model": { "type": "string" }, "vendor": { "type": "string" }, "serial": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "interfaces": { "type": "object", "patternProperties": { "^.*$": { "type": "object", "properties": { "type": { "type": "string" }, "ip": { "type": "object", "patternProperties": { "^(?:[0-9]{1,3}\\.){3}[0-9]{1,3}$": { "type": "string" } }, "additionalProperties": false } } } }, "additionalProperties": false }, "router_ips": { "type": "array", "items": { "type": "string" } } } }
o69161
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. square, rectangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_01d6416e
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Some definitions that are used by several descriptors.", "memory_units": { "enum": [ "B", "kB", "KiB", "MB", "MiB", "GB", "GiB", "TB", "TiB", "PT", "PiT" ] }, "bandwidth_units": { "enum": [ "bps", "kbps", "Mbps", "Gbps", "Tbps" ] }, "images_formats": { "enum": [ "raw", "vhd", "vmdk", "vdi", "iso", "qcow2", "docker", "ova", "ovf", "bare" ] }, "interfaces": { "enum": [ "interface" ] }, "properties": { "memory_units": { "$ref": "#/memory_units" }, "bandwidth_units": { "$ref": "#/bandwidth_units" }, "images_formats": { "$ref": "#/images_formats" }, "interfaces": { "$ref": "#/interfaces" } }, "required": [ "memory_units", "bandwidth_units", "images_formats", "interfaces" ] }
o77308
{ "$schema": "http://json-schema.org/draft-04/schema", "properties": { "name": { "type": "string", "pattern": "^[a-z]+(?:-[a-z0-9]+)*$", "minLength": 3 } }, "required": [ "name" ], "additionalProperties": false }
o39485
{ "properties": { "end_datetime": { "description": "End date and time of the event in format YYYY-MM-DD HH:MM", "type": "string" }, "location": { "description": "Location of the event", "type": "string" }, "start_datetime": { "description": "Start date and time of the event in format YYYY-MM-DD HH:MM", "type": "string" }, "title": { "description": "Title of the event", "type": "string" } }, "required": [ "title", "start_datetime", "end_datetime" ], "type": "object" }
create_calendar_event_e56a0e1e
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The children of an endpoint, and the URLs to reach them.", "patternProperties": { "[A-Za-z0-9-_.:]{1,255}": { "type": "string", "format": "uri" } } }
o78117
{ "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "$id": "http://www.pucomex.serpro.gov.br/catp/produto_retorno.schema.json", "properties": { "items": { "type": "object", "properties": { "seq": { "type": "integer" }, "codigo": { "type": [ "string", "null" ] }, "erros": { "type": "array", "items": { "type": "string" } }, "sucesso": { "type": "boolean" } } } } }
o73020
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "beers", "properties": { "id": { "type": "number" }, "title": { "name": "string" } } }
o4366
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/definitions.json", "$comment": "This file is used by another schema file and should not be used directly as a JSON schema.", "nonEmptyString": { "type": "string", "pattern": "^[^\n]+$" }, "noVariablesString": { "type": "string", "pattern": "^[^$\n]+$" }, "variablePixelKeyString": { "type": "string", "pattern": "\\$pixelKey" }, "nonEmptyMultilineString": { "type": "string", "minLength": 1 }, "modeNameString": { "allOf": [ { "$ref": "#/nonEmptyString" }, { "pattern": "^((?!mode)(?!Mode).)*$" } ] }, "urlString": { "type": "string", "pattern": "^(ftp|http|https)://[^ \"]+$", "format": "uri" }, "urlArray": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "$ref": "#/urlString" } }, "isoDateString": { "type": "string", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$", "format": "date" }, "colorString": { "type": "string", "pattern": "^#[0-9a-f]{6}$", "format": "color-hex" }, "dimensionsXYZ": { "$comment": "width, height, depth (in mm)", "type": "array", "minItems": 3, "maxItems": 3, "items": { "type": "number", "minimum": 0 } }, "effectPreset": { "enum": [ "ColorJump", "ColorFade" ] }, "goboResourceString": { "type": "string", "oneOf": [ { "pattern": "^gobos/[a-z0-9-]+$" }, { "pattern": "^gobos/aliases/[a-z0-9_.-]+/" } ] }, "units": { "number": { "type": "number" }, "nonNegativeNumber": { "type": "number", "minimum": 0 }, "positiveInteger": { "type": "integer", "minimum": 0, "exclusiveMinimum": 0 }, "dmxValue": { "type": "integer", "minimum": 0, "$comment": "maximum depends on how many fine channels there are (255 if none, 65535 if one, etc.)" }, "dmxValuePercent": { "type": "string", "pattern": "^(([1-9][0-9]?|0)(\\.[0-9]+)?|100)%$" }, "percent": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?%$" }, "hertz": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?Hz$" }, "beatsPerMinute": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?bpm$" }, "roundsPerMinute": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?rpm$" }, "seconds": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?s$" }, "milliSeconds": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?ms$" }, "meters": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?m$" }, "lumens": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?lm$" }, "kelvin": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?K$" }, "volumePerMinute": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?m\\^3/min$" }, "degrees": { "type": "string", "pattern": "^-?[0-9]+(\\.[0-9]+)?deg$" } }, "entities": { "speed": { "oneOf": [ { "$ref": "#/units/hertz" }, { "$ref": "#/units/beatsPerMinute" }, { "$ref": "#/units/percent" }, { "enum": [ "fast", "slow", "stop", "slow reverse", "fast reverse" ] } ] }, "rotationSpeed": { "oneOf": [ { "$ref": "#/units/hertz" }, { "$ref": "#/units/roundsPerMinute" }, { "$ref": "#/units/percent" }, { "enum": [ "fast CW", "slow CW", "stop", "slow CCW", "fast CCW" ] } ] }, "time": { "oneOf": [ { "$ref": "#/units/seconds" }, { "$ref": "#/units/milliSeconds" }, { "$ref": "#/units/percent" }, { "enum": [ "instant", "short", "long" ] } ] }, "distance": { "oneOf": [ { "$ref": "#/units/meters" }, { "$ref": "#/units/percent" }, { "enum": [ "near", "far" ] } ] }, "brightness": { "oneOf": [ { "$ref": "#/units/lumens" }, { "$ref": "#/units/percent" }, { "enum": [ "off", "dark", "bright" ] } ] }, "colorTemperature": { "oneOf": [ { "$ref": "#/units/kelvin" }, { "$ref": "#/units/percent" }, { "enum": [ "warm", "CTO", "default", "cold", "CTB" ] } ] }, "fogOutput": { "oneOf": [ { "$ref": "#/units/volumePerMinute" }, { "$ref": "#/units/percent" }, { "enum": [ "off", "weak", "strong" ] } ] }, "rotationAngle": { "oneOf": [ { "$ref": "#/units/degrees" }, { "$ref": "#/units/percent" } ] }, "beamAngle": { "oneOf": [ { "$ref": "#/units/degrees" }, { "$ref": "#/units/percent" }, { "enum": [ "closed", "narrow", "wide" ] } ] }, "horizontalAngle": { "oneOf": [ { "$ref": "#/units/degrees" }, { "$ref": "#/units/percent" }, { "enum": [ "left", "center", "right" ] } ] }, "verticalAngle": { "oneOf": [ { "$ref": "#/units/degrees" }, { "$ref": "#/units/percent" }, { "enum": [ "top", "center", "bottom" ] } ] }, "swingAngle": { "oneOf": [ { "$ref": "#/units/degrees" }, { "$ref": "#/units/percent" }, { "enum": [ "closed", "narrow", "wide" ] } ] }, "parameter": { "oneOf": [ { "$ref": "#/units/number" }, { "$ref": "#/units/percent" }, { "enum": [ "off", "low", "high", "slow", "fast", "small", "big", "instant", "short", "long" ] } ] }, "slotNumber": { "$ref": "#/units/nonNegativeNumber" }, "percent": { "oneOf": [ { "$ref": "#/units/percent" }, { "enum": [ "off", "low", "high" ] } ] }, "insertion": { "oneOf": [ { "$ref": "#/units/percent" }, { "enum": [ "out", "in" ] } ] }, "irisPercent": { "oneOf": [ { "$ref": "#/units/percent" }, { "enum": [ "closed", "open" ] } ] } }, "properties": { "nonEmptyString": { "$ref": "#/nonEmptyString" }, "noVariablesString": { "$ref": "#/noVariablesString" }, "variablePixelKeyString": { "$ref": "#/variablePixelKeyString" }, "nonEmptyMultilineString": { "$ref": "#/nonEmptyMultilineString" }, "modeNameString": { "$ref": "#/modeNameString" }, "urlString": { "$ref": "#/urlString" }, "urlArray": { "$ref": "#/urlArray" }, "isoDateString": { "$ref": "#/isoDateString" }, "colorString": { "$ref": "#/colorString" }, "dimensionsXYZ": { "$ref": "#/dimensionsXYZ" }, "effectPreset": { "$ref": "#/effectPreset" }, "goboResourceString": { "$ref": "#/goboResourceString" }, "units.number": { "$ref": "#/units/number" }, "units.nonNegativeNumber": { "$ref": "#/units/nonNegativeNumber" }, "units.positiveInteger": { "$ref": "#/units/positiveInteger" }, "units.dmxValue": { "$ref": "#/units/dmxValue" }, "units.dmxValuePercent": { "$ref": "#/units/dmxValuePercent" }, "units.percent": { "$ref": "#/units/percent" }, "units.hertz": { "$ref": "#/units/hertz" }, "units.beatsPerMinute": { "$ref": "#/units/beatsPerMinute" }, "units.roundsPerMinute": { "$ref": "#/units/roundsPerMinute" }, "units.seconds": { "$ref": "#/units/seconds" }, "units.milliSeconds": { "$ref": "#/units/milliSeconds" }, "units.meters": { "$ref": "#/units/meters" }, "units.lumens": { "$ref": "#/units/lumens" }, "units.kelvin": { "$ref": "#/units/kelvin" }, "units.volumePerMinute": { "$ref": "#/units/volumePerMinute" }, "units.degrees": { "$ref": "#/units/degrees" }, "entities.speed": { "$ref": "#/entities/speed" }, "entities.rotationSpeed": { "$ref": "#/entities/rotationSpeed" }, "entities.time": { "$ref": "#/entities/time" }, "entities.distance": { "$ref": "#/entities/distance" }, "entities.brightness": { "$ref": "#/entities/brightness" }, "entities.colorTemperature": { "$ref": "#/entities/colorTemperature" }, "entities.fogOutput": { "$ref": "#/entities/fogOutput" }, "entities.rotationAngle": { "$ref": "#/entities/rotationAngle" }, "entities.beamAngle": { "$ref": "#/entities/beamAngle" }, "entities.horizontalAngle": { "$ref": "#/entities/horizontalAngle" }, "entities.verticalAngle": { "$ref": "#/entities/verticalAngle" }, "entities.swingAngle": { "$ref": "#/entities/swingAngle" }, "entities.parameter": { "$ref": "#/entities/parameter" }, "entities.slotNumber": { "$ref": "#/entities/slotNumber" }, "entities.percent": { "$ref": "#/entities/percent" }, "entities.insertion": { "$ref": "#/entities/insertion" }, "entities.irisPercent": { "$ref": "#/entities/irisPercent" } }, "required": [ "nonEmptyString", "noVariablesString", "variablePixelKeyString", "nonEmptyMultilineString", "modeNameString", "urlString", "urlArray", "isoDateString", "colorString", "dimensionsXYZ", "effectPreset", "goboResourceString", "units.number", "units.nonNegativeNumber", "units.positiveInteger", "units.dmxValue", "units.dmxValuePercent", "units.percent", "units.hertz", "units.beatsPerMinute", "units.roundsPerMinute", "units.seconds", "units.milliSeconds", "units.meters", "units.lumens", "units.kelvin", "units.volumePerMinute", "units.degrees", "entities.speed", "entities.rotationSpeed", "entities.time", "entities.distance", "entities.brightness", "entities.colorTemperature", "entities.fogOutput", "entities.rotationAngle", "entities.beamAngle", "entities.horizontalAngle", "entities.verticalAngle", "entities.swingAngle", "entities.parameter", "entities.slotNumber", "entities.percent", "entities.insertion", "entities.irisPercent" ] }
o5983
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dcc.icgc.org/diagram", "type": "object", "properties": { "diagram_id": { "id": "https://dcc.icgc.org/diagram/diagram_id", "type": "string" }, "highlights": { "id": "https://dcc.icgc.org/diagram/highlights", "type": "array", "items": { "id": "https://dcc.icgc.org/diagram/highlights/0", "type": "string" }, "additionalItems": false }, "protein_map": { "id": "https://dcc.icgc.org/diagram/protein_map", "type": "array", "items": { "id": "https://dcc.icgc.org/diagram/protein_map/0", "type": "object", "properties": { "db_id": { "id": "https://dcc.icgc.org/diagram/protein_map/0/db_id", "type": "string" }, "uniprot_ids": { "id": "https://dcc.icgc.org/diagram/protein_map/0/uniprot_ids", "type": "array", "items": { "id": "https://dcc.icgc.org/diagram/protein_map/0/uniprot_ids/2", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }, "additionalItems": false }, "xml": { "id": "https://dcc.icgc.org/diagram/xml", "type": "string" } }, "additionalProperties": false, "required": [ "diagram_id" ] }
o47106
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "type": "object", "properties": { "nameTemplate": { "title": "Command Name Template", "type": "string", "minLength": 1 }, "payloadTemplate": { "title": "Command Payload Template", "type": "string" }, "sendToDeviceTags": { "title": "Send to Device Tags", "type": "array", "minItems": 1, "items": { "title": "Device Tag Pair", "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "minLength": 1 } }, "sendToDeviceIds": { "title": "Send to Device IDs", "type": "array", "minItems": 1, "items": { "title": "Device ID", "type": "string", "minLength": 1 } } }, "allOf": [ { "required": [ "nameTemplate" ] }, { "anyOf": [ { "required": [ "sendToDeviceIds" ] }, { "required": [ "sendToDeviceTags" ] } ] } ] }
o6243
{ "properties": { "cuisine": { "description": "The type of cuisine to search for", "type": "string" }, "location": { "description": "The location to search for restaurants", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price range (1-4)", "type": "number" }, "min_price": { "description": "The minimum price range (1-4)", "type": "number" } }, "required": [ "min_price", "max_price" ], "type": "object" } }, "required": [ "location" ], "type": "object" }
search_restaurants_dc975eb6
{ "additionalProperties": false, "properties": { "dcos_acs_token": { "description": "The token generated by authenticating to DC/OS with ACS", "title": "DC/OS ACS token", "type": "string" }, "dcos_url": { "description": "The public master IP of your DC/OS installation", "format": "uri", "title": "DC/OS URL", "type": "string" }, "mesos_master_url": { "description": "Mesos master URL. Must be set in format: \"http://host:port\"", "format": "uri", "title": "Mesos Master URL", "type": "string" }, "pagination": { "default": true, "description": "Whether to paginate output", "title": "Pagination", "type": "boolean" }, "prompt_login": { "default": false, "description": "Whether to prompt the user to log in when token expired; otherwise automatically initiate login", "title": "Prompt to log in", "type": "boolean" }, "reporting": { "default": true, "description": "Whether to report usage events to Mesosphere", "title": "Usage Reporting", "type": "boolean" }, "ssl_verify": { "default": "false", "description": "Whether to verify SSL certs for HTTPS or path to certs. Valid values are True, False, or a path to a CA_BUNDLE.", "title": "SSL Verification", "type": "string" }, "timeout": { "default": 5, "description": "Request timeout in seconds", "minimum": 1, "title": "Request timeout in seconds", "type": "integer" } }, "type": "object" }
o60278
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Error", "type": "object", "definitions": { "code": { "title": "Machine readable code", "description": "This will be in upper-case and underscore separated, aka ANGRY_SNAKE_CASE", "type": "string" }, "message": { "title": "Human readable message", "description": "Free text", "type": "string" }, "path": { "title": "Path to the erroneous property", "description": "XPath, e.g. /foo/bar", "type": "string" }, "part": { "properties": { "code": { "$ref": "#/definitions/code" }, "message": { "$ref": "#/definitions/message" }, "path": { "$ref": "#/definitions/path" } } } }, "properties": { "code": { "$ref": "#/definitions/code" }, "message": { "$ref": "#/definitions/message" }, "path": { "$ref": "#/definitions/path" }, "errors": { "type": "array", "items": { "$ref": "#/definitions/part" } } }, "required": [ "code", "message" ], "additionalProperties": false }
o46365
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "description": "Advertisement status for the supplied advertisement", "properties": { "advertisementId": { "type": "string" }, "status": { "enum": [ "open", "expired" ] }, "postedBy": { "type": "string" }, "datePosted": { "type": "number" }, "expiredBy": { "type": "string" }, "dateExpired": { "type": "number" }, "title": { "type": "string" }, "referenceCode": { "type": "string" } }, "additionalProperties": false }
o79513
{ "additionalProperties": { "image_gallery": { "items": { "$ref": "#/definitions/image" }, "type": "array" } }, "definitions": { "available_qty": { "default": 0, "description": "The quantity of the product available for purchasing", "example": 10, "type": "number" }, "currency": { "description": "The currency of the price", "enum": [ "USD" ] }, "description": { "description": "Product's description", "maxLength": 2000, "type": "string" }, "identifier": { "description": "Product SKU", "example": "ABC-123", "type": "string" }, "image": { "description": "URL for the product image", "example": "http://static.example.com/images/product.jpg", "type": "string" }, "in_stock": { "default": false, "description": "Whether the product is in stock or not", "example": true, "type": "boolean" }, "name": { "description": "Product's name", "maxLength": 100, "type": "string" }, "price": { "description": "The price of the product", "example": 49.99, "type": "number" } }, "description": "A product available for sale in a store", "links": [ { "description": "Get all available product for the store", "href": "/products", "method": "GET", "rel": "instances", "schema": { "properties": { "order": { "description": "Attribute to order the results by", "enum": [ "name", "price", "available_qty" ], "example": "price" }, "page": { "default": 1, "description": "Current page of products", "example": 1, "type": "integer" }, "per_page": { "default": 20, "description": "How many products to retrieve at once", "max": 200, "min": 1, "type": "integer" } }, "type": "object" }, "targetSchema": { "items": { "rel": "self" }, "type": "array" }, "title": "Available products" }, { "description": "Get a single product", "href": "/products/{#/definitions/identifier}", "method": "GET", "rel": "self", "targetSchema": { "rel": "self" }, "title": "Product info" } ], "properties": { "ID": { "$ref": "#/definitions/identifier" }, "available_qty": { "$ref": "#/definitions/available_qty" }, "currency": { "$ref": "#/definitions/currency" }, "description": { "$ref": "#/definitions/description" }, "image": { "$ref": "#/definitions/image" }, "in_stock": { "$ref": "#/definitions/in_stock" }, "name": { "$ref": "#/definitions/name" }, "price": { "$ref": "#/definitions/price" } }, "required": [ "ID", "name", "description", "price", "currency", "in_stock", "available_qty" ], "title": "Product", "type": "object" }
o32648
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "API Token", "description": "Schema for a single API Token", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "apiTokenId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "ownerId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "ownerType": { "type": "string", "enum": [ "application" ] }, "creatorId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creatorType": { "type": "string", "enum": [ "apiToken", "user", "flow" ] }, "creatorName": { "type": "string", "maxLength": 1024 }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "expirationDate": { "type": "string", "format": "date-time" }, "scope": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "token": { "type": "string", "minLength": 1 } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "ownerId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "ownerType": { "type": "string", "enum": [ "application" ] } } }
o9766
{ "additionalProperties": false, "definitions": { "i18n": { "additionalProperties": false, "properties": { "locales": { "additionalProperties": false, "patternProperties": { "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$": { "oneOf": [ { "description": "Localization file to use for i18n", "type": "string" }, { "additionalProperties": false, "description": "Localization options to use for the locale", "properties": { "baseHref": { "description": "HTML base HREF to use for the locale (defaults to the locale code)", "type": "string" }, "translation": { "description": "Localization file to use for i18n", "type": "string" } }, "type": "object" } ] } }, "type": "object" }, "sourceLocale": { "oneOf": [ { "default": "en-US", "description": "Specifies the source locale of the application.", "pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$", "type": "string" }, { "additionalProperties": false, "description": "Localization options to use for the source locale", "properties": { "baseHref": { "description": "HTML base HREF to use for the locale (defaults to the locale code)", "type": "string" }, "code": { "description": "Specifies the locale code of the source locale", "pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$", "type": "string" } }, "type": "object" } ] } }, "type": "object" }, "project": { "additionalProperties": false, "description": "Project options.", "if": { "properties": { "projectType": { "const": "library" } } }, "properties": { "architect": { "$ref": "#/definitions/tool", "default": {} }, "cli": { "$ref": "#/definitions/tool", "default": {} }, "i18n": { "$ref": "#/definitions/i18n", "default": {} }, "prefix": { "description": "The prefix to apply to generated selectors.", "type": "string" }, "projectType": { "description": "Project type.", "enum": [ "application", "library" ], "type": "string" }, "root": { "description": "Root of the project sourcefiles.", "type": "string" }, "schematics": { "$ref": "#/definitions/tool", "default": {} }, "sourceRoot": { "description": "The root of the source files, assets and index.html file structure.", "type": "string" }, "targets": { "$ref": "#/definitions/tool", "default": {} } }, "required": [ "root", "projectType" ], "then": { "not": { "required": [ "i18n" ] } }, "type": "object" }, "tool": { "additionalProperties": true, "description": "Tool options.", "properties": { "$schema": { "description": "Link to schema.", "type": "string" } }, "type": "object" } }, "properties": { "$schema": { "description": "Link to schema.", "type": "string" }, "architect": { "$ref": "#/definitions/tool", "default": {} }, "cli": { "$ref": "#/definitions/tool", "default": {} }, "defaultProject": { "description": "The default project.", "type": "string" }, "newProjectRoot": { "default": "./", "description": "New project root.", "type": "string" }, "projects": { "additionalProperties": { "$ref": "#/definitions/project" }, "default": {}, "description": "A map of project names to project options.", "type": "object" }, "schematics": { "$ref": "#/definitions/tool", "default": {} }, "targets": { "$ref": "#/definitions/tool", "default": {} }, "version": { "description": "Workspace Schema version.", "type": "number" } }, "required": [ "version" ], "title": "Angular Devkit Workspace Schema for validating workspace JSON.", "type": "object" }
o58453
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length/width of the shape", "type": "number" }, "height": { "description": "The height/length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "side": { "description": "The side length of the shape", "type": "number" } }, "required": [ "base", "height", "radius", "side" ], "type": "object" }, "shape": { "description": "The shape to calculate the area of", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_98abd231
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://rtx.pub/schema/rtx.json", "title": "rtx", "description": "config file for rtx version manager (.rtx.toml)", "type": "object", "additionalProperties": false, "properties": { "env_file": { "description": "path to .env file", "type": "string" }, "env_path": { "description": "PATH entries to add", "type": "array", "items": { "description": "a path to add to PATH", "type": "string" } }, "env": { "description": "environment variables", "type": "object", "additionalProperties": { "oneOf": [ { "type": "string" }, { "type": "boolean" } ] } }, "tools": { "description": "dev tools to use", "type": "object", "additionalProperties": { "oneOf": [ { "type": "array", "items": { "$ref": "#/$defs/tool" } }, { "$ref": "#/$defs/tool" } ] } }, "plugins": { "description": "plugins to use", "type": "object", "additionalProperties": { "description": "url to plugin repository", "type": "string" } }, "alias": { "description": "custom shorthands for versions", "type": "object", "additionalProperties": { "description": "plugin to set aliases for", "type": "object", "additionalProperties": { "description": "version alias points to", "type": "string" } } }, "settings": { "$ref": "#/$defs/settings" } }, "$defs": { "tool": { "oneOf": [ { "type": "string", "description": "version of the tool to install" }, { "type": "object", "properties": { "version": { "description": "version of the tool to install", "type": "string" } }, "required": [ "version" ] } ] }, "settings": { "description": "settings for rtx", "type": "object", "additionalProperties": false, "properties": { "missing_runtime_behavior": { "description": "what to do when a runtime is missing", "type": "string", "enum": [ "ignore", "prompt", "autoinstall", "warn", "error" ] }, "legacy_version_file": { "description": "should rtx parse legacy version files (e.g. .node-version)", "type": "boolean" }, "legacy_version_file_disable_tools": { "description": "tools that should not have their legacy version files parsed", "type": "array", "items": { "description": "tool name", "type": "string" } }, "always_keep_download": { "description": "should rtx keep downloaded files after installation", "type": "boolean" }, "always_keep_install": { "description": "should rtx keep install files after installation even if the installation fails", "type": "boolean" }, "plugin_autoupdate_last_check_duration": { "oneOf": [ { "description": "how often to check for plugin updates", "type": "string" }, { "description": "how often to check for plugin updates", "type": "integer" } ] }, "asdf_compat": { "description": "set to true to ensure .tool-versions will be compatible with asdf", "type": "boolean" }, "jobs": { "description": "number of tools to install in parallel, default is 4", "type": "integer" }, "raw": { "description": "directly connect plugin scripts to stdin/stdout, implies --jobs=1", "type": "boolean" }, "shorthands_file": { "description": "path to file containing shorthand mappings", "type": "string" }, "disable_default_shorthands": { "description": "disables built-in shorthands", "type": "boolean" }, "disable_tools": { "description": "tools that should not be used", "type": "array", "items": { "description": "tool name", "type": "string" } }, "trusted_config_paths": { "description": "config files with these prefixes will be trusted by default", "type": "array", "items": { "description": "a path to add to PATH", "type": "string" } }, "experimental": { "description": "enable experimental features", "type": "boolean" }, "log_level": { "description": "log level", "type": "string", "enum": [ "error", "warn", "info", "debug", "trace" ] }, "verbose": { "description": "display installation output", "type": "boolean" } } } } }
rtx
{ "properties": { "amenities": { "description": "The amenities required in the hotel", "items": { "type": "string" }, "type": "array" }, "check_in_date": { "description": "The check-in date for the hotel", "type": "string" }, "check_out_date": { "description": "The check-out date for the hotel", "type": "string" }, "location": { "description": "The location to search for hotels", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date" ], "type": "object" }
search_hotels_499b6dc9
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Reward API Input", "description": "Defines the reward API data input structure.", "type": "object", "properties": { "type": { "type": "string", "title": "Reward Type", "enum": [ "PCT_DISCOUNT", "FUELTANK", "CREDIT", "INTEGRATION" ] } }, "dependencies": { "type": { "oneOf": [ { "properties": { "type": { "enum": [ "PCT_DISCOUNT" ] }, "discountPercent": { "type": "integer", "title": "Discount Percent", "exclusiveMinimum": 0, "maximum": 100, "description": "The discount associated with this reward" }, "name": { "$ref": "#/definitions/rewardName" }, "dateExpires": { "$ref": "#/definitions/rewardDateExpires" }, "cancellable": { "$ref": "#/definitions/rewardCancellable" }, "dateScheduledFor": { "$ref": "#/definitions/rewardDateScheduledFor" } }, "additionalProperties": false, "required": [ "type", "discountPercent" ] }, { "properties": { "type": { "enum": [ "FUELTANK" ] }, "fuelTankCode": { "type": "string", "title": "Fuel Tank Code", "description": "The associated coupon code uploaded via the fuel tank API or portal code manager" }, "unit": { "$ref": "#/definitions/rewardUnit" }, "amount": { "type": "string", "title": "Amount", "description": "The amount of credit or discount to be given" }, "dateExpires": { "$ref": "#/definitions/rewardDateExpires" }, "fuelTankType": { "type": "string", "title": "Fuel Tank Type", "description": "The type of fuel tank reward being given", "enum": [ "PCT_DISCOUNT", "CREDIT" ] }, "cancellable": { "$ref": "#/definitions/rewardCancellable" } }, "additionalProperties": false, "required": [ "type", "fuelTankCode", "fuelTankType", "amount" ] }, { "properties": { "type": { "enum": [ "CREDIT" ] }, "unit": { "$ref": "#/definitions/rewardUnit" }, "name": { "$ref": "#/definitions/rewardName" }, "assignedCredit": { "type": "integer", "title": "Assigned Credit", "exclusiveMinimum": 0, "description": "The initial redeemable credit assigned to be assigned to reward" }, "dateExpires": { "$ref": "#/definitions/rewardDateExpires" }, "cancellable": { "$ref": "#/definitions/rewardCancellable" }, "dateScheduledFor": { "$ref": "#/definitions/rewardDateScheduledFor" } }, "additionalProperties": false, "required": [ "type", "unit", "assignedCredit" ] }, { "properties": { "type": { "enum": [ "INTEGRATION" ] }, "unit": { "$ref": "#/definitions/rewardUnit" }, "name": { "$ref": "#/definitions/rewardName" }, "description": { "type": "string", "title": "Reward Description", "description": "This text describes the integration reward given in more detail" }, "valueInCents": { "type": "string", "title": "Reward Amount", "description": "The value in base currency unit (i.e. cents) to be assigned to this reward" }, "integrationSettings": { "$ref": "#/definitions/integrationSettings" } }, "additionalProperties": false, "required": [ "type", "unit", "valueInCents", "integrationSettings" ] } ] } }, "definitions": { "rewardUnit": { "type": "string", "title": "Unit", "description": "The unit of credit associated with this reward (i.e. months or usd)" }, "rewardName": { "type": [ "string", "null" ], "title": "Reward Name" }, "rewardDateExpires": { "type": [ "integer", "null" ], "title": "Reward Expiry Date", "description": "The date this reward will expire" }, "rewardCancellable": { "type": [ "boolean", "null" ], "title": "Cancellable", "description": "Whether this reward can be cancelled" }, "rewardDateScheduledFor": { "type": [ "integer", "null" ], "title": "Scheduled Reward Given Date", "description": "If the reward is created in a PENDING state this is the date we will attempt to 'give' it" }, "integrationSettings": { "type": "object", "title": "Integration Settings", "properties": { "templateId": { "type": "string", "title": "Email Template ID" }, "giftId": { "type": "string" }, "utid": { "type": "string" } } } } }
o72196
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string" }, "tcpAdresse": { "type": "string" }, "port": { "type": "string", "default": "3000" } }, "required": [ "name", "tcpAdresse", "port" ] }
o79709
{ "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "properties": { "nonResourceURLs": { "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ], "x-kubernetes-list-type": "set" }, "verbs": { "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ], "x-kubernetes-list-type": "set" } }, "required": [ "verbs", "nonResourceURLs" ], "type": "object" }
kb_637_Normalized
{ "additionalProperties": false, "properties": { "accessToken": { "maxLength": 100, "type": "string" }, "clientId": { "description": "MongoDB object ID for the user", "maxLength": 12, "minLength": 12, "pattern": "[0-9a-fA-F]+", "type": "string" }, "expirationTime": { "type": "number" }, "refreshToken": { "maxLength": 100, "type": "string" }, "scope": { "type": "string" } }, "title": "OAuthBearerToken", "type": "object" }
o10010
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object", "properties": { "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "marketingName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "version": { "type": "string" }, "manufacturer": { "type": "string" }, "bits": { "type": "integer" } }, "required": [ "name", "marketingName", "version", "manufacturer", "bits" ] } }
o60841
{ "properties": { "keywords": { "description": "Keywords to search for in job titles or descriptions", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location to search for jobs", "type": "string" }, "salary_range": { "properties": { "maximum": { "description": "The maximum salary", "type": "number" }, "minimum": { "description": "The minimum salary", "type": "number" } }, "required": [ "minimum", "maximum" ], "type": "object" } }, "required": [ "keywords", "location", "salary_range" ], "type": "object" }
search_jobs_3eee6557
{ "properties": { "dimensions": { "anyOf": [ { "required": [ "length", "width" ] }, { "required": [ "radius" ] } ], "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The shape for which the area will be calculated", "enum": [ "square", "rectangle", "circle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4030dbbd
{ "additionalProperties": false, "description": "Snowplow Redshift storage configuration", "properties": { "blacklistTabular": { "description": "List of iglu schemas for entities that should not be shredded into TSV format", "items": { "type": "string" }, "type": [ "array", "null" ] }, "compRows": { "description": "Number of rows to be used as the sample size for compression analysis", "maximum": 1000000000, "minimum": 1000, "type": "integer" }, "database": { "description": "Redshift database name", "maxLength": 64, "minLength": 1, "type": "string" }, "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Redshift cluster host ('localhost' for enabled SSH Tunnel)", "type": "string" }, "id": { "_format": "uuid", "description": "Machine-readable unique identificator", "type": "string" }, "jdbc": { "additionalProperties": false, "properties": { "BlockingRowsMode": { "description": "The number of rows to hold in memory", "minimum": 0, "type": "integer" }, "DSILogLevel": { "description": "Amount of detail included in log file", "maximum": 6, "minimum": 0, "type": "integer" }, "DisableIsValidQuery": { "description": "Disable detection JDBC driver no longer holding a valid database connection", "type": "boolean" }, "FilterLevel": { "description": "The minimum severity level of a message that the client processes", "enum": [ "DEBUG", "INFO", "NOTICE", "WARNING", "LOG", "ERROR" ] }, "TCPKeepAliveMinutes": { "description": "The threshold for minutes of inactivity before initiating a TCP keepalive transmission", "minimum": 0, "type": "integer" }, "loginTimeout": { "description": "The number of seconds to wait before timing out when connecting to the server", "minimum": 0, "type": "integer" }, "loglevel": { "description": "The amount of logging information output by the driver", "maximum": 2, "minimum": 0, "type": [ "integer", "null" ] }, "socketTimeout": { "description": "The number of seconds to wait during socket read operations before timing out", "minimum": 0, "type": "integer" }, "ssl": { "description": "Whether to use an SSL connection", "type": "boolean" }, "sslMode": { "description": "Determines how to handle server certificate verification", "enum": [ "verify-ca", "verify-full" ], "type": [ "string", "null" ] }, "sslRootCert": { "description": "The full path of a .pem or .crt file containing the trust root Certificate Authority", "maxLength": 1024, "type": [ "string", "null" ] }, "tcpKeepAlive": { "description": "A value that determines whether TCP keepalives are enabled", "type": "boolean" } }, "type": "object" }, "maxError": { "description": "Amount of allowed errors before aborting load", "maximum": 100000, "minimum": 0, "type": "integer" }, "name": { "description": "Human-readable storage target name, used only for logging", "maxLength": 255, "type": "string" }, "password": { "description": "Redshift password, either plain-text or encrypted key for EC2 Parameter Storage", "properties": { "ec2ParameterStore": { "description": "EC2 Parameter Storage configuration", "properties": { "parameterName": { "description": "EC2 Parameter with encrypted password", "maxLength": 2048, "type": "string" } }, "required": [ "parameterName" ], "type": "object" } }, "required": [ "ec2ParameterStore" ], "type": [ "string", "object" ] }, "port": { "description": "Redshift database port", "maximum": 65535, "minimum": 1, "type": "integer" }, "processingManifest": { "description": "Optional processing manifest to maintain pipeline state", "properties": { "amazonDynamoDb": { "description": "Configuration for processing manifest on top of DynamoDB - single available implementation", "properties": { "tableName": { "description": "DynamoDB table name", "maxLength": 255, "minLength": 3, "type": "string" } }, "required": [ "tableName" ], "type": "object" } }, "required": [ "amazonDynamoDb" ], "type": [ "object", "null" ] }, "purpose": { "description": "Kind of data stored in this instance", "enum": [ "ENRICHED_EVENTS" ] }, "roleArn": { "description": "IAM Role ARN used to load data from S3", "minLength": 20, "type": "string" }, "schema": { "description": "Redshift database schema (e.g. 'atomic')", "maxLength": 128, "type": "string" }, "sshTunnel": { "description": "Optional SSH Tunnel configuration", "properties": { "bastion": { "description": "Bastion host configuration", "properties": { "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Bastion SSH host", "type": "string" }, "key": { "description": "SSH-key stored in EC2 Parameter Storage", "properties": { "ec2ParameterStore": { "properties": { "parameterName": { "maxLength": 2048, "type": "string" } }, "required": [ "parameterName" ], "type": "object" } }, "required": [ "ec2ParameterStore" ], "type": [ "object", "null" ] }, "passphrase": { "description": "Plain-text SSH user's passphrase", "maxLength": 2048, "type": [ "string", "null" ] }, "port": { "description": "Bastion SSH port", "maximum": 65535, "minimum": 1, "type": "integer" }, "user": { "description": "SSH user", "maxLength": 32, "type": "string" } }, "required": [ "host", "port", "user", "passphrase", "key" ], "type": "object" }, "destination": { "description": "Database socket inside private network", "properties": { "host": { "anyOf": [ { "format": "hostname" }, { "format": "ipv4" }, { "format": "ipv6" } ], "description": "Redshift host inside private network (root-level host should be changed to 'localhost')", "type": "string" }, "port": { "description": "Redshift port inside private network (root-level 'port' should be changed to be identical to 'localPort')", "maximum": 65535, "minimum": 1, "type": "integer" } }, "required": [ "host", "port" ], "type": "object" }, "localPort": { "description": "Arbitrary port on node, running Loader (shoul be identical to root-level 'port')", "maximum": 65535, "minimum": 1, "type": "integer" } }, "required": [ "bastion", "destination", "localPort" ], "type": [ "object", "null" ] }, "username": { "description": "Redshift user", "maxLength": 128, "type": "string" } }, "required": [ "name", "id", "host", "database", "port", "username", "password", "schema", "sshTunnel", "processingManifest", "roleArn", "maxError", "compRows", "jdbc", "purpose" ], "self": { "format": "jsonschema", "name": "redshift_config", "vendor": "com.snowplowanalytics.snowplow.storage", "version": "4-0-0" }, "type": "object" }
sp_372_Normalized
{ "properties": { "category": { "description": "The category of news headlines (e.g. business, sports)", "type": "string" }, "country": { "description": "The country for which news headlines are to be fetched", "type": "string" }, "language": { "description": "The language in which news headlines are to be fetched (e.g. en, fr)", "type": "string" }, "pageSize": { "description": "The number of news headlines to be fetched", "type": "integer" } }, "required": [ "country", "category" ], "type": "object" }
get_news_3a72e79a
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy": { "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { "partition": { "_format": "int32", "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", "type": "integer" } }, "type": "object" } }, "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy", "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." }, "type": { "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", "type": [ "string", "null" ] } }, "type": "object" }
kb_1019_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "self": { "type": "boolean" }, "graduation_year": { "type": [ "integer", "null" ] }, "majors": { "oneOf": [ { "type": "array", "items": { "type": "integer" } }, { "type": "null" } ] } }, "required": [ "self", "graduation_year", "majors" ] }
o13671
{ "definitions": { "GameBaseVariant": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": [ "null", "string" ] }, "internalName": { "type": "string" }, "iconUrl": { "type": [ "null", "string" ] }, "supportedGameModes": { "type": "array", "additionalItems": false, "items": { "type": "string" } }, "id": { "type": "string" }, "contentId": { "type": "string" } }, "required": [ "name", "internalName", "iconUrl", "supportedGameModes", "id", "contentId" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "$ref": "#/definitions/GameBaseVariant" } }
o5468
{ "properties": { "billing_address": { "description": "The billing address of the customer", "type": "string" }, "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "billing_address", "items" ], "type": "object" }
create_invoice_4f931f92
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Root password plugin manifest", "type": "object", "properties": { "plugins": { "type": "object", "properties": { "root_password": { "type": "object", "properties": { "password": { "type": "string" } }, "required": [ "password" ] } } } } }
o27357
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "description": { "description": "The description of the item", "type": "string" }, "price": { "description": "The price per unit", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "description", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate in percentage", "type": "number" } }, "required": [ "client_name", "items" ], "type": "object" }
generate_invoice_794f5a1e
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream", "definitions": { "strmprivacy.api.entities.v1.ConsentLevelType": { "enum": [ "CONSENT_LEVEL_TYPE_UNSPECIFIED", 0, "CUMULATIVE", 1, "GRANULAR", 2 ], "description": "Consent level is meant to interpret the consent-levels of an event for decryption purposes only.\n\nCumulative means that the highest consent-level in an event must be greater than or equal to the single requested level\nfor the decrypted stream.\n\nGranular means that the set of consent-levels in an event must enclose the set of requested event levels for the\ndecrypted stream.", "markdownEnumDescriptions": [ "(or 0) ", "(or \"CONSENT_LEVEL_TYPE_UNSPECIFIED\") ", "(or 1) ", "(or \"CUMULATIVE\") ", "(or 2) ", "(or \"GRANULAR\") " ] }, "strmprivacy.api.entities.v1.Credentials": { "type": "object", "properties": { "billingId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/billing_id" }, "clientId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/client_id" }, "clientSecret": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/client_secret" }, "projectId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/project_id" } }, "patternProperties": { "^billing_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/billing_id" }, "^client_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/client_id" }, "^client_secret$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/client_secret" }, "^project_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials/definitions/project_id" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "billing_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string billing_id = 1;", "default": "" }, "client_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string client_id = 2;", "default": "" }, "client_secret": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string client_secret = 3;", "description": "as this property is secret, it is not always returned", "default": "" }, "project_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string project_id = 4;", "default": "" } }, "description": "Credentials to produce to the event-gateway, or to consume from egress." }, "strmprivacy.api.entities.v1.Limits": { "type": "object", "properties": { "eventCount": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Limits/definitions/event_count" }, "eventRate": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Limits/definitions/event_rate" } }, "patternProperties": { "^event_count$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Limits/definitions/event_count" }, "^event_rate$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Limits/definitions/event_rate" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "event_count": { "oneOf": [ { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, { "type": "null" } ], "title": "int64 event_count = 2;", "description": "filled in from customer profile", "default": 0 }, "event_rate": { "oneOf": [ { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, { "type": "null" } ], "title": "int64 event_rate = 1;", "description": "filled in from customer profile", "default": 0 } } }, "strmprivacy.api.entities.v1.MaskedFields": { "type": "object", "properties": { "fieldPatterns": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields/definitions/field_patterns" }, "hashType": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields/definitions/hash_type" }, "seed": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields/definitions/seed" } }, "patternProperties": { "^field_patterns$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields/definitions/field_patterns" }, "^hash_type$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields/definitions/hash_type" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "field_patterns": { "oneOf": [ { "type": "object", "additionalProperties": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields.PatternList" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.MaskedFields.PatternList", "default": { } } }, { "type": "null" } ], "title": "map<string, strmprivacy.api.entities.v1.MaskedFields.PatternList> field_patterns = 3;", "description": "map of event-contract-ref vs field patterns\n\nconstraints:\n data-contract-refs should be existing data contracts\n field_patterns should be valid values (checked by events-core)\n the field_patterns list should have no duplicates.", "default": { } }, "hash_type": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string hash_type = 1;", "description": "Default Murmurhash3 if empty", "default": "" }, "seed": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string seed = 2;", "description": "hashing seed", "default": "" } } }, "strmprivacy.api.entities.v1.MaskedFields.PatternList": { "type": "object", "properties": { "fieldPatterns": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields.PatternList/definitions/field_patterns" } }, "patternProperties": { "^field_patterns$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields.PatternList/definitions/field_patterns" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "field_patterns": { "oneOf": [ { "type": "array", "items": { "type": "string", "title": "string" } }, { "type": "null" } ], "title": "repeated string field_patterns = 1;", "default": null } } }, "strmprivacy.api.entities.v1.Stream": { "type": "object", "properties": { "enabled": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/enabled" }, "maskedFields": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/masked_fields" }, "kafkaTopic": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/kafka_topic" }, "description": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/description" }, "limits": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/limits" }, "ref": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/ref" }, "tags": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/tags" }, "consentLevelType": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/consent_level_type" }, "linkedStream": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/linked_stream" }, "policyId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/policy_id" }, "credentials": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/credentials" }, "consentLevels": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/consent_levels" } }, "patternProperties": { "^consent_level_type$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/consent_level_type" }, "^consent_levels$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/consent_levels" }, "^kafka_topic$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/kafka_topic" }, "^linked_stream$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/linked_stream" }, "^masked_fields$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/masked_fields" }, "^policy_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Stream/definitions/policy_id" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "enabled": { "oneOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "bool enabled = 5;", "description": "whether or not this stream is enabled.", "default": false }, "consent_levels": { "oneOf": [ { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "type": "integer" } ], "title": "int32" } }, { "type": "null" } ], "title": "repeated int32 consent_levels = 3;", "description": "consent levels for derived streams\n\nconstraints:\nif consent_level_type == CUMULATIVE then\nsize = 1\nendif", "default": null }, "description": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string description = 2;", "description": "Stream description", "default": "" }, "limits": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.Limits" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.Limits limits = 6;", "description": "stream limits", "default": { } }, "ref": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.StreamRef ref = 1;", "default": { } }, "tags": { "oneOf": [ { "type": "array", "items": { "type": "string", "title": "string" } }, { "type": "null" } ], "title": "repeated string tags = 8;", "description": "tags are meant for customers to tag their streams", "default": null }, "consent_level_type": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.ConsentLevelType" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.ConsentLevelType consent_level_type = 4;", "description": "how event consent-levels are interpreted by decrypters.", "default": "CONSENT_LEVEL_TYPE_UNSPECIFIED" }, "linked_stream": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string linked_stream = 7;", "description": "null for source streams", "default": "" }, "policy_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string policy_id = 12;", "description": "The id of the policy that should be applied to this stream's data", "default": "" }, "credentials": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/strmprivacy.api.entities.v1.Credentials", "title": "strmprivacy.api.entities.v1.Credentials", "default": { } } }, { "type": "null" } ], "title": "repeated strmprivacy.api.entities.v1.Credentials credentials = 9;", "default": [ { } ] }, "kafka_topic": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string kafka_topic = 11;", "description": "Kafka topic of the stream. Deprecated in favor of topic in message ExtendedStream", "default": "", "deprecationMessage": "Field \"kafka_topic\" is marked as deprecated" }, "masked_fields": { "oneOf": [ { "$ref": "#/definitions/strmprivacy.api.entities.v1.MaskedFields" }, { "type": "null" } ], "title": "strmprivacy.api.entities.v1.MaskedFields masked_fields = 10;", "description": "field masking is defined per OUTPUT stream and event-contract ref. combination\n\nThe default empty map means no masking. Otherwise, the algorithm in the decrypter is as follows.\n\n A source stream is (partially) decrypted, and events that don't have enough permissions are dropped.\n the event contract ref string is used to find a MaskedFields instance.\n if present, for all field patterns in the MaskedFields instance, the hash with the specified seed is applied.", "default": { } } }, "description": "Streams are source or derived streams depending on whether or not linked_stream is null.\nKey streams are a separate entity in the api." }, "strmprivacy.api.entities.v1.StreamRef": { "type": "object", "properties": { "billingId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef/definitions/billing_id" }, "name": { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef/definitions/name" }, "projectId": { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef/definitions/project_id" } }, "patternProperties": { "^billing_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef/definitions/billing_id" }, "^project_id$": { "$ref": "#/definitions/strmprivacy.api.entities.v1.StreamRef/definitions/project_id" } }, "additionalProperties": { "title": "Unknown field" }, "definitions": { "billing_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string billing_id = 1;", "default": "", "deprecationMessage": "Field \"billing_id\" is marked as deprecated" }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string name = 2;", "description": "the name of the stream\nconstraints: generic name", "default": "" }, "project_id": { "oneOf": [ { "type": "string" }, { "type": "null" } ], "title": "string project_id = 3;", "default": "" } }, "description": "refers to a event stream." } }, "title": "strmprivacy.api.entities.v1.Stream" }
strmprivacy
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition": { "properties": { "lastUpdateTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "timestamp for the last update to this condition" }, "message": { "description": "human readable message with details about the request state", "type": "string" }, "reason": { "description": "brief reason for the request state", "type": "string" }, "type": { "description": "request approval state, currently Approved or Denied.", "type": "string" } }, "required": [ "type" ], "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" } }, "properties": { "certificate": { "description": "If request was approved, the controller will place the issued certificate here.", "format": "byte", "type": [ "string", "null" ] }, "conditions": { "description": "Conditions applied to the request, such as approval or denial.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_76_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://opendev.org/openstack/openstacksdk/raw/branch/master/openstack/config/vendor-schema.json#", "type": "object", "properties": { "name": { "type": "string" }, "profile": { "type": "object", "properties": { "auth": { "type": "object", "properties": { "auth_url": { "name": "Auth URL", "description": "URL of the primary Keystone endpoint", "type": "string" } } }, "auth_type": { "name": "Auth Type", "description": "Name of authentication plugin to be used", "default": "password", "type": "string" }, "disable_vendor_agent": { "name": "Disable Vendor Agent Properties", "description": "Image properties required to disable vendor agent", "type": "object", "properties": {} }, "floating_ip_source": { "name": "Floating IP Source", "description": "Which service provides Floating IPs", "enum": [ "neutron", "nova", "None" ], "default": "neutron" }, "image_api_use_tasks": { "name": "Image Task API", "description": "Does the cloud require the Image Task API", "default": false, "type": "boolean" }, "image_format": { "name": "Image Format", "description": "Format for uploaded Images", "default": "qcow2", "type": "string" }, "interface": { "name": "API Interface", "description": "Which API Interface should connections hit", "default": "public", "enum": [ "public", "internal", "admin" ] }, "message": { "name": "Status message", "description": "Optional message with information related to status", "type": "string" }, "requires_floating_ip": { "name": "Requires Floating IP", "description": "Whether the cloud requires a floating IP to route traffic off of the cloud", "default": null, "type": [ "boolean", "null" ] }, "secgroup_source": { "name": "Security Group Source", "description": "Which service provides security groups", "enum": [ "neutron", "nova", "None" ], "default": "neutron" }, "status": { "name": "Vendor status", "description": "Status of the vendor's cloud", "enum": [ "active", "deprecated", "shutdown" ], "default": "active" }, "compute_service_name": { "name": "Compute API Service Name", "description": "Compute API Service Name", "type": "string" }, "database_service_name": { "name": "Database API Service Name", "description": "Database API Service Name", "type": "string" }, "dns_service_name": { "name": "DNS API Service Name", "description": "DNS API Service Name", "type": "string" }, "identity_service_name": { "name": "Identity API Service Name", "description": "Identity API Service Name", "type": "string" }, "image_service_name": { "name": "Image API Service Name", "description": "Image API Service Name", "type": "string" }, "volume_service_name": { "name": "Volume API Service Name", "description": "Volume API Service Name", "type": "string" }, "network_service_name": { "name": "Network API Service Name", "description": "Network API Service Name", "type": "string" }, "object_service_name": { "name": "Object Storage API Service Name", "description": "Object Storage API Service Name", "type": "string" }, "baremetal_service_name": { "name": "Baremetal API Service Name", "description": "Baremetal API Service Name", "type": "string" }, "compute_service_type": { "name": "Compute API Service Type", "description": "Compute API Service Type", "type": "string" }, "database_service_type": { "name": "Database API Service Type", "description": "Database API Service Type", "type": "string" }, "dns_service_type": { "name": "DNS API Service Type", "description": "DNS API Service Type", "type": "string" }, "identity_service_type": { "name": "Identity API Service Type", "description": "Identity API Service Type", "type": "string" }, "image_service_type": { "name": "Image API Service Type", "description": "Image API Service Type", "type": "string" }, "volume_service_type": { "name": "Volume API Service Type", "description": "Volume API Service Type", "type": "string" }, "network_service_type": { "name": "Network API Service Type", "description": "Network API Service Type", "type": "string" }, "object_service_type": { "name": "Object Storage API Service Type", "description": "Object Storage API Service Type", "type": "string" }, "baremetal_service_type": { "name": "Baremetal API Service Type", "description": "Baremetal API Service Type", "type": "string" }, "block_storage_api_version": { "name": "Block Storage API Version", "description": "Block Storage API Version", "type": "string" }, "compute_api_version": { "name": "Compute API Version", "description": "Compute API Version", "type": "string" }, "database_api_version": { "name": "Database API Version", "description": "Database API Version", "type": "string" }, "dns_api_version": { "name": "DNS API Version", "description": "DNS API Version", "type": "string" }, "identity_api_version": { "name": "Identity API Version", "description": "Identity API Version", "type": "string" }, "image_api_version": { "name": "Image API Version", "description": "Image API Version", "type": "string" }, "volume_api_version": { "name": "Volume API Version", "description": "Volume API Version", "type": "string" }, "network_api_version": { "name": "Network API Version", "description": "Network API Version", "type": "string" }, "object_api_version": { "name": "Object Storage API Version", "description": "Object Storage API Version", "type": "string" }, "baremetal_api_version": { "name": "Baremetal API Version", "description": "Baremetal API Version", "type": "string" }, "vendor_hook": { "name": "Hook for vendor customization", "description": "A possibility for a vendor to alter connection object", "type": "string" } } } }, "required": [ "name", "profile" ] }
o78015
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "change_history": { "$ref": "#/definitions/change_history" }, "groups": { "$ref": "#/definitions/service_manual_topic_groups" }, "visually_collapsed": { "description": "A flag set by a content designer when they want the sections of a topic to be collapsed into an accordion. This will likely be used when there are many items in the topic.", "type": "boolean" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "service_manual_topic_groups": { "description": "Lists of items with titles & content IDs in named groups, used for service manual topic pages", "items": { "additionalProperties": false, "properties": { "content_ids": { "$ref": "#/definitions/guid_list" }, "description": { "type": "string" }, "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "service_manual_topic" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "content_owners": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "References a page of a GDS community responsible for maintaining the guide e.g. Agile delivery community, Design community" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "email_alert_signup": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "References an email alert signup page for this topic" }, "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" }, "linked_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Includes all content ids referenced in 'details'. This is a temporary measure to expand content ids for frontends which is planned to be replaced by a dependency resolution service." }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "service_manual_topic" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21359
{ "items": { "properties": { "_scheme": { "enum": [ "INSPIRE", "arXiv", "APS", "PoS", "Elsevier" ], "title": "Original scheme", "type": "string" }, "_term": { "title": "Original term", "type": "string" }, "scheme": { "title": "INSPIRE", "type": "string" }, "source": { "enum": [ "INSPIRE", "submitter", "curator", "publisher" ], "type": "string" }, "term": { "enum": [ "Accelerators", "Astrophysics", "Computing", "Experiment-HEP", "Experiment-Nucl", "General Physics", "Gravitation and Cosmology", "Instrumentation", "Lattice", "Math and Math Physics", "Other", "Phenomenology-HEP", "Theory-HEP", "Theory-Nucl" ], "title": "INSPIRE term", "type": "string" } }, "type": "object" }, "title": "Research field categories.", "type": "array", "_uniqueItems": true }
o13666
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/crescentflare/SmartMockServer/master/smartmockserver_properties_schema.json", "title": "Smart mock server: properties schema", "description": "Defines the format of the properties file for the endpoints", "type": "object", "properties": { "method": { "description": "Restrict requests to the given method (if the methods don't match, the response will be an error)", "type": "string", "enum": [ "GET", "POST", "PUT", "DELETE", "PATCH" ] }, "delay": { "description": "Delay the response of a request in milliseconds", "type": "integer" }, "name": { "description": "Name a request, recommended in combination with other documentation", "type": "string" }, "description": { "description": "Add an additional description to a request, adds a good improvement to the documentation", "type": "string" }, "category": { "description": "Use this to group similar requests together into categories, useful to keep the mock server maintainable when more and more requests are being added", "type": "string" }, "getParameters": { "description": "A list of parameters which will be added to the URL", "type": "object" }, "postParameters": { "description": "Similar to getParameters, used for requests with a body (the parameters will be part of the request body)", "type": "object" }, "postJson": { "description": "Used for requests requiring JSON structure in the body data", "type": "object" }, "responseCode": { "description": "The HTTP result code. If not specified it will fall back to 200 in case of success", "type": "integer" }, "alternatives": { "description": "Provide alternative responses when certain conditions are met (based on parameters, method, etc.)", "type": "array", "items": { "$ref": "#" } }, "generates": { "description": "Use this to automatically set up things like an index page or a file server", "type": "string", "enum": [ "indexPage", "fileList", "commandConsole" ] }, "redirect": { "description": "A path to redirect to. Uses properties, responseBody and other files from the relative path specified by this property", "type": "string" }, "generatesJson": { "description": "File server only: this will generate the file list as a json response when visiting the index page", "type": "boolean" }, "includeSHA256": { "description": "File server only: generate an sha256 hash of each file being listed in the json response of the file server, combined with the generatesJson property", "type": "boolean" }, "hidden": { "description": "Alternative responses only: hide it from the index page", "type": "boolean" }, "responsePath": { "description": "Alternative responses only: specify the prefix of the alternative response file, if this value is 'alternativeTest', a JSON file being read can be alternativeTest.json", "type": "string" }, "checkHeaders": { "description": "Alternative responses only: check these headers when finding an alternative response", "type": "object" } } }
o33692
{ "id": "http://schemas.triniti.io/json-schema/triniti/boost/mixin/sponsor/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "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" } }, "type": { "type": "string", "default": "external", "enum": [ "unknown", "external", "internal", "advertorial" ], "pbj": { "type": "string-enum", "rule": "single" } }, "permalink_html_head": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A string containing code that is injected into the application's html head tag.", "pbj": { "type": "text", "rule": "single" } }, "permalink_badge": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A string containing code that is injected into the application typically next to/near the title of the content. It will be wrapped in a div with the id and slug of the sponsor.", "pbj": { "type": "text", "rule": "single" } }, "timeline_badge": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "See description for \"permalink_badge\". This is very similar but in this case the page is rendering many pieces of content, e.g. blogroll.", "pbj": { "type": "text", "rule": "single" } } }, "required": [ "_id" ], "additionalProperties": true }
o82632
{ "additionalProperties": false, "description": "Transport the value of an input", "minProperties": 1, "properties": { "v": { "description": "value as integer", "type": "integer" } }, "required": [ "v" ], "title": "Single value schema", "type": "object" }
o80622
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Wangscape terrain hypergraph schema", "description": "Specifies the clique memberships of each terrain in a Wangscape configuration.", "patternProperties": { "^[0-9a-zA-Z_-]+$": { "title": "Clique list schema", "description": "Lists all the cliques which contain a certain terrain.", "type": "array", "items": { "title": "Clique schema", "description": "Specifies a terrain clique as a list of terrain IDs.", "type": "array", "items": { "title": "Terrain ID schema", "description": "Specifies a terrain type.", "type": "string", "pattern": "^[0-9a-zA-Z_-]+$" }, "minItems": 1 } } } }
o74561
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "created": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "description": { "type": "string" }, "id": { "type": "integer" }, "modified": { "pattern": "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{6}", "type": "string" }, "name": { "type": "string" }, "resource_uri": { "type": "string" } }, "required": [ "resource_uri", "created", "modified", "name", "description", "id" ], "type": "object" }
o12617
{ "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_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_PodTemplate": { "description": "PodTemplate describes a template for creating copies of a predefined pod.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "PodTemplate" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodTemplate", "version": "v1" } ] }, "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_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "PodTemplateList is a list of PodTemplates.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "v1" ], "type": [ "string", "null" ] }, "items": { "description": "List of pod templates", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplate" }, "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": [ "PodTemplateList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodTemplateList", "version": "v1" } ] }
kb_740_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape type (e.g., triangle, rectangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_aa85f417
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape type (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_26c9d055
{ "$defs": { "file": { "oneOf": [ { "description": "This object or string represents the file format", "type": "string" }, { "description": "This object or string represents the file format", "type": "null" }, { "$ref": "#/$defs/fileFormat", "description": "This object or string represents the file format" } ] }, "fileFormat": { "description": "This object represents a file format", "type": "object", "properties": { "name": { "description": "Name of block file", "type": "string" }, "template": { "description": "Path to file template", "type": "string" } }, "required": ["name"] } }, "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/lego.json", "properties": { "blocks": { "description": "An array of your app's blocks.", "type": "array", "items": { "type": "object", "properties": { "type": { "description": "The name of the block type", "type": "string" }, "path": { "description": "Path relative to root where the block will be stored", "type": "string" }, "isFile": { "description": "Is this a file? or a folder? False by default.", "type": "boolean" }, "files": { "description": "Files making up the block", "type": "array", "items": { "$ref": "#/$defs/file" } }, "file": { "$ref": "#/$defs/file" } }, "required": ["type", "path"] } }, "fileFormats": { "description": "An object mapping file objects to strings", "type": "object", "patternProperties": { ".*": { "$ref": "#/$defs/fileFormat" } } } }, "required": ["blocks"], "type": "object" }
lego
{ "properties": { "pointA": { "properties": { "latitude": { "description": "The latitude of point A", "type": "number" }, "longitude": { "description": "The longitude of point A", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }, "pointB": { "properties": { "latitude": { "description": "The latitude of point B", "type": "number" }, "longitude": { "description": "The longitude of point B", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" } }, "required": [ "pointA", "pointB" ], "type": "object" }
calculate_distance_52079743
{ "properties": { "property_details": { "properties": { "bathrooms": { "description": "The number of bathrooms in the property", "type": "integer" }, "bedrooms": { "description": "The number of bedrooms in the property", "type": "integer" }, "location": { "description": "The location of the property", "type": "string" } }, "required": [ "location", "bedrooms", "bathrooms" ], "type": "object" } }, "required": [ "property_details" ], "type": "object" }
calculate_rental_income_fc698629
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "linked_items": { "description": "Includes all content ids referenced in 'details'. This is a temporary measure to expand content ids for frontends which is planned to be replaced by a dependency resolution service.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21405
{ "properties": { "customer_id": { "description": "The unique identifier of the customer", "type": "string" }, "order_details": { "description": "The details of the products included in the invoice", "items": { "properties": { "price": { "description": "The price of the product", "type": "number" }, "product_id": { "description": "The unique identifier of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product_id", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_id", "order_details" ], "type": "object" }
create_invoice_d62f99e4
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "https://json.schemastore.org/typings.json", "properties": { "main": { "description": "The entry point to the definition (canonical to `\"main\"` in NPM's `package.json`).", "type": "string" }, "browser": { "description": "A string, or map of paths, to override during resolution. See spec: https://github.com/defunctzombie/package-browser-field-spec", "type": ["object", "string"] }, "version": { "description": "The semver range this definition is typed for", "type": "string" }, "homepage": { "description": "Homepage url of the source package", "type": "string" }, "resolution": { "description": "Map of resolutions to install", "type": ["object", "string"] }, "files": { "description": "Used as an alternative or to complement `main`, specify an array of files that are exported but aren't already part of the resolution from `main`.", "type": "array", "items": { "type": "string" } }, "global": { "description": "Denote that this definition _must_ be installed as global.", "type": "boolean" }, "postmessage": { "description": "A message to emit to users after typings installation.", "type": "string" }, "name": { "description": "The name of the definition", "type": "string" }, "dependencies": { "description": "A map of dependencies required by the project.", "type": "object", "additionalProperties": { "type": "string" } }, "devDependencies": { "description": "A map of dependencies required by the project during development.", "type": "object", "additionalProperties": { "type": "string" } }, "peerDependencies": { "description": "A map of dependencies expected in the parent project for this dependency to work.", "type": "object", "additionalProperties": { "type": "string" } }, "globalDependencies": { "description": "A map of global dependencies required by the project.", "type": "object", "additionalProperties": { "type": "string" } }, "globalDevDependencies": { "description": "A map of global dependencies required by the project during development.", "type": "object", "additionalProperties": { "type": "string" } } }, "title": "JSON schema for Typings TypeScript definitions manager", "type": "object" }
typings
{ "$schema": "http://json-schema.org/draft-06/schema#", "version": "1.0.0", "type": "object", "properties": { "adventure": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "id": { "type": "string" }, "contents": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "headers": { "type": "array", "items": { "type": "string" } }, "ordinal": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "chapter", "appendix", "part", "episode" ] }, "identifier": { "type": [ "integer", "string" ] } }, "additionalProperties": false, "required": [ "type", "identifier" ] } }, "additionalProperties": false, "required": [ "name" ] } }, "level": { "oneOf": [ { "type": "object", "properties": { "start": { "type": "integer" }, "end": { "type": "integer" } }, "additionalProperties": false, "required": [ "start", "end" ] }, { "type": "object", "properties": { "custom": { "type": "string" } }, "additionalProperties": false, "required": [ "custom" ] } ] }, "published": { "type": "string", "format": "date" }, "storyline": { "type": "string", "enum": [ "Starter Set", "Tyranny of Dragons", "Elemental Evil", "Rage of Demons", "Curse of Strahd", "Storm King's Thunder", "Tales from the Yawning Portal", "Tomb of Annihilation" ] } }, "additionalProperties": false, "required": [ "name", "id", "contents", "level", "published", "storyline" ] } } }, "additionalProperties": false }
o44926
{ "$id": "https://json.schemastore.org/bungee-plugin", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "definitions": { "plugin-name": { "type": "string", "pattern": "^[A-Za-z0-9_\\.-]+$" } }, "properties": { "name": { "description": "The name of the plugin.", "$ref": "#/definitions/plugin-name" }, "main": { "description": "Plugin main class.", "type": "string", "pattern": "^([a-zA-Z_$][a-zA-Z\\d_$]*\\.)*[a-zA-Z_$][a-zA-Z\\d_$]*$" }, "version": { "description": "Plugin version.", "type": "string" }, "author": { "description": "Plugin author.", "type": "string" }, "depends": { "description": "Plugin hard dependencies.", "type": "array", "items": { "$ref": "#/definitions/plugin-name" } }, "softDepends": { "description": "Plugin soft dependencies.", "type": "array", "items": { "$ref": "#/definitions/plugin-name" } }, "description": { "description": "Optional description.", "type": "string" } }, "required": ["name", "main"], "title": "JSON schema for BungeeCord Plugin YAML", "type": "object" }
bungee-plugin
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Login JSON Schema", "name": "login", "type": "object", "properties": { "status": { "description": "User Authorized Flag", "type": "boolean" }, "userID": { "description": "Identifier for the user", "type": "number", "minimum": 0 }, "username": { "description": "Name of the user", "type": "string", "maxLength": 20 }, "type": { "description": "User type", "enum": [ "user", "superuser" ] } }, "required": [ "status" ], "additionalProperties": false }
o56009
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "additionalTerms": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "budgetRange": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "contractLength": { "maxLength": 100, "minLength": 0, "type": "string" }, "culturalFitCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "culturalWeighting": { "maximum": 20, "minimum": 5, "type": "integer" }, "earlyMarketEngagement": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,199}\\S+$)", "type": "string" }, "essentialRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "evaluationType": { "items": { "enum": [ "Reference", "Interview", "Scenario or test", "Presentation" ] }, "maxItems": 4, "minItems": 0, "type": "array", "_uniqueItems": true }, "existingTeam": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "location": { "enum": [ "Scotland", "North East England", "North West England", "Yorkshire and the Humber", "East Midlands", "West Midlands", "East of England", "Wales", "London", "South East England", "South West England", "Northern Ireland", "Offsite" ] }, "niceToHaveRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 0, "type": "array" }, "numberOfSuppliers": { "maximum": 15, "minimum": 3, "type": "integer" }, "organisation": { "maxLength": 100, "minLength": 1, "type": "string" }, "priceWeighting": { "maximum": 85, "minimum": 20, "type": "integer" }, "questionAndAnswerSessionDetails": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "requirementsLength": { "enum": [ "1 week", "2 weeks" ] }, "securityClearance": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,49}\\S+$)", "type": "string" }, "specialistRole": { "enum": [ "agileCoach", "businessAnalyst", "communicationsManager", "contentDesigner", "securityConsultant", "dataArchitect", "dataEngineer", "dataScientist", "deliveryManager", "designer", "developer", "performanceAnalyst", "portfolioManager", "productManager", "programmeManager", "qualityAssurance", "serviceManager", "technicalArchitect", "userResearcher", "webOperations" ] }, "specialistWork": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "startDate": { "_format": "date", "type": "string" }, "summary": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "technicalWeighting": { "maximum": 75, "minimum": 10, "type": "integer" }, "title": { "maxLength": 100, "minLength": 1, "type": "string" }, "workingArrangements": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "workplaceAddress": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" } }, "required": [ "culturalFitCriteria", "culturalWeighting", "essentialRequirements", "existingTeam", "location", "numberOfSuppliers", "organisation", "priceWeighting", "requirementsLength", "specialistRole", "specialistWork", "startDate", "summary", "technicalWeighting", "title", "workingArrangements", "workplaceAddress" ], "title": "Digital Outcomes and Specialists 4 Digital specialists Brief Schema", "type": "object" }
o21073
{ "additionalProperties": false, "definitions": { "pathType": { "pattern": "^(\\/?((\\.{2})|([a-z0-9][a-z0-9\\-.]*[a-z0-9]+)|([a-z0-9]*))($|\\/))+$", "type": "string" } }, "not": { "allOf": [ { "required": [ "cmd" ] }, { "required": [ "args" ] } ] }, "properties": { "acceptedResourceRoles": { "items": { "type": "string" }, "type": "array" }, "args": { "items": { "type": "string" }, "type": "array" }, "backoffFactor": { "minimum": 1.0, "type": "number" }, "backoffSeconds": { "minimum": 0, "type": "integer" }, "cmd": { "minLength": 1, "type": "string" }, "constraints": {}, "container": { "additionalProperties": false, "properties": { "docker": { "additionalProperties": false, "properties": { "forcePullImage": { "type": "boolean" }, "image": { "minLength": 1, "type": "string" }, "network": { "type": "string" }, "parameters": { "items": { "additionalProperties": false, "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" }, "portMappings": { "items": { "additionalProperties": false, "properties": { "containerPort": { "maximum": 65535, "minimum": 0, "type": "integer" }, "hostPort": { "maximum": 65535, "minimum": 0, "type": "integer" }, "protocol": { "type": "string" }, "servicePort": { "maximum": 65535, "minimum": 0, "type": "integer" } }, "type": "object" }, "type": "array" }, "privileged": { "type": "boolean" } }, "required": [ "image" ], "type": "object" }, "type": { "type": "string" }, "volumes": { "items": { "additionalProperties": false, "properties": { "containerPath": { "type": "string" }, "hostPath": { "type": "string" }, "mode": { "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "cpus": { "minimum": 0, "type": "number" }, "dependencies": { "items": { "$ref": "#/definitions/pathType" }, "type": "array" }, "disk": { "minimum": 0, "type": "number" }, "env": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "executor": { "pattern": "^(|\\/\\/cmd|\\/?[^\\/]+(\\/[^\\/]+)*)$", "type": "string" }, "healthChecks": { "items": { "additionalProperties": false, "properties": { "command": { "items": { "additionalProperties": false, "properties": { "value": { "type": "string" } } }, "type": "object" }, "gracePeriodSeconds": { "minimum": 0, "type": "integer" }, "ignoreHttp1xx": { "type": "boolean" }, "intervalSeconds": { "minimum": 0, "type": "integer" }, "maxConsecutiveFailures": { "minimum": 0, "type": "integer" }, "path": { "type": "string" }, "portIndex": { "minimum": 0, "type": "integer" }, "protocol": { "type": "string" }, "timeoutSeconds": { "minimum": 0, "type": "integer" } }, "type": "object" }, "type": "array" }, "id": { "$ref": "#/definitions/pathType" }, "instances": { "minimum": 0, "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "maxLaunchDelaySeconds": { "minimum": 0, "type": "integer" }, "mem": { "minimum": 0, "type": "number" }, "ports": { "items": { "maximum": 65535, "minimum": 0, "type": "integer" }, "type": "array", "_uniqueItems": true }, "requirePorts": { "type": "boolean" }, "storeUrls": { "items": { "type": "string" }, "type": "array" }, "upgradeStrategy": { "additionalProperties": false, "properties": { "maximumOverCapacity": { "maximum": 1.0, "minimum": 0.0, "type": "number" }, "minimumHealthCapacity": { "maximum": 1.0, "minimum": 0.0, "type": "number" } }, "type": "object" }, "uris": { "items": { "type": "string" }, "type": "array" }, "user": { "type": "string" }, "version": { "_format": "date-time", "type": "string" }, "versionInfo": { "additionalProperties": false, "properties": { "lastConfigChangeAt": { "_format": "date-time", "type": "string" }, "lastScalingAt": { "_format": "date-time", "type": "string" } }, "type": "object" } }, "required": [ "id" ], "type": "object" }
o76776
{ "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_AzureFilePersistentVolumeSource": { "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" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "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_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "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 secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "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_SecretReference", "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_CinderPersistentVolumeSource": { "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_SecretReference", "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_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_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent 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_SecretReference", "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_GlusterfsPersistentVolumeSource": { "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" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. 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_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "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_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "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_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_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_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "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_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "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_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "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_FlexPersistentVolumeSource", "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 and exposed to the pod for its usage. 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. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. 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 directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. 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_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "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. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "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" }, "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_RBDPersistentVolumeSource", "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_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "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" } }, "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_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_RBDPersistentVolumeSource": { "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_SecretReference", "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_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource 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_SecretReference", "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_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "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_ObjectReference", "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_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "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_storage_v1beta1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": [ "string", "null" ] }, "nodeName": { "description": "The node that the volume should be attached to.", "type": [ "string", "null" ] }, "source": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }
kb_1120_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "Telecom": { "type": "object", "additionalProperties": true, "title": "Telecom schema.", "description": "An explanation about the purpose of this instance described by this schema.", "properties": { "value": { "type": [ "string", "null" ], "minLength": 1 }, "preferred": { "type": [ "boolean", "null" ], "minLength": 1 }, "use": { "type": [ "string", "null" ], "minLength": 1 } } }, "Contactable": { "type": "object", "additionalProperties": true, "allOf": [ { "$ref": "#/definitions/Telecom" } ] } }, "properties": { "Telecom": { "$ref": "#/definitions/Telecom" }, "Contactable": { "$ref": "#/definitions/Contactable" } }, "required": [ "Telecom", "Contactable" ] }
o68471
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "description": { "readonly": true, "type": "string" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "hits": { "readonly": true, "type": "integer" }, "isdefault": { "readonly": true, "type": "boolean" }, "name": { "type": "string" }, "profilename": { "type": "string" }, "rule": { "type": "string" }, "undefaction": { "readonly": true, "type": "string" }, "undefhits": { "readonly": true, "type": "integer" } }, "title": "vpnclientlessaccesspolicy", "type": "object" }
o31132
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "list", "description": "A list atom", "type": "object", "properties": { "modifier": { "description": "A pattern modifier", "enum": [ "", "mix" ] }, "listItems": { "type": "array", "items": { "type": "object", "properties": { "icon": { "enum": [ "arrow", "check", "nitro" ] }, "text": { "type": "string" } } }, "minItems": 1, "maxItems": 3 } }, "required": [ "modifier", "listItems" ] }
o62774
{ "description": "Pass this schematic to the \"run\" command to create a service worker", "properties": { "configuration": { "default": "production", "description": "The configuration to apply service worker to.", "type": "string" }, "project": { "$default": { "$source": "projectName" }, "description": "The name of the project.", "type": "string" }, "target": { "default": "build", "description": "The target to apply service worker to.", "type": "string" } }, "required": [ "project" ], "title": "Angular Service Worker Options Schema", "type": "object" }
o83898
{ "anyOf": [ { "$ref": "#/definitions/SkaffoldConfig" } ], "definitions": { "Activation": { "additionalProperties": false, "description": "criteria by which a profile is auto-activated.", "preferredOrder": [ "env", "kubeContext", "command" ], "properties": { "command": { "description": "a Skaffold command for which the profile is auto-activated.", "examples": [ "dev" ], "type": "string", "x-intellij-html-description": "a Skaffold command for which the profile is auto-activated." }, "env": { "description": "a `key=pattern` pair. The profile is auto-activated if an Environment Variable `key` matches the pattern. If the pattern starts with `!`, activation happens if the remaining pattern is _not_ matched. The pattern matches if the Environment Variable value is exactly `pattern`, or the regex `pattern` is found in it. An empty `pattern` (e.g. `env: \"key=\"`) always only matches if the Environment Variable is undefined or empty.", "examples": [ "ENV=production" ], "type": "string", "x-intellij-html-description": "a <code>key=pattern</code> pair. The profile is auto-activated if an Environment Variable <code>key</code> matches the pattern. If the pattern starts with <code>!</code>, activation happens if the remaining pattern is <em>not</em> matched. The pattern matches if the Environment Variable value is exactly <code>pattern</code>, or the regex <code>pattern</code> is found in it. An empty <code>pattern</code> (e.g. <code>env: &quot;key=&quot;</code>) always only matches if the Environment Variable is undefined or empty." }, "kubeContext": { "description": "a Kubernetes context for which the profile is auto-activated.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "a Kubernetes context for which the profile is auto-activated." } }, "x-intellij-html-description": "criteria by which a profile is auto-activated." }, "Artifact": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "docker" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "docker": { "$ref": "#/definitions/DockerArtifact", "description": "*beta* describes an artifact built from a Dockerfile.", "x-intellij-html-description": "<em>beta</em> describes an artifact built from a Dockerfile." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "bazel" ], "properties": { "bazel": { "$ref": "#/definitions/BazelArtifact", "description": "*beta* requires bazel CLI to be installed and the sources to contain [Bazel](https://bazel.build/) configuration files.", "x-intellij-html-description": "<em>beta</em> requires bazel CLI to be installed and the sources to contain <a href=\"https://bazel.build/\">Bazel</a> configuration files." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "jib" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "jib": { "$ref": "#/definitions/JibArtifact", "description": "builds images using the [Jib plugins for Maven or Gradle](https://github.com/GoogleContainerTools/jib/).", "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven or Gradle</a>." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "kaniko" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "kaniko": { "$ref": "#/definitions/KanikoArtifact", "description": "builds images using [kaniko](https://github.com/GoogleContainerTools/kaniko).", "x-intellij-html-description": "builds images using <a href=\"https://github.com/GoogleContainerTools/kaniko\">kaniko</a>." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "buildpacks" ], "properties": { "buildpacks": { "$ref": "#/definitions/BuildpackArtifact", "description": "builds images using [Cloud Native Buildpacks](https://buildpacks.io/).", "x-intellij-html-description": "builds images using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>." }, "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } }, { "additionalProperties": false, "preferredOrder": [ "image", "context", "sync", "custom" ], "properties": { "context": { "default": ".", "description": "directory containing the artifact's sources.", "type": "string", "x-intellij-html-description": "directory containing the artifact's sources." }, "custom": { "$ref": "#/definitions/CustomArtifact", "description": "*beta* builds images using a custom build script written by the user.", "x-intellij-html-description": "<em>beta</em> builds images using a custom build script written by the user." }, "image": { "description": "name of the image to be built.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "name of the image to be built." }, "sync": { "$ref": "#/definitions/Sync", "default": "infer: [\"**/*\"]", "description": "*beta* local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination.", "x-intellij-html-description": "<em>beta</em> local files synced to pods instead of triggering an image build when modified. If no files are listed, sync all the files and infer the destination." } } } ], "description": "items that need to be built, along with the context in which they should be built.", "required": [ "image" ], "x-intellij-html-description": "items that need to be built, along with the context in which they should be built." }, "Auto": { "description": "cannot be customized.", "x-intellij-html-description": "cannot be customized." }, "BazelArtifact": { "additionalProperties": false, "description": "describes an artifact built with [Bazel](https://bazel.build/).", "preferredOrder": [ "target", "args" ], "properties": { "args": { "default": "[]", "description": "additional args to pass to `bazel build`.", "examples": [ "[\"-flag\", \"--otherflag\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args to pass to <code>bazel build</code>." }, "target": { "description": "`bazel build` target to run.", "examples": [ "//:skaffold_example.tar" ], "type": "string", "x-intellij-html-description": "<code>bazel build</code> target to run." } }, "required": [ "target" ], "x-intellij-html-description": "describes an artifact built with <a href=\"https://bazel.build/\">Bazel</a>." }, "BuildConfig": { "anyOf": [ { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "local" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "local": { "$ref": "#/definitions/LocalBuild", "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "googleCloudBuild" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "googleCloudBuild": { "$ref": "#/definitions/GoogleCloudBuild", "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/).", "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/\">Google Cloud Build</a>." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "artifacts", "insecureRegistries", "tagPolicy", "cluster" ], "properties": { "artifacts": { "description": "the images you're going to be building.", "items": { "$ref": "#/definitions/Artifact" }, "type": "array", "x-intellij-html-description": "the images you're going to be building." }, "cluster": { "$ref": "#/definitions/ClusterDetails", "description": "*beta* describes how to do an on-cluster build.", "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "insecureRegistries": { "default": "[]", "description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of registries declared by the user to be insecure. These registries will be connected to via HTTP instead of HTTPS." }, "tagPolicy": { "$ref": "#/definitions/TagPolicy", "description": "*beta* determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to `gitCommit: {variant: Tags}`.", "x-intellij-html-description": "<em>beta</em> determines how images are tagged. A few strategies are provided here, although you most likely won't need to care! If not specified, it defaults to <code>gitCommit: {variant: Tags}</code>." } } } ], "description": "contains all the configuration for the build steps.", "x-intellij-html-description": "contains all the configuration for the build steps." }, "BuildpackArtifact": { "additionalProperties": false, "description": "*alpha* describes an artifact built using [Cloud Native Buildpacks](https://buildpacks.io/). It can be used to build images out of project's sources without any additional configuration.", "preferredOrder": [ "builder", "runImage", "env", "buildpacks", "trustBuilder", "projectDescriptor", "dependencies" ], "properties": { "builder": { "description": "builder image used.", "type": "string", "x-intellij-html-description": "builder image used." }, "buildpacks": { "default": "[]", "description": "a list of strings, where each string is a specific buildpack to use with the builder. If you specify buildpacks the builder image automatic detection will be ignored. These buildpacks will be used to build the Image from your source code. Order matters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "a list of strings, where each string is a specific buildpack to use with the builder. If you specify buildpacks the builder image automatic detection will be ignored. These buildpacks will be used to build the Image from your source code. Order matters." }, "dependencies": { "$ref": "#/definitions/BuildpackDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." }, "env": { "default": "[]", "description": "environment variables, in the `key=value` form, passed to the build. Values can use the go template syntax.", "examples": [ "[\"key1=value1\", \"key2=value2\", \"key3={{.ENV_VARIABLE}}\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "environment variables, in the <code>key=value</code> form, passed to the build. Values can use the go template syntax." }, "projectDescriptor": { "default": "project.toml", "description": "path to the project descriptor file.", "type": "string", "x-intellij-html-description": "path to the project descriptor file." }, "runImage": { "description": "overrides the stack's default run image.", "type": "string", "x-intellij-html-description": "overrides the stack's default run image." }, "trustBuilder": { "default": "false", "description": "indicates that the builder should be trusted.", "type": "boolean", "x-intellij-html-description": "indicates that the builder should be trusted." } }, "required": [ "builder" ], "x-intellij-html-description": "<em>alpha</em> describes an artifact built using <a href=\"https://buildpacks.io/\">Cloud Native Buildpacks</a>. It can be used to build images out of project's sources without any additional configuration." }, "BuildpackDependencies": { "additionalProperties": false, "description": "*alpha* used to specify dependencies for an artifact built by buildpacks.", "preferredOrder": [ "paths", "ignore" ], "properties": { "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>alpha</em> used to specify dependencies for an artifact built by buildpacks." }, "ClusterDetails": { "additionalProperties": false, "description": "*beta* describes how to do an on-cluster build.", "preferredOrder": [ "HTTP_PROXY", "HTTPS_PROXY", "pullSecretPath", "pullSecretName", "pullSecretMountPath", "namespace", "timeout", "dockerConfig", "serviceAccount", "tolerations", "annotations", "runAsUser", "resources", "concurrency", "volumes", "randomPullSecret", "randomDockerConfigSecret" ], "properties": { "HTTPS_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "HTTP_PROXY": { "description": "for kaniko pod.", "type": "string", "x-intellij-html-description": "for kaniko pod." }, "annotations": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "describes the Kubernetes annotations for the pod.", "type": "object", "x-intellij-html-description": "describes the Kubernetes annotations for the pod." }, "concurrency": { "default": "0", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "dockerConfig": { "$ref": "#/definitions/DockerConfig", "description": "describes how to mount the local Docker configuration into a pod.", "x-intellij-html-description": "describes how to mount the local Docker configuration into a pod." }, "namespace": { "description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration.", "type": "string", "x-intellij-html-description": "Kubernetes namespace. Defaults to current namespace in Kubernetes configuration." }, "pullSecretMountPath": { "description": "path the pull secret will be mounted at within the running container.", "type": "string", "x-intellij-html-description": "path the pull secret will be mounted at within the running container." }, "pullSecretName": { "default": "kaniko-secret", "description": "name of the Kubernetes secret for pulling base images and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key `kaniko-secret`.", "type": "string", "x-intellij-html-description": "name of the Kubernetes secret for pulling base images and pushing the final image. If given, the secret needs to contain the Google Cloud service account secret key under the key <code>kaniko-secret</code>." }, "pullSecretPath": { "description": "path to the Google Cloud service account secret key file.", "type": "string", "x-intellij-html-description": "path to the Google Cloud service account secret key file." }, "randomDockerConfigSecret": { "default": "false", "description": "adds a random UUID postfix to the default name of the docker secret to facilitate parallel builds, e.g. docker-cfgfd154022-c761-416f-8eb3-cf8258450b85.", "type": "boolean", "x-intellij-html-description": "adds a random UUID postfix to the default name of the docker secret to facilitate parallel builds, e.g. docker-cfgfd154022-c761-416f-8eb3-cf8258450b85." }, "randomPullSecret": { "default": "false", "description": "adds a random UUID postfix to the default name of the pull secret to facilitate parallel builds, e.g. kaniko-secretdocker-cfgfd154022-c761-416f-8eb3-cf8258450b85.", "type": "boolean", "x-intellij-html-description": "adds a random UUID postfix to the default name of the pull secret to facilitate parallel builds, e.g. kaniko-secretdocker-cfgfd154022-c761-416f-8eb3-cf8258450b85." }, "resources": { "$ref": "#/definitions/ResourceRequirements", "description": "define the resource requirements for the kaniko pod.", "x-intellij-html-description": "define the resource requirements for the kaniko pod." }, "runAsUser": { "description": "defines the UID to request for running the container. If omitted, no SeurityContext will be specified for the pod and will therefore be inherited from the service account.", "type": "integer", "x-intellij-html-description": "defines the UID to request for running the container. If omitted, no SeurityContext will be specified for the pod and will therefore be inherited from the service account." }, "serviceAccount": { "description": "describes the Kubernetes service account to use for the pod. Defaults to 'default'.", "type": "string", "x-intellij-html-description": "describes the Kubernetes service account to use for the pod. Defaults to 'default'." }, "timeout": { "description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (`20m`).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build is allowed to run. Defaults to 20 minutes (<code>20m</code>)." }, "tolerations": { "default": "[]", "description": "describes the Kubernetes tolerations for the pod.", "items": {}, "type": "array", "x-intellij-html-description": "describes the Kubernetes tolerations for the pod." }, "volumes": { "default": "[]", "description": "defines container mounts for ConfigMap and Secret resources.", "items": {}, "type": "array", "x-intellij-html-description": "defines container mounts for ConfigMap and Secret resources." } }, "x-intellij-html-description": "<em>beta</em> describes how to do an on-cluster build." }, "CustomArtifact": { "additionalProperties": false, "description": "*beta* describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold.", "preferredOrder": [ "buildCommand", "dependencies" ], "properties": { "buildCommand": { "description": "command executed to build the image.", "type": "string", "x-intellij-html-description": "command executed to build the image." }, "dependencies": { "$ref": "#/definitions/CustomDependencies", "description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact.", "x-intellij-html-description": "file dependencies that skaffold should watch for both rebuilding and file syncing for this artifact." } }, "x-intellij-html-description": "<em>beta</em> describes an artifact built from a custom build script written by the user. It can be used to build images with builders that aren't directly integrated with skaffold." }, "CustomDependencies": { "additionalProperties": false, "description": "*beta* used to specify dependencies for an artifact built by a custom build script. Either `dockerfile` or `paths` should be specified for file watching to work as expected.", "preferredOrder": [ "dockerfile", "command", "paths", "ignore" ], "properties": { "command": { "description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command *must* be a valid JSON array.", "type": "string", "x-intellij-html-description": "represents a custom command that skaffold executes to obtain dependencies. The output of this command <em>must</em> be a valid JSON array." }, "dockerfile": { "$ref": "#/definitions/DockerfileDependency", "description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies.", "x-intellij-html-description": "should be set if the artifact is built from a Dockerfile, from which skaffold can determine dependencies." }, "ignore": { "default": "[]", "description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both `paths` and in `ignore`, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with `paths`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "specifies the paths that should be ignored by skaffold's file watcher. If a file exists in both <code>paths</code> and in <code>ignore</code>, it will be ignored, and will be excluded from both rebuilds and file synchronization. Will only work in conjunction with <code>paths</code>." }, "paths": { "default": "[]", "description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "should be set to the file dependencies for this artifact, so that the skaffold file watcher knows when to rebuild and perform file synchronization." } }, "x-intellij-html-description": "<em>beta</em> used to specify dependencies for an artifact built by a custom build script. Either <code>dockerfile</code> or <code>paths</code> should be specified for file watching to work as expected." }, "DateTimeTagger": { "additionalProperties": false, "description": "*beta* tags images with the build timestamp.", "preferredOrder": [ "format", "timezone" ], "properties": { "format": { "default": "2006-01-02_15-04-05.999_MST", "description": "formats the date and time. See [#Time.Format](https://golang.org/pkg/time/#Time.Format).", "type": "string", "x-intellij-html-description": "formats the date and time. See <a href=\"https://golang.org/pkg/time/#Time.Format\">#Time.Format</a>." }, "timezone": { "description": "sets the timezone for the date and time. See [Time.LoadLocation](https://golang.org/pkg/time/#Time.LoadLocation). Defaults to the local timezone.", "type": "string", "x-intellij-html-description": "sets the timezone for the date and time. See <a href=\"https://golang.org/pkg/time/#Time.LoadLocation\">Time.LoadLocation</a>. Defaults to the local timezone." } }, "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "DeployConfig": { "additionalProperties": false, "description": "contains all the configuration needed by the deploy steps.", "preferredOrder": [ "helm", "kubectl", "kustomize", "statusCheckDeadlineSeconds", "kubeContext" ], "properties": { "helm": { "$ref": "#/definitions/HelmDeploy", "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "kubeContext": { "description": "Kubernetes context that Skaffold should deploy to.", "examples": [ "minikube" ], "type": "string", "x-intellij-html-description": "Kubernetes context that Skaffold should deploy to." }, "kubectl": { "$ref": "#/definitions/KubectlDeploy", "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "kustomize": { "$ref": "#/definitions/KustomizeDeploy", "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "statusCheckDeadlineSeconds": { "description": "*beta* deadline for deployments to stabilize in seconds.", "type": "integer", "x-intellij-html-description": "<em>beta</em> deadline for deployments to stabilize in seconds." } }, "x-intellij-html-description": "contains all the configuration needed by the deploy steps." }, "DockerArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, usually using `docker build`.", "preferredOrder": [ "dockerfile", "target", "buildArgs", "network", "cacheFrom", "noCache" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build." }, "cacheFrom": { "default": "[]", "description": "the Docker images used as cache sources.", "examples": [ "[\"golang:1.10.1-alpine3.7\", \"alpine:3.7\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Docker images used as cache sources." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "network": { "description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are `host`: use the host's networking stack. `bridge`: use the bridged network configuration. `none`: no networking in the container.", "enum": [ "host", "bridge", "none" ], "type": "string", "x-intellij-html-description": "passed through to docker and overrides the network configuration of docker builder. If unset, use whatever is configured in the underlying docker daemon. Valid modes are <code>host</code>: use the host's networking stack. <code>bridge</code>: use the bridged network configuration. <code>none</code>: no networking in the container." }, "noCache": { "default": "false", "description": "used to pass in --no-cache to docker build to prevent caching.", "type": "boolean", "x-intellij-html-description": "used to pass in --no-cache to docker build to prevent caching." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, usually using <code>docker build</code>." }, "DockerConfig": { "additionalProperties": false, "description": "contains information about the docker `config.json` to mount.", "preferredOrder": [ "path", "secretName" ], "properties": { "path": { "description": "path to the docker `config.json`.", "type": "string", "x-intellij-html-description": "path to the docker <code>config.json</code>." }, "secretName": { "description": "Kubernetes secret that contains the `config.json` Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'.", "type": "string", "x-intellij-html-description": "Kubernetes secret that contains the <code>config.json</code> Docker configuration. Note that the expected secret type is not 'kubernetes.io/dockerconfigjson' but 'Opaque'." } }, "x-intellij-html-description": "contains information about the docker <code>config.json</code> to mount." }, "DockerfileDependency": { "additionalProperties": false, "description": "*beta* used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile.", "preferredOrder": [ "path", "buildArgs" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key/value pairs used to resolve values of `ARG` instructions in a Dockerfile. Values can be constants or environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"'{{.ENV_VARIABLE}}'\"}" ], "type": "object", "x-intellij-html-description": "key/value pairs used to resolve values of <code>ARG</code> instructions in a Dockerfile. Values can be constants or environment variables via the go template syntax." }, "path": { "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." } }, "x-intellij-html-description": "<em>beta</em> used to specify a custom build artifact that is built from a Dockerfile. This allows skaffold to determine dependencies from the Dockerfile." }, "EnvTemplateTagger": { "additionalProperties": false, "description": "*beta* tags images with a configurable template string.", "preferredOrder": [ "template" ], "properties": { "template": { "description": "used to produce the image name and tag. See golang [text/template](https://golang.org/pkg/text/template/). The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section.", "examples": [ "{{.RELEASE}}-{{.IMAGE_NAME}}" ], "type": "string", "x-intellij-html-description": "used to produce the image name and tag. See golang <a href=\"https://golang.org/pkg/text/template/\">text/template</a>. The template is executed against the current environment, with those variables injected: IMAGE_NAME | Name of the image being built, as supplied in the artifacts section." } }, "required": [ "template" ], "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "GitTagger": { "additionalProperties": false, "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "preferredOrder": [ "variant", "prefix" ], "properties": { "prefix": { "description": "adds a fixed prefix to the tag.", "type": "string", "x-intellij-html-description": "adds a fixed prefix to the tag." }, "variant": { "description": "determines the behavior of the git tagger. Valid variants are: `Tags` (default): use git tags or fall back to abbreviated commit hash. `CommitSha`: use the full git commit sha. `AbbrevCommitSha`: use the abbreviated git commit sha. `TreeSha`: use the full tree hash of the artifact workingdir. `AbbrevTreeSha`: use the abbreviated tree hash of the artifact workingdir.", "type": "string", "x-intellij-html-description": "determines the behavior of the git tagger. Valid variants are: <code>Tags</code> (default): use git tags or fall back to abbreviated commit hash. <code>CommitSha</code>: use the full git commit sha. <code>AbbrevCommitSha</code>: use the abbreviated git commit sha. <code>TreeSha</code>: use the full tree hash of the artifact workingdir. <code>AbbrevTreeSha</code>: use the abbreviated tree hash of the artifact workingdir." } }, "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "GoogleCloudBuild": { "additionalProperties": false, "description": "*beta* describes how to do a remote build on [Google Cloud Build](https://cloud.google.com/cloud-build/docs/). Docker and Jib artifacts can be built on Cloud Build. The `projectId` needs to be provided and the currently logged in user should be given permissions to trigger new builds.", "preferredOrder": [ "projectId", "diskSizeGb", "machineType", "timeout", "logging", "logStreamingOption", "dockerImage", "kanikoImage", "mavenImage", "gradleImage", "packImage", "concurrency", "workerPool" ], "properties": { "concurrency": { "default": "0", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "diskSizeGb": { "description": "disk size of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "integer", "x-intellij-html-description": "disk size of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "dockerImage": { "default": "gcr.io/cloud-builders/docker", "description": "image that runs a Docker build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Docker build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "gradleImage": { "default": "gcr.io/cloud-builders/gradle", "description": "image that runs a Gradle build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Gradle build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "kanikoImage": { "default": "gcr.io/kaniko-project/executor", "description": "image that runs a Kaniko build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Kaniko build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "logStreamingOption": { "description": "specifies the behavior when writing build logs to Google Cloud Storage. Valid options are: `STREAM_DEFAULT`: Service may automatically determine build log streaming behavior. `STREAM_ON`: Build logs should be streamed to Google Cloud Storage. `STREAM_OFF`: Build logs should not be streamed to Google Cloud Storage; they will be written when the build is completed. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#logstreamingoption).", "type": "string", "x-intellij-html-description": "specifies the behavior when writing build logs to Google Cloud Storage. Valid options are: <code>STREAM_DEFAULT</code>: Service may automatically determine build log streaming behavior. <code>STREAM_ON</code>: Build logs should be streamed to Google Cloud Storage. <code>STREAM_OFF</code>: Build logs should not be streamed to Google Cloud Storage; they will be written when the build is completed. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#logstreamingoption\">Cloud Build Reference</a>." }, "logging": { "description": "specifies the logging mode. Valid modes are: `LOGGING_UNSPECIFIED`: The service determines the logging mode. `LEGACY`: Stackdriver logging and Cloud Storage logging are enabled (default). `GCS_ONLY`: Only Cloud Storage logging is enabled. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#loggingmode).", "type": "string", "x-intellij-html-description": "specifies the logging mode. Valid modes are: <code>LOGGING_UNSPECIFIED</code>: The service determines the logging mode. <code>LEGACY</code>: Stackdriver logging and Cloud Storage logging are enabled (default). <code>GCS_ONLY</code>: Only Cloud Storage logging is enabled. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#loggingmode\">Cloud Build Reference</a>." }, "machineType": { "description": "type of the VM that runs the build. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions).", "type": "string", "x-intellij-html-description": "type of the VM that runs the build. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#buildoptions\">Cloud Build Reference</a>." }, "mavenImage": { "default": "gcr.io/cloud-builders/mvn", "description": "image that runs a Maven build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Maven build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "packImage": { "default": "gcr.io/k8s-skaffold/pack", "description": "image that runs a Cloud Native Buildpacks build. See [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders).", "type": "string", "x-intellij-html-description": "image that runs a Cloud Native Buildpacks build. See <a href=\"https://cloud.google.com/cloud-build/docs/cloud-builders\">Cloud Builders</a>." }, "projectId": { "description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name `gcr.io/myproject/image`, Skaffold will use the `myproject` GCP project.", "type": "string", "x-intellij-html-description": "ID of your Cloud Platform Project. If it is not provided, Skaffold will guess it from the image name. For example, given the artifact image name <code>gcr.io/myproject/image</code>, Skaffold will use the <code>myproject</code> GCP project." }, "timeout": { "description": "amount of time (in seconds) that this build should be allowed to run. See [Cloud Build Reference](https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build).", "type": "string", "x-intellij-html-description": "amount of time (in seconds) that this build should be allowed to run. See <a href=\"https://cloud.google.com/cloud-build/docs/api/reference/rest/v1/projects.builds#resource-build\">Cloud Build Reference</a>." }, "workerPool": { "description": "configures a pool of workers to run the build.", "type": "string", "x-intellij-html-description": "configures a pool of workers to run the build." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a remote build on <a href=\"https://cloud.google.com/cloud-build/docs/\">Google Cloud Build</a>. Docker and Jib artifacts can be built on Cloud Build. The <code>projectId</code> needs to be provided and the currently logged in user should be given permissions to trigger new builds." }, "HelmConventionConfig": { "additionalProperties": false, "description": "image config in the syntax of image.repository and image.tag.", "preferredOrder": [ "explicitRegistry" ], "properties": { "explicitRegistry": { "default": "false", "description": "separates `image.registry` to the image config syntax. Useful for some charts e.g. `postgresql`.", "type": "boolean", "x-intellij-html-description": "separates <code>image.registry</code> to the image config syntax. Useful for some charts e.g. <code>postgresql</code>." } }, "x-intellij-html-description": "image config in the syntax of image.repository and image.tag." }, "HelmDeploy": { "additionalProperties": false, "description": "*beta* uses the `helm` CLI to apply the charts to the cluster.", "preferredOrder": [ "releases", "flags" ], "properties": { "flags": { "$ref": "#/definitions/HelmDeployFlags", "description": "additional option flags that are passed on the command line to `helm`.", "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "releases": { "description": "a list of Helm releases.", "items": { "$ref": "#/definitions/HelmRelease" }, "type": "array", "x-intellij-html-description": "a list of Helm releases." } }, "required": [ "releases" ], "x-intellij-html-description": "<em>beta</em> uses the <code>helm</code> CLI to apply the charts to the cluster." }, "HelmDeployFlags": { "additionalProperties": false, "description": "additional option flags that are passed on the command line to `helm`.", "preferredOrder": [ "global", "install", "upgrade" ], "properties": { "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." }, "install": { "default": "[]", "description": "additional flags passed to (`helm install`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm install</code>)." }, "upgrade": { "default": "[]", "description": "additional flags passed to (`helm upgrade`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed to (<code>helm upgrade</code>)." } }, "x-intellij-html-description": "additional option flags that are passed on the command line to <code>helm</code>." }, "HelmFQNConfig": { "additionalProperties": false, "description": "image config to use the FullyQualifiedImageName as param to set.", "preferredOrder": [ "property" ], "properties": { "property": { "description": "defines the image config.", "type": "string", "x-intellij-html-description": "defines the image config." } }, "x-intellij-html-description": "image config to use the FullyQualifiedImageName as param to set." }, "HelmImageStrategy": { "anyOf": [ { "additionalProperties": false }, { "additionalProperties": false, "preferredOrder": [ "fqn" ], "properties": { "fqn": { "$ref": "#/definitions/HelmFQNConfig", "description": "image configuration uses the syntax `IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME=IMAGE-REPOSITORY:IMAGE-TAG</code>." } } }, { "additionalProperties": false, "preferredOrder": [ "helm" ], "properties": { "helm": { "$ref": "#/definitions/HelmConventionConfig", "description": "image configuration uses the syntax `IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG`.", "x-intellij-html-description": "image configuration uses the syntax <code>IMAGE-NAME.repository=IMAGE-REPOSITORY, IMAGE-NAME.tag=IMAGE-TAG</code>." } } } ], "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "HelmPackaged": { "additionalProperties": false, "description": "parameters for packaging helm chart (`helm package`).", "preferredOrder": [ "version", "appVersion" ], "properties": { "appVersion": { "description": "sets the `appVersion` on the chart to this version.", "type": "string", "x-intellij-html-description": "sets the <code>appVersion</code> on the chart to this version." }, "version": { "description": "sets the `version` on the chart to this semver version.", "type": "string", "x-intellij-html-description": "sets the <code>version</code> on the chart to this semver version." } }, "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "HelmRelease": { "additionalProperties": false, "description": "describes a helm release to be deployed.", "preferredOrder": [ "name", "chartPath", "valuesFiles", "artifactOverrides", "namespace", "version", "setValues", "setValueTemplates", "setFiles", "wait", "recreatePods", "skipBuildDependencies", "useHelmSecrets", "remote", "upgradeOnChange", "overrides", "packaged", "imageStrategy" ], "properties": { "artifactOverrides": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key value pairs where key represents the parameter used in `values` file to define a container image and value corresponds to artifact i.e. `ImageName` defined in `Build.Artifacts` section.", "type": "object", "x-intellij-html-description": "key value pairs where key represents the parameter used in <code>values</code> file to define a container image and value corresponds to artifact i.e. <code>ImageName</code> defined in <code>Build.Artifacts</code> section." }, "chartPath": { "description": "path to the Helm chart.", "type": "string", "x-intellij-html-description": "path to the Helm chart." }, "imageStrategy": { "$ref": "#/definitions/HelmImageStrategy", "description": "adds image configurations to the Helm `values` file.", "x-intellij-html-description": "adds image configurations to the Helm <code>values</code> file." }, "name": { "description": "name of the Helm release.", "type": "string", "x-intellij-html-description": "name of the Helm release." }, "namespace": { "description": "Kubernetes namespace.", "type": "string", "x-intellij-html-description": "Kubernetes namespace." }, "overrides": { "description": "key-value pairs. If present, Skaffold will build a Helm `values` file that overrides the original and use it to call Helm CLI (`--f` flag).", "x-intellij-html-description": "key-value pairs. If present, Skaffold will build a Helm <code>values</code> file that overrides the original and use it to call Helm CLI (<code>--f</code> flag)." }, "packaged": { "$ref": "#/definitions/HelmPackaged", "description": "parameters for packaging helm chart (`helm package`).", "x-intellij-html-description": "parameters for packaging helm chart (<code>helm package</code>)." }, "recreatePods": { "default": "false", "description": "if `true`, Skaffold will send `--recreate-pods` flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--recreate-pods</code> flag to Helm CLI when upgrading a new version of a chart in subsequent dev loop deploy." }, "remote": { "default": "false", "description": "specifies whether the chart path is remote, or exists on the host filesystem.", "type": "boolean", "x-intellij-html-description": "specifies whether the chart path is remote, or exists on the host filesystem." }, "setFiles": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set-file` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set-file</code> flag to Helm CLI and append all pairs after the flag." }, "setValueTemplates": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send `--set` flag to Helm CLI and append all parsed pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will try to parse the value part of each key-value pair using environment variables in the system, then send <code>--set</code> flag to Helm CLI and append all parsed pairs after the flag." }, "setValues": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "key-value pairs. If present, Skaffold will send `--set` flag to Helm CLI and append all pairs after the flag.", "type": "object", "x-intellij-html-description": "key-value pairs. If present, Skaffold will send <code>--set</code> flag to Helm CLI and append all pairs after the flag." }, "skipBuildDependencies": { "default": "false", "description": "should build dependencies be skipped. Ignored when `remote: true`.", "type": "boolean", "x-intellij-html-description": "should build dependencies be skipped. Ignored when <code>remote: true</code>." }, "upgradeOnChange": { "description": "specifies whether to upgrade helm chart on code changes. Default is `true` when helm chart is local (`remote: false`). Default is `false` if `remote: true`.", "type": "boolean", "x-intellij-html-description": "specifies whether to upgrade helm chart on code changes. Default is <code>true</code> when helm chart is local (<code>remote: false</code>). Default is <code>false</code> if <code>remote: true</code>." }, "useHelmSecrets": { "default": "false", "description": "instructs skaffold to use secrets plugin on deployment.", "type": "boolean", "x-intellij-html-description": "instructs skaffold to use secrets plugin on deployment." }, "valuesFiles": { "default": "[]", "description": "paths to the Helm `values` files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "paths to the Helm <code>values</code> files." }, "version": { "description": "version of the chart.", "type": "string", "x-intellij-html-description": "version of the chart." }, "wait": { "default": "false", "description": "if `true`, Skaffold will send `--wait` flag to Helm CLI.", "type": "boolean", "x-intellij-html-description": "if <code>true</code>, Skaffold will send <code>--wait</code> flag to Helm CLI." } }, "required": [ "name", "chartPath" ], "x-intellij-html-description": "describes a helm release to be deployed." }, "JSONPatch": { "additionalProperties": false, "description": "patch to be applied by a profile.", "preferredOrder": [ "op", "path", "from", "value" ], "properties": { "from": { "description": "source position in the yaml, used for `copy` or `move` operations.", "type": "string", "x-intellij-html-description": "source position in the yaml, used for <code>copy</code> or <code>move</code> operations." }, "op": { "default": "replace", "description": "operation carried by the patch: `add`, `remove`, `replace`, `move`, `copy` or `test`.", "type": "string", "x-intellij-html-description": "operation carried by the patch: <code>add</code>, <code>remove</code>, <code>replace</code>, <code>move</code>, <code>copy</code> or <code>test</code>." }, "path": { "description": "position in the yaml where the operation takes place. For example, this targets the `dockerfile` of the first artifact built.", "examples": [ "/build/artifacts/0/docker/dockerfile" ], "type": "string", "x-intellij-html-description": "position in the yaml where the operation takes place. For example, this targets the <code>dockerfile</code> of the first artifact built." }, "value": { "description": "value to apply. Can be any portion of yaml.", "x-intellij-html-description": "value to apply. Can be any portion of yaml." } }, "required": [ "path" ], "x-intellij-html-description": "patch to be applied by a profile." }, "JibArtifact": { "additionalProperties": false, "description": "builds images using the [Jib plugins for Maven and Gradle](https://github.com/GoogleContainerTools/jib/).", "preferredOrder": [ "project", "args", "type" ], "properties": { "args": { "default": "[]", "description": "additional build flags passed to the builder.", "examples": [ "[\"--no-build-cache\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional build flags passed to the builder." }, "project": { "description": "selects which sub-project to build for multi-module builds.", "type": "string", "x-intellij-html-description": "selects which sub-project to build for multi-module builds." }, "type": { "description": "the Jib builder type; normally determined automatically. Valid types are `maven`: for Maven. `gradle`: for Gradle.", "enum": [ "maven", "gradle" ], "type": "string", "x-intellij-html-description": "the Jib builder type; normally determined automatically. Valid types are <code>maven</code>: for Maven. <code>gradle</code>: for Gradle." } }, "x-intellij-html-description": "builds images using the <a href=\"https://github.com/GoogleContainerTools/jib/\">Jib plugins for Maven and Gradle</a>." }, "KanikoArtifact": { "additionalProperties": false, "description": "describes an artifact built from a Dockerfile, with kaniko.", "preferredOrder": [ "flags", "dockerfile", "target", "buildArgs", "env", "initImage", "image", "cache", "reproducible", "skipTLS", "volumeMounts" ], "properties": { "buildArgs": { "additionalProperties": { "type": "string" }, "default": "{}", "description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax.", "examples": [ "{\"key1\": \"value1\", \"key2\": \"value2\", \"key3\": \"'{{.ENV_VARIABLE}}'\"}" ], "type": "object", "x-intellij-html-description": "arguments passed to the docker build. It also accepts environment variables via the go template syntax." }, "cache": { "$ref": "#/definitions/KanikoCache", "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "dockerfile": { "default": "Dockerfile", "description": "locates the Dockerfile relative to workspace.", "type": "string", "x-intellij-html-description": "locates the Dockerfile relative to workspace." }, "env": { "default": "[]", "description": "environment variables passed to the kaniko pod.", "items": {}, "type": "array", "x-intellij-html-description": "environment variables passed to the kaniko pod." }, "flags": { "default": "[]", "description": "additional flags to be passed to Kaniko command line. See [Kaniko Additional Flags](https://github.com/GoogleContainerTools/kaniko#additional-flags). Deprecated - instead the named, unique fields should be used, e.g. `buildArgs`, `cache`, `target`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags to be passed to Kaniko command line. See <a href=\"https://github.com/GoogleContainerTools/kaniko#additional-flags\">Kaniko Additional Flags</a>. Deprecated - instead the named, unique fields should be used, e.g. <code>buildArgs</code>, <code>cache</code>, <code>target</code>." }, "image": { "description": "Docker image used by the Kaniko pod. Defaults to the latest released version of `gcr.io/kaniko-project/executor`.", "type": "string", "x-intellij-html-description": "Docker image used by the Kaniko pod. Defaults to the latest released version of <code>gcr.io/kaniko-project/executor</code>." }, "initImage": { "description": "image used to run init container which mounts kaniko context.", "type": "string", "x-intellij-html-description": "image used to run init container which mounts kaniko context." }, "reproducible": { "default": "false", "description": "used to strip timestamps out of the built image.", "type": "boolean", "x-intellij-html-description": "used to strip timestamps out of the built image." }, "skipTLS": { "default": "false", "description": "skips TLS verification when pulling and pushing the image.", "type": "boolean", "x-intellij-html-description": "skips TLS verification when pulling and pushing the image." }, "target": { "description": "Dockerfile target name to build.", "type": "string", "x-intellij-html-description": "Dockerfile target name to build." }, "volumeMounts": { "default": "[]", "description": "volume mounts passed to kaniko pod.", "items": {}, "type": "array", "x-intellij-html-description": "volume mounts passed to kaniko pod." } }, "x-intellij-html-description": "describes an artifact built from a Dockerfile, with kaniko." }, "KanikoCache": { "additionalProperties": false, "description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds.", "preferredOrder": [ "repo", "hostPath" ], "properties": { "hostPath": { "description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer.", "type": "string", "x-intellij-html-description": "specifies a path on the host that is mounted to each pod as read only cache volume containing base images. If set, must exist on each node and prepopulated with kaniko-warmer." }, "repo": { "description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See [Kaniko Caching](https://github.com/GoogleContainerTools/kaniko#caching).", "type": "string", "x-intellij-html-description": "a remote repository to store cached layers. If none is specified, one will be inferred from the image name. See <a href=\"https://github.com/GoogleContainerTools/kaniko#caching\">Kaniko Caching</a>." } }, "x-intellij-html-description": "configures Kaniko caching. If a cache is specified, Kaniko will use a remote cache which will speed up builds." }, "KubectlDeploy": { "additionalProperties": false, "description": "*beta* uses a client side `kubectl apply` to deploy manifests. You'll need a `kubectl` CLI version installed that's compatible with your cluster.", "preferredOrder": [ "manifests", "remoteManifests", "flags" ], "properties": { "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "manifests": { "default": "[\"k8s/*.yaml\"]", "description": "the Kubernetes yaml or json manifests.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the Kubernetes yaml or json manifests." }, "remoteManifests": { "default": "[]", "description": "Kubernetes manifests in remote clusters.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "Kubernetes manifests in remote clusters." } }, "x-intellij-html-description": "<em>beta</em> uses a client side <code>kubectl apply</code> to deploy manifests. You'll need a <code>kubectl</code> CLI version installed that's compatible with your cluster." }, "KubectlFlags": { "additionalProperties": false, "description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete).", "preferredOrder": [ "global", "apply", "delete", "disableValidation" ], "properties": { "apply": { "default": "[]", "description": "additional flags passed on creations (`kubectl apply`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on creations (<code>kubectl apply</code>)." }, "delete": { "default": "[]", "description": "additional flags passed on deletions (`kubectl delete`).", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on deletions (<code>kubectl delete</code>)." }, "disableValidation": { "default": "false", "description": "passes the `--validate=false` flag to supported `kubectl` commands when enabled.", "type": "boolean", "x-intellij-html-description": "passes the <code>--validate=false</code> flag to supported <code>kubectl</code> commands when enabled." }, "global": { "default": "[]", "description": "additional flags passed on every command.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional flags passed on every command." } }, "x-intellij-html-description": "additional flags passed on the command line to kubectl either on every command (Global), on creations (Apply) or deletions (Delete)." }, "KustomizeDeploy": { "additionalProperties": false, "description": "*beta* uses the `kustomize` CLI to \"patch\" a deployment for a target environment.", "preferredOrder": [ "paths", "flags", "buildArgs" ], "properties": { "buildArgs": { "default": "[]", "description": "additional args passed to `kustomize build`.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "additional args passed to <code>kustomize build</code>." }, "flags": { "$ref": "#/definitions/KubectlFlags", "description": "additional flags passed to `kubectl`.", "x-intellij-html-description": "additional flags passed to <code>kubectl</code>." }, "paths": { "default": "[\".\"]", "description": "path to Kustomization files.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "path to Kustomization files." } }, "x-intellij-html-description": "<em>beta</em> uses the <code>kustomize</code> CLI to &quot;patch&quot; a deployment for a target environment." }, "LocalBuild": { "additionalProperties": false, "description": "*beta* describes how to do a build on the local docker daemon and optionally push to a repository.", "preferredOrder": [ "push", "useDockerCLI", "useBuildkit", "concurrency" ], "properties": { "concurrency": { "default": "1", "description": "how many artifacts can be built concurrently. 0 means \"no-limit\".", "type": "integer", "x-intellij-html-description": "how many artifacts can be built concurrently. 0 means &quot;no-limit&quot;." }, "push": { "description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster.", "type": "boolean", "x-intellij-html-description": "should images be pushed to a registry. If not specified, images are pushed only if the current Kubernetes context connects to a remote cluster." }, "useBuildkit": { "default": "false", "description": "use BuildKit to build Docker images.", "type": "boolean", "x-intellij-html-description": "use BuildKit to build Docker images." }, "useDockerCLI": { "default": "false", "description": "use `docker` command-line interface instead of Docker Engine APIs.", "type": "boolean", "x-intellij-html-description": "use <code>docker</code> command-line interface instead of Docker Engine APIs." } }, "x-intellij-html-description": "<em>beta</em> describes how to do a build on the local docker daemon and optionally push to a repository." }, "Metadata": { "additionalProperties": false, "description": "holds an optional name of the project.", "preferredOrder": [ "name" ], "properties": { "name": { "description": "an identifier for the project.", "type": "string", "x-intellij-html-description": "an identifier for the project." } }, "x-intellij-html-description": "holds an optional name of the project." }, "PortForwardResource": { "additionalProperties": false, "description": "describes a resource to port forward.", "preferredOrder": [ "resourceType", "resourceName", "namespace", "port", "address", "localPort" ], "properties": { "address": { "description": "local address to bind to. Defaults to the loopback address 127.0.0.1.", "type": "string", "x-intellij-html-description": "local address to bind to. Defaults to the loopback address 127.0.0.1." }, "localPort": { "description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. *Optional*.", "type": "integer", "x-intellij-html-description": "local port to forward to. If the port is unavailable, Skaffold will choose a random open port to forward to. <em>Optional</em>." }, "namespace": { "description": "namespace of the resource to port forward.", "type": "string", "x-intellij-html-description": "namespace of the resource to port forward." }, "port": { "description": "resource port that will be forwarded.", "type": "integer", "x-intellij-html-description": "resource port that will be forwarded." }, "resourceName": { "description": "name of the Kubernetes resource to port forward.", "type": "string", "x-intellij-html-description": "name of the Kubernetes resource to port forward." }, "resourceType": { "description": "Kubernetes type that should be port forwarded. Acceptable resource types include: `Service`, `Pod` and Controller resource type that has a pod spec: `ReplicaSet`, `ReplicationController`, `Deployment`, `StatefulSet`, `DaemonSet`, `Job`, `CronJob`.", "type": "string", "x-intellij-html-description": "Kubernetes type that should be port forwarded. Acceptable resource types include: <code>Service</code>, <code>Pod</code> and Controller resource type that has a pod spec: <code>ReplicaSet</code>, <code>ReplicationController</code>, <code>Deployment</code>, <code>StatefulSet</code>, <code>DaemonSet</code>, <code>Job</code>, <code>CronJob</code>." } }, "x-intellij-html-description": "describes a resource to port forward." }, "Profile": { "additionalProperties": false, "description": "used to override any `build`, `test` or `deploy` configuration.", "preferredOrder": [ "name", "activation", "patches", "build", "test", "deploy", "portForward" ], "properties": { "activation": { "description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered.", "items": { "$ref": "#/definitions/Activation" }, "type": "array", "x-intellij-html-description": "criteria by which a profile can be auto-activated. The profile is auto-activated if any one of the activations are triggered. An activation is triggered if all of the criteria (env, kubeContext, command) are triggered." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "name": { "description": "a unique profile name.", "examples": [ "profile-prod" ], "type": "string", "x-intellij-html-description": "a unique profile name." }, "patches": { "description": "patches applied to the configuration. Patches use the JSON patch notation.", "items": { "$ref": "#/definitions/JSONPatch" }, "type": "array", "x-intellij-html-description": "patches applied to the configuration. Patches use the JSON patch notation." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "name" ], "x-intellij-html-description": "used to override any <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "ResourceRequirement": { "additionalProperties": false, "description": "stores the CPU/Memory requirements for the pod.", "preferredOrder": [ "cpu", "memory", "ephemeralStorage", "resourceStorage" ], "properties": { "cpu": { "description": "the number cores to be used.", "examples": [ "2`, `2.0` or `200m" ], "type": "string", "x-intellij-html-description": "the number cores to be used." }, "ephemeralStorage": { "description": "the amount of Ephemeral storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of Ephemeral storage to allocate to the pod." }, "memory": { "description": "the amount of memory to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of memory to allocate to the pod." }, "resourceStorage": { "description": "the amount of resource storage to allocate to the pod.", "examples": [ "1Gi` or `1000Mi" ], "type": "string", "x-intellij-html-description": "the amount of resource storage to allocate to the pod." } }, "x-intellij-html-description": "stores the CPU/Memory requirements for the pod." }, "ResourceRequirements": { "additionalProperties": false, "description": "describes the resource requirements for the kaniko pod.", "preferredOrder": [ "requests", "limits" ], "properties": { "limits": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource limits](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource limits</a> for the Kaniko pod." }, "requests": { "$ref": "#/definitions/ResourceRequirement", "description": "[resource requests](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container) for the Kaniko pod.", "x-intellij-html-description": "<a href=\"https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container\">resource requests</a> for the Kaniko pod." } }, "x-intellij-html-description": "describes the resource requirements for the kaniko pod." }, "ResourceType": { "description": "describes the Kubernetes resource types used for port forwarding.", "type": "string", "x-intellij-html-description": "describes the Kubernetes resource types used for port forwarding." }, "ShaTagger": { "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." }, "SkaffoldConfig": { "additionalProperties": false, "description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml).", "preferredOrder": [ "apiVersion", "kind", "metadata", "build", "test", "deploy", "portForward", "profiles" ], "properties": { "apiVersion": { "description": "version of the configuration.", "type": "string", "x-intellij-html-description": "version of the configuration." }, "build": { "$ref": "#/definitions/BuildConfig", "description": "describes how images are built.", "x-intellij-html-description": "describes how images are built." }, "deploy": { "$ref": "#/definitions/DeployConfig", "description": "describes how images are deployed.", "x-intellij-html-description": "describes how images are deployed." }, "kind": { "default": "Config", "description": "always `Config`.", "type": "string", "x-intellij-html-description": "always <code>Config</code>." }, "metadata": { "$ref": "#/definitions/Metadata", "description": "holds additional information about the config.", "x-intellij-html-description": "holds additional information about the config." }, "portForward": { "description": "describes user defined resources to port-forward.", "items": { "$ref": "#/definitions/PortForwardResource" }, "type": "array", "x-intellij-html-description": "describes user defined resources to port-forward." }, "profiles": { "description": "*beta* can override be used to `build`, `test` or `deploy` configuration.", "items": { "$ref": "#/definitions/Profile" }, "type": "array", "x-intellij-html-description": "<em>beta</em> can override be used to <code>build</code>, <code>test</code> or <code>deploy</code> configuration." }, "test": { "description": "describes how images are tested.", "items": { "$ref": "#/definitions/TestCase" }, "type": "array", "x-intellij-html-description": "describes how images are tested." } }, "required": [ "apiVersion", "kind" ], "x-intellij-html-description": "holds the fields parsed from the Skaffold configuration file (skaffold.yaml)." }, "Sync": { "additionalProperties": false, "default": "infer: [\"**/*\"]", "description": "*beta* specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files. If no files are listed, sync all the files and infer the destination.", "preferredOrder": [ "manual", "infer", "auto" ], "properties": { "auto": { "$ref": "#/definitions/Auto", "description": "delegates discovery of sync rules to the build system. Only available for jib and buildpacks.", "x-intellij-html-description": "delegates discovery of sync rules to the build system. Only available for jib and buildpacks." }, "infer": { "default": "[]", "description": "file patterns which may be synced into the container The container destination is inferred by the builder based on the instructions of a Dockerfile. Available for docker and kaniko artifacts and custom artifacts that declare dependencies on a dockerfile.", "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "file patterns which may be synced into the container The container destination is inferred by the builder based on the instructions of a Dockerfile. Available for docker and kaniko artifacts and custom artifacts that declare dependencies on a dockerfile." }, "manual": { "description": "manual sync rules indicating the source and destination.", "items": { "$ref": "#/definitions/SyncRule" }, "type": "array", "x-intellij-html-description": "manual sync rules indicating the source and destination." } }, "x-intellij-html-description": "<em>beta</em> specifies what files to sync into the container. This is a list of sync rules indicating the intent to sync for source files. If no files are listed, sync all the files and infer the destination." }, "SyncRule": { "additionalProperties": false, "description": "specifies which local files to sync to remote folders.", "preferredOrder": [ "src", "dest", "strip" ], "properties": { "dest": { "description": "destination path in the container where the files should be synced to.", "examples": [ "\"app/\"" ], "type": "string", "x-intellij-html-description": "destination path in the container where the files should be synced to." }, "src": { "description": "a glob pattern to match local paths against. Directories should be delimited by `/` on all platforms.", "examples": [ "\"css/**/*.css\"" ], "type": "string", "x-intellij-html-description": "a glob pattern to match local paths against. Directories should be delimited by <code>/</code> on all platforms." }, "strip": { "description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder.", "examples": [ "\"css/\"" ], "type": "string", "x-intellij-html-description": "specifies the path prefix to remove from the source path when transplanting the files into the destination folder." } }, "required": [ "src", "dest" ], "x-intellij-html-description": "specifies which local files to sync to remote folders." }, "TagPolicy": { "additionalProperties": false, "description": "contains all the configuration for the tagging step.", "preferredOrder": [ "gitCommit", "sha256", "envTemplate", "dateTime" ], "properties": { "dateTime": { "$ref": "#/definitions/DateTimeTagger", "description": "*beta* tags images with the build timestamp.", "x-intellij-html-description": "<em>beta</em> tags images with the build timestamp." }, "envTemplate": { "$ref": "#/definitions/EnvTemplateTagger", "description": "*beta* tags images with a configurable template string.", "x-intellij-html-description": "<em>beta</em> tags images with a configurable template string." }, "gitCommit": { "$ref": "#/definitions/GitTagger", "description": "*beta* tags images with the git tag or commit of the artifact's workspace.", "x-intellij-html-description": "<em>beta</em> tags images with the git tag or commit of the artifact's workspace." }, "sha256": { "$ref": "#/definitions/ShaTagger", "description": "*beta* tags images with their sha256 digest.", "x-intellij-html-description": "<em>beta</em> tags images with their sha256 digest." } }, "x-intellij-html-description": "contains all the configuration for the tagging step." }, "TestCase": { "additionalProperties": false, "description": "a list of structure tests to run on images that Skaffold builds.", "preferredOrder": [ "image", "structureTests" ], "properties": { "image": { "description": "artifact on which to run those tests.", "examples": [ "gcr.io/k8s-skaffold/example" ], "type": "string", "x-intellij-html-description": "artifact on which to run those tests." }, "structureTests": { "default": "[]", "description": "the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) to run on that artifact.", "examples": [ "[\"./test/*\"]" ], "items": { "type": "string" }, "type": "array", "x-intellij-html-description": "the <a href=\"https://github.com/GoogleContainerTools/container-structure-test\">Container Structure Tests</a> to run on that artifact." } }, "required": [ "image" ], "x-intellij-html-description": "a list of structure tests to run on images that Skaffold builds." } }, "type": "object" }
o6375
{ "properties": { "EmailDomains": { "description": "Any email address that does not have a suffix that matches one of the unmarked email domains specified by the key EmailDomains will be considered out-of-domain and will be highlighted as such in the Mail app.", "items": { "description": "An email address lacking a suffix that matches any of these strings will be considered out-of-domain", "type": "string" }, "type": "array" }, "PayloadDescription": { "default": "Domains Payload", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "Domains Payload", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.domains", "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.domains", "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" }, "SafariPasswordAutoFillDomains": { "description": "Users can save passwords in Safari only from URLs matching the patterns listed here.", "items": { "description": "Users can save passwords in Safari only from URLs matching the patterns listed here", "type": "string" }, "type": "array" }, "WebDomains": { "description": "Opening a document originating from a managed Safari web domain causes iOS to treat the document as managed for the purpose of Managed Open In.", "items": { "description": "URLs matching the patterns listed here will be considered managed. Not supported in macOS", "type": "string" }, "type": "array" } }, "title": "com.apple.domains", "type": "object" }
o61607
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "enabled": { "type": "boolean", "default": "false" }, "versionIncreaseAllows": { "type": "object", "properties": { "major": { "type": "string", "enum": [ "none", "equivalent", "nonBreaking", "potentiallyBreaking", "breaking" ], "default": "breaking" }, "minor": { "type": "string", "enum": [ "none", "equivalent", "nonBreaking", "potentiallyBreaking", "breaking" ], "default": "nonBreaking" }, "patch": { "type": "string", "enum": [ "none", "equivalent", "nonBreaking", "potentiallyBreaking", "breaking" ], "default": "none" } } }, "passThroughDifferences": { "type": "array", "items": { "type": "string" } } } }
o70014
{ "default": 1, "oneOf": [ { "const": 1, "standsFor": "Characters" }, { "const": 2, "standsFor": "Character Excluding Spaces" }, { "const": 3, "standsFor": "Words" }, { "const": 4, "standsFor": "Lines" } ], "type": "number" }
o26956
{ "optional": true, "properties": { "comment": { "type": "string" }, "mimeType": { "type": "string" }, "params": { "properties": { "comment": { "type": "string" }, "contentType": { "type": "string" }, "fileName": { "type": "string" }, "name": { "type": "string" }, "value": { "type": "string" } }, "required": [ "name" ], "type": "array" }, "text": { "type": "string" } }, "required": [ "mimeType" ], "type": "object" }
o90449
{ "type": "object", "properties": { "class": { "type": "string", "enum": [ "ExpressionTool" ] }, "expression": { "$ref": "#/definitions/Expression" }, "id": { "type": "string" }, "inputs": { "type": "array", "items": { "$ref": "#/definitions/InputParameter" } }, "outputs": { "type": "array", "items": { "$ref": "#/definitions/OutputParameter" } }, "requirements": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/DockerRequirement" }, { "$ref": "#/definitions/SubworkflowFeatureRequirement" }, { "$ref": "#/definitions/CreateFileRequirement" }, { "$ref": "#/definitions/EnvVarRequirement" }, { "$ref": "#/definitions/ScatterFeatureRequirement" }, { "$ref": "#/definitions/SchemaDefRequirement" }, { "$ref": "#/definitions/ExpressionEngineRequirement" } ] } }, "hints": { "type": "array", "items": {} }, "label": { "type": "string" }, "description": { "type": "string" }, "cwlVersion": { "$ref": "#/definitions/CWLVersions", "description": "CWL document version" }, "sbg:modifiedBy": { "type": "string" }, "sbg:revisionInfo": { "type": "array", "items": { "$ref": "#/definitions/SBGRevision" } }, "sbg:revision": { "type": "number" }, "sbg:createdBy": { "type": "string" }, "sbg:id": { "type": "string" }, "sbg:contributors": { "type": "array", "items": { "type": "string" } }, "sbg:sbgMaintained": { "type": "boolean" }, "sbg:project": { "type": "string" }, "sbg:validationErrors": { "type": "array", "items": { "type": "string" } }, "sbg:modifiedOn": { "type": "number" }, "sbg:revisionNotes": { "type": "string" }, "sbg:toolkit": { "type": "string" }, "sbg:toolkitVersion": { "type": "string" }, "sbg:links": { "type": "array", "items": { "$ref": "#/definitions/SBGLink" } }, "sbg:toolAuthor": { "type": "string" }, "sbg:license": { "type": "string" }, "sbg:categories": { "type": "array", "items": { "type": "string" } } }, "required": [ "class", "expression", "inputs", "outputs" ], "definitions": { "Expression": { "type": "object", "properties": { "engine": { "type": "string" }, "script": { "type": "string" }, "class": { "type": "string", "enum": [ "Expression" ] } }, "required": [ "engine", "script", "class" ] }, "InputParameter": { "type": "object", "properties": { "type": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" } ] } } ] }, "id": { "type": "string" }, "inputBinding": { "$ref": "#/definitions/Binding" }, "label": { "type": "string" }, "description": { "type": "string" }, "streamable": { "type": "boolean" }, "default": {}, "sbg:fileTypes": { "type": "string" } }, "required": [ "id" ] }, "InputSchema": { "type": "object", "properties": { "type": { "anyOf": [ { "type": "string", "enum": [ "record" ] }, { "type": "string", "enum": [ "array" ] }, { "type": "string", "enum": [ "enum" ] }, { "type": "string", "enum": [ "map" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "record" ] }, { "type": "string", "enum": [ "array" ] }, { "type": "string", "enum": [ "enum" ] }, { "type": "string", "enum": [ "map" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" } ] } } ] }, "inputBinding": { "$ref": "#/definitions/Binding" }, "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/InputSchema" }, { "type": "string" } ] } } ] }, "values": { "type": "string" }, "symbols": { "type": "array", "items": { "type": "string" } }, "fields": { "type": "array", "items": { "$ref": "#/definitions/InputSchema" } } }, "required": [ "type" ] }, "Binding": { "type": "object", "properties": { "loadContents": { "type": "boolean" }, "secondaryFiles": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/Expression" }, { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/Expression" } ] } } ] } } }, "OutputParameter": { "type": "object", "properties": { "type": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" } ] } } ] }, "id": { "type": "string" }, "label": { "type": "string" }, "description": { "type": "string" }, "streamable": { "type": "boolean" }, "default": {}, "sbg:fileTypes": { "type": "string" } }, "required": [ "id" ] }, "OutputSchema": { "type": "object", "properties": { "type": { "anyOf": [ { "type": "string", "enum": [ "record" ] }, { "type": "string", "enum": [ "array" ] }, { "type": "string", "enum": [ "enum" ] }, { "type": "string", "enum": [ "map" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "record" ] }, { "type": "string", "enum": [ "array" ] }, { "type": "string", "enum": [ "enum" ] }, { "type": "string", "enum": [ "map" ] }, { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" } ] } } ] }, "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" }, { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": [ "null" ] }, { "type": "string", "enum": [ "boolean" ] }, { "type": "string", "enum": [ "int" ] }, { "type": "string", "enum": [ "long" ] }, { "type": "string", "enum": [ "float" ] }, { "type": "string", "enum": [ "double" ] }, { "type": "string", "enum": [ "bytes" ] }, { "type": "string", "enum": [ "string" ] }, { "type": "string", "enum": [ "File" ] }, { "$ref": "#/definitions/OutputSchema" }, { "type": "string" } ] } } ] }, "values": { "type": "string" }, "symbols": { "type": "array", "items": { "type": "string" } }, "fields": { "type": "array", "items": { "$ref": "#/definitions/OutputSchema" } } }, "required": [ "type" ] }, "DockerRequirement": { "type": "object", "properties": { "class": { "type": "string", "enum": [ "DockerRequirement" ] }, "dockerPull": { "type": "string" }, "dockerLoad": { "type": "string" }, "dockerFile": { "type": "string" }, "dockerImageId": { "type": "string" }, "dockerOutputDirectory": { "type": "string" } }, "required": [ "class" ] }, "SubworkflowFeatureRequirement": { "type": "object", "properties": {} }, "CreateFileRequirement": { "type": "object", "properties": { "class": { "type": "string", "enum": [ "CreateFileRequirement" ] }, "fileDef": { "type": "array", "items": { "$ref": "#/definitions/FileDef" } } }, "required": [ "class", "fileDef" ] }, "FileDef": { "type": "object", "properties": { "filename": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/Expression" } ] }, "fileContent": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/Expression" } ] } }, "required": [ "filename", "fileContent" ] }, "EnvVarRequirement": { "type": "object", "properties": {} }, "ScatterFeatureRequirement": { "type": "object", "properties": {} }, "SchemaDefRequirement": { "type": "object", "properties": {} }, "ExpressionEngineRequirement": { "type": "object", "properties": { "class": { "type": "string", "enum": [ "ExpressionEngineRequirement" ] }, "id": { "type": "string" }, "requirements": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/DockerRequirement" }, { "$ref": "#/definitions/SubworkflowFeatureRequirement" }, { "$ref": "#/definitions/CreateFileRequirement" }, { "$ref": "#/definitions/EnvVarRequirement" }, { "$ref": "#/definitions/ScatterFeatureRequirement" }, { "$ref": "#/definitions/SchemaDefRequirement" }, { "$ref": "#/definitions/ExpressionEngineRequirement" } ] } }, "engineCommand": { "anyOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "engineConfig": { "type": "array", "items": { "type": "string" } } }, "required": [ "class", "id" ] }, "SBGRevision": { "type": "object", "properties": { "sbg:revision": { "type": "number" }, "sbg:modifiedBy": { "type": "string" }, "sbg:revisionNotes": { "type": "string" }, "sbg:modifiedOn": { "type": "number" } }, "required": [ "sbg:revision", "sbg:modifiedBy", "sbg:revisionNotes", "sbg:modifiedOn" ] }, "SBGLink": { "type": "object", "properties": { "label": { "type": "string" }, "id": { "type": "string" } }, "required": [ "label", "id" ] }, "CWLVersions": { "type": "string", "enum": [ "sbg:draft-2" ] } }, "$schema": "http://json-schema.org/draft-04/schema#" }
o69208
{ "$schema": "http://json-schema.org/draft-04/schema", "type": "object", "properties": { "$schema": { "type": "string" }, "hierarchies": { "type": "array", "items": { "$ref": "#/definitions/hierarchy" } } }, "required": [ "$schema", "hierarchies" ], "additionalProperties": false, "definitions": { "hierarchy": { "type": "object", "properties": { "name": { "type": "string" }, "path": { "type": "string" }, "asPostfix": { "type": "boolean" }, "baseProperties": { "$ref": "#/definitions/property" }, "subTypes": { "$ref": "#/definitions/subType" } }, "required": [ "name", "path", "asPostfix" ], "additionalProperties": false }, "subType": { "type": "object", "properties": { "name": { "type": "string" }, "superType": { "oneOf": [ { "type": "null" }, { "type": "string" } ] }, "properties": { "$ref": "#/definitions/property" } }, "required": [ "name", "superType", "properties" ], "additionalProperties": false }, "property": { "type": "object", "properties": { "name": { "type": "string" } }, "required": [ "name" ], "additionalProperties": false } } }
o37415
{ "$id": "https://json.schemastore.org/openweather.roadrisk", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "API responses from the OpenWeather Road Risk API from https://openweathermap.org/api/road-risk", "items": { "type": "object", "additionalProperties": false, "required": ["dt", "coord", "weather", "alerts"], "properties": { "dt": { "type": "integer" }, "coord": { "type": "array", "items": { "type": "number" } }, "weather": { "type": "object", "additionalProperties": false, "properties": { "temp": { "type": "number" }, "wind_speed": { "type": "number" }, "wind_deg": { "type": "number" }, "precipitation_intensity": { "type": "number" }, "dew_point": { "type": "number" } } }, "alerts": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": ["sender_name", "event", "event_level"], "properties": { "sender_name": { "type": "string" }, "event": { "type": "string" }, "event_level": { "type": "integer" } } } } } }, "title": "OpenWeather Road Risk API", "type": "array" }
openweather