json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "description": "An instance of <a href=\"#plugin-configuration\">a plugin configuration</a>.", "properties": { "actions": { "description": "A list of actions associated to this plugin.", "example": [ "action-awesome-thing", "action-more-awesome" ], "items": { "type": "string" }, "title": "Actions", "type": "array" }, "data": { "description": "The eventual data associated to the plugin, specific to each plugin.", "example": {}, "title": "Data", "type": "object" }, "events": { "description": "Events to react to, specific to each plugin.", "example": { "onDrag": [ "action-more-awesome" ] }, "title": "Events", "type": "object" }, "options": { "description": "The options of this instance, specific and different for each plugin.", "example": { "key": "overwritting-previous-key", "missing-options": 42 }, "title": "Options", "type": "object" } }, "title": "PluginConfigurationConfig", "type": "object" }
o44286
{ "description": "Calculating cost of a transaction", "endpoint": "/cost", "methods": [ "post" ], "params": { "amount": 5000, "network": "mpesa", "transactionType": "withdrawal", "transactor": "agent" }, "properties": { "cost": { "type": "number" } }, "required": [ "cost" ], "type": "object" }
o41787
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "created": { "_format": "date-time", "description": "when the view was created", "type": "string" }, "key": { "type": "string" } }, "properties": { "created": { "$ref": "#/definitions/created" }, "key": { "$ref": "#/definitions/key" } }, "required": [ "key", "created" ], "type": "object" }
o79609
{ "additionalProperties": true, "definitions": { "owner": { "anyOf": [ { "additionalProperties": true, "properties": { "name": { "description": "Name of the repository owner", "maxLength": 100 } }, "required": [ "name" ] }, { "additionalProperties": true, "properties": { "login": { "description": "Name of the repository owner", "maxLength": 100 } }, "required": [ "login" ] } ], "type": "object" }, "repository": { "additionalProperties": true, "properties": { "name": { "description": "Name of the repository", "maxLength": 100 }, "owner": { "$ref": "#/definitions/owner" } }, "required": [ "name", "owner" ], "type": "object" } }, "properties": { "deleted": { "default": false, "description": "Boolean value indicated if this is payload for delete hook", "type": "boolean" }, "ref": { "description": "Github branch/tag", "maxLength": 255, "type": "string" }, "repository": { "$ref": "#/definitions/repository" } }, "required": [ "repository" ], "title": "Schema for githook payload", "type": "object" }
o82149
{ "@context": [ "http://w3c.github.io/wot/w3c-wot-td-context.jsonld", { "st": "http://example.org/smartthings#" } ], "@type": "capability", "name": "colortemperature", "encodings": [ "JSON" ], "uris": [ "colortemperature" ], "properties": { "valueType": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "number", "units": "K" }, "writable": false } , "actions": [ { "@type": "st:setcolortemperature", "name": "setcolortemperature", "inputData": { "valueType": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "colortemperature": { "type": "number", "units": "K" } } } }, "hrefs": [ "colortemperatureActions" ] } ] }
o46904
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "square", "rectangle", "triangle", "circle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_11accd5b
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. rectangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_03267c14
{ "title": "Range Information", "$schema": "http://json-schema.org/draft-04/schema", "description": "Range Information.", "properties": { "currentRangeExtent": { "type": "array", "description": "Contains the min and max values within which the features are visible.", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, "field": { "type": "string", "description": "Field name to used for the range." }, "fullRangeExtent": { "type": "array", "description": "Contains the min and max values of all the features for this rangeInfo.", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, "name": { "type": "string", "description": "A unique name that can be referenced by webMap.activeRanges." }, "type": { "type": "string", "description": "Type of range object.", "enum": [ "rangeInfo" ] } }, "required": [ "field", "name", "type" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "rangeInfo", "schema": "layerDefinition_schema.json", "code": { "layerDefinition": { "rangeInfos": [ { "type": "rangeInfo", "name": "floors", "field": "floor", "currentRangeExtent": [ -2, 10 ], "fullRangeExtent": [ -2, 100 ] } ] } } } ] } }
o90285
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Coupon Created Webhook Schema", "description": "Sent when a new coupon (referral code) is created, often when the user is created or interacts with a newly activated program", "type": "object", "properties": { "code": { "type": "string", "title": "Code", "description": "The code to be shared" }, "dateCreated": { "type": "integer", "title": "Date Created", "description": "The date this code was created" }, "programId": { "type": [ "string", "null" ], "title": "Program Id", "description": "The Id of the program this code was created for" } }, "required": [ "code", "dateCreated" ], "additionalProperties": false }
o72212
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "access_limited": { "additionalProperties": false, "properties": { "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "Deprecated: auth_bypass_ids should be sent as a separate field" }, "organisations": { "$ref": "#/definitions/guid_list", "description": "A list of organisation content ids permitted access to this item" }, "users": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "delivered_on": { "_format": "date-time", "type": "string" }, "emphasised_organisations": { "$ref": "#/definitions/emphasised_organisations" }, "first_public_at": { "$ref": "#/definitions/first_public_at" }, "government": { "$ref": "#/definitions/government" }, "image": { "$ref": "#/definitions/image" }, "location": { "type": "string" }, "political": { "$ref": "#/definitions/political" }, "speaker_without_profile": { "description": "A speaker that does not have a GOV.UK profile (eg the Queen)", "type": "string" }, "speech_type_explanation": { "description": "Details about the type of speech", "type": "string" }, "tags": { "$ref": "#/definitions/tags" } }, "required": [ "body", "political", "delivered_on" ], "type": "object" }, "emphasised_organisations": { "description": "The content ids of the organisations that should be displayed first in the list of organisations related to the item, these content ids must be present in the item organisation links hash.", "items": { "$ref": "#/definitions/guid" }, "type": "array" }, "first_public_at": { "_format": "date-time", "description": "DEPRECATED. The date the content was first published. Used in details. Deprecated in favour of top level `first_published_at`.", "type": "string" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "government": { "additionalProperties": false, "description": "DEPRECATED: Content should be associated with a government through a link", "properties": { "current": { "description": "Is the government that published this document still the current government.", "type": "boolean" }, "slug": { "description": "Government slug, used for analytics, eg '1970-to-1974-conservative-government'.", "type": "string" }, "title": { "description": "Name of the government that first published this document, eg '1970 to 1974 Conservative government'.", "type": "string" } }, "required": [ "title", "slug", "current" ], "type": "object" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "image": { "additionalProperties": false, "properties": { "alt_text": { "type": "string" }, "caption": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "credit": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "high_resolution_url": { "_format": "uri", "description": "URL to a high resolution version of the image, for use by third parties such as Twitter, Facebook or Slack. Used by the machine readable metadata component. Don't use this on user-facing web pages, as it might be very large.", "type": "string" }, "url": { "_format": "uri", "description": "URL to the image. The image should be in a suitable resolution for display on the page.", "type": "string" } }, "required": [ "url" ], "type": "object" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "political": { "description": "If the content is considered political in nature, reflecting views of the government it was published under.", "type": "boolean" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "tags": { "additionalProperties": false, "description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).", "properties": { "additional_topics": { "items": { "type": "string" }, "type": "array" }, "browse_pages": { "items": { "type": "string" }, "type": "array" }, "policies": { "items": { "type": "string" }, "type": "array" }, "primary_topic": { "items": { "type": "string" }, "type": "array" }, "topics": { "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } }, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "$ref": "#/definitions/guid_list", "description": "A list of ids that will allow access to this item for non-authenticated users" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "speech", "authored_article", "written_statement", "oral_statement" ], "type": "string" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "_format": "date-time", "description": "Last time when the content received a major or minor update.", "type": "string" }, "links": { "additionalProperties": false, "properties": { "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "speech" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "type": "object" }
o21382
{ "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_ContainerState": { "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", "properties": { "running": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateRunning", "description": "Details about a running container" }, "terminated": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateTerminated", "description": "Details about a terminated container" }, "waiting": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateWaiting", "description": "Details about a waiting container" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateRunning": { "description": "ContainerStateRunning is a running state of a container.", "properties": { "startedAt": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which the container was last (re-)started" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateTerminated": { "description": "ContainerStateTerminated is a terminated state of a container.", "properties": { "containerID": { "description": "Container's ID in the format 'docker://<container_id>'", "type": "string" }, "exitCode": { "_format": "int32", "description": "Exit status from the last termination of the container", "type": "integer" }, "finishedAt": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which the container last terminated" }, "message": { "description": "Message regarding the last termination of the container", "type": "string" }, "reason": { "description": "(brief) reason from the last termination of the container", "type": "string" }, "signal": { "_format": "int32", "description": "Signal from the last termination of the container", "type": "integer" }, "startedAt": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which previous execution of the container started" } }, "required": [ "exitCode" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStateWaiting": { "description": "ContainerStateWaiting is a waiting state of a container.", "properties": { "message": { "description": "Message regarding why the container is not yet running.", "type": "string" }, "reason": { "description": "(brief) reason the container is not yet running.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStatus": { "description": "ContainerStatus contains details for the current status of this container.", "properties": { "containerID": { "description": "Container's ID in the format 'docker://<container_id>'.", "type": "string" }, "image": { "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imageID": { "description": "ImageID of the container's image.", "type": "string" }, "lastState": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerState", "description": "Details about the container's last termination condition." }, "name": { "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.", "type": "string" }, "ready": { "description": "Specifies whether the container has passed its readiness probe.", "type": "boolean" }, "restartCount": { "_format": "int32", "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.", "type": "integer" }, "started": { "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", "type": "boolean" }, "state": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerState", "description": "Details about the container's current condition." } }, "required": [ "name", "ready", "restartCount", "image", "imageID" ], "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_Pod": { "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.", "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": [ "Pod" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_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" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodStatus", "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Pod", "version": "v1" } ] }, "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_PodCondition": { "description": "PodCondition contains details for the current condition of this pod.", "properties": { "lastProbeTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": "string" }, "type": { "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": "string" } }, "required": [ "type", "status" ], "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_PodIP": { "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n IP: An IP address allocated to the pod. Routable at least within the cluster.", "properties": { "ip": { "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod", "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_PodStatus": { "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.", "properties": { "conditions": { "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "containerStatuses": { "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "ephemeralContainerStatuses": { "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "hostIP": { "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.", "type": "string" }, "initContainerStatuses": { "description": "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "message": { "description": "A human readable message indicating details about why the pod is in this condition.", "type": "string" }, "nominatedNodeName": { "description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.", "type": "string" }, "phase": { "description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase", "type": "string" }, "podIP": { "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", "type": "string" }, "podIPs": { "description": "podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodIP" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "qosClass": { "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md", "type": "string" }, "reason": { "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", "type": "string" }, "startTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod." } }, "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": "PodList is a list of Pods.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "items": { "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Pod" }, "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": [ "PodList" ], "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": "PodList", "version": "v1" } ] }
kb_708_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "RuleFileBundle": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "FieldValue": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "AccessInfo": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "Application": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "Class": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "RuleFileBinary": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "RuleFileText": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "Property Alias": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "Property": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "OverriddenPegaRules": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } }, "CEPEvent": { "type": "object", "properties": { "Size Estimate": { "type": "integer" }, "Prune Age": { "type": "integer" }, "Peak Value": { "type": "integer" }, "Type ID": { "type": "integer" }, "Min Size": { "type": "integer" }, "Count": { "type": "integer" }, "Type Name": { "type": "string" } } } } }
o66689
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://geojson.org/schema/GeoJSON.json", "title": "GeoJSON", "oneOf": [ { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON GeometryCollection", "type": "object", "required": [ "type", "geometries" ], "properties": { "type": { "type": "string", "enum": [ "GeometryCollection" ] }, "geometries": { "type": "array", "items": { "oneOf": [ { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Feature", "type": "object", "required": [ "type", "properties", "geometry" ], "properties": { "type": { "type": "string", "enum": [ "Feature" ] }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "geometry": { "oneOf": [ { "type": "null" }, { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON GeometryCollection", "type": "object", "required": [ "type", "geometries" ], "properties": { "type": { "type": "string", "enum": [ "GeometryCollection" ] }, "geometries": { "type": "array", "items": { "oneOf": [ { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON FeatureCollection", "type": "object", "required": [ "type", "features" ], "properties": { "type": { "type": "string", "enum": [ "FeatureCollection" ] }, "features": { "type": "array", "items": { "title": "GeoJSON Feature", "type": "object", "required": [ "type", "properties", "geometry" ], "properties": { "type": { "type": "string", "enum": [ "Feature" ] }, "id": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "properties": { "oneOf": [ { "type": "null" }, { "type": "object" } ] }, "geometry": { "oneOf": [ { "type": "null" }, { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON GeometryCollection", "type": "object", "required": [ "type", "geometries" ], "properties": { "type": { "type": "string", "enum": [ "GeometryCollection" ] }, "geometries": { "type": "array", "items": { "oneOf": [ { "title": "GeoJSON Point", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Point" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "number" } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON LineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "LineString" ] }, "coordinates": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON Polygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "Polygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPoint", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPoint" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiLineString", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiLineString" ] }, "coordinates": { "type": "array", "items": { "type": "array", "minItems": 2, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } }, { "title": "GeoJSON MultiPolygon", "type": "object", "required": [ "type", "coordinates" ], "properties": { "type": { "type": "string", "enum": [ "MultiPolygon" ] }, "coordinates": { "type": "array", "items": { "type": "array", "items": { "type": "array", "minItems": 4, "items": { "type": "array", "minItems": 2, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } }, "bbox": { "type": "array", "minItems": 4, "items": { "type": "number" } } } } ] }
geojson
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Policy", "description": "document containing permission statements", "type": "object", "properties": { "statements": { "type": "array", "items": { "type": "object", "properties": { "effect": { "type": "string", "pattern": "^allow|deny$" }, "actions": { "type": "array", "items": { "type": "string", "pattern": "^[a-z]+:\\w+$" } }, "resources": { "type": "array", "items": { "type": "string", "pattern": "^brn:(\\w+):(\\w+):(\\w*):(\\*|[\\w\\-]*\\*?)$" } } }, "required": [ "effect", "actions", "resources" ], "additionalProperties": false } } }, "required": [ "statements" ], "additionalProperties": false }
o26627
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" } }, "description": "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/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" }
wp_102_Normalized
{ "description": "", "title": "", "plural_title": "", "definitions": { "interventionDetails": { "multiple": false, "description": "Details for Intervention", "title": "Intervention Detail", "required": [ "_localId" ], "plural_title": "Intervention Details", "details": true, "definitions": {}, "type": "object", "properties": { "Type": { "format": "checkbox", "items": { "enum": [ "Addressing Alcohol and Other Drugs", "Additional Lane", "Bicycle Facilities", "Central Hatching", "Central Turning Lane Full Length", "Child Safety Initiatives", "Delineation", "Duplication", "Emergency Response", "Enforcement", "Fatigue Management", "Intersection - Delineation", "Intersection - Grade Separation", "Intersection - Roundabout", "Intersection - Signalise", "Intersection - Turn Lanes (Signalised)", "Intersection - Turn Lanes (Unsignalised)", "Lane Widening", "Median barrier", "Median Crossing Upgrade", "Motorcycle Lanes", "One Way Network", "Parking Improvements", "Pedestrian Crossing - Grade Separation", "Pedestrian Crossing - Signalised", "Pedestrian Crossing - Unsignalised", "Pedestrian Fencing", "Pedestrian Footpath", "Pedestrian Refuge Island", "Publicity", "Railway Crossing", "Realignment - Horizontal", "Realignment - Vertical", "Regulate Roadside Commercial Activity", "Restrict/Combine Direct Access Points", "Road Surface Rehabilitation", "Roadside Safety - Barriers", "Roadside Safety - Hazard Removal", "Rumble Strips", "Safe Speed", "School Zones", "Seatbelts", "Service Road", "Shoulder Sealing", "Sideslope Improvement", "Sight Distance (obstruction removal)", "Skid Resistance", "Speed Management", "Street Lighting", "Traffic Calming", "Used Car Safety Ratings", "Vehicle Features and Devices", "Vehicle Roadworthiness", "Education", "Helmets and Protective Clothing", "Licensing", "Motor Vehicle Standards", "New Car Assessment Program (NCAP)" ], "type": "string" }, "isSearchable": false, "propertyOrder": 0, "fieldType": "selectlist", "_uniqueItems": true, "type": "array" }, "_localId": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "type": "string", "options": { "hidden": true } } } } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "interventionDetails": { "$ref": "#/definitions/interventionDetails" } } }
o42179
{ "additionalProperties": true, "properties": { "body": { "additionalProperties": true, "properties": { "action": { "type": "string" }, "proximity": { "additionalProperties": true, "properties": { "id": { "pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", "type": "string" }, "lat": { "type": "string" }, "lon": { "type": "string" }, "major": { "maximum": 2147483647, "minimum": -2147483648, "type": "integer" }, "minor": { "maximum": 2147483647, "minimum": -2147483648, "type": "integer" }, "rssi": { "maximum": 2147483647, "minimum": -2147483648, "type": "integer" } }, "type": "object" }, "region_id": { "pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", "type": "string" }, "session_id": { "_format": "uuid", "type": "string" }, "source": { "pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$", "type": "string" } }, "type": "object" }, "device": { "additionalProperties": true, "properties": { "amazon_channel": { "_format": "uuid", "type": "string" }, "android_channel": { "_format": "uuid", "type": "string" }, "ios_channel": { "_format": "uuid", "type": "string" }, "named_user_id": { "_format": "uuid", "type": "string" } }, "type": "object" }, "id": { "_format": "uuid", "type": "string" }, "occurred": { "_format": "date-time", "type": "string" }, "offset": { "type": "string" }, "processed": { "_format": "date-time", "type": "string" }, "type": { "type": "string" } }, "self": { "format": "jsonschema", "name": "REGION", "vendor": "com.urbanairship.connect", "version": "1-0-0" }, "type": "object" }
sp_393_Normalized
{ "properties": { "customer_details": { "properties": { "address": { "description": "The address of the customer", "type": "string" }, "name": { "description": "The name of the customer", "type": "string" } }, "required": [ "name", "address" ], "type": "object" }, "itemized_charges": { "items": { "properties": { "item": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "item", "price", "quantity" ], "type": "object" }, "type": "array" } }, "required": [ "customer_details", "itemized_charges" ], "type": "object" }
generate_invoice_fddbd043
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "image": { "additionalProperties": false, "properties": { "platform": { "$ref": "#/definitions/platform" }, "purpose": { "default": "any", "enum": [ "any", "any badge", "badge", "badge any", "maskable" ], "type": "string" }, "sizes": { "description": "The sizes member is a string consisting of an unordered set of unique space-separated tokens which are ASCII case-insensitive that represents the dimensions of an image for visual media.", "oneOf": [ { "pattern": "^[0-9 x]+$", "type": "string" }, { "enum": [ "any" ] } ] }, "src": { "description": "The src member of an image is a URL from which a user agent can fetch the icon's data.", "type": "string" }, "type": { "description": "The type member of an image is a hint as to the media type of the image.", "pattern": "^[\\sa-z0-9\\-+;\\.=\\/]+$", "type": "string" } }, "required": [ "src" ], "type": "object" }, "platform": { "description": "The platform it is associated to.", "enum": [ "itunes", "play", "windows" ] }, "related_application": { "additionalProperties": false, "properties": { "fingerprints": { "description": "An array of fingerprint objects used for verifying the application.", "items": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "value": { "type": "string" } }, "required": [ "type", "value" ], "type": "object" }, "type": "array" }, "id": { "description": "Information additional to the URL or instead of the URL, depending on the platform.", "type": "string" }, "min_version": { "description": "Information about the minimum version of an application related to this web app.", "type": "string" }, "platform": { "$ref": "#/definitions/platform" }, "url": { "description": "The URL where the application can be found.", "format": "uri", "type": "string" } }, "oneOf": [ { "required": [ "id", "platform" ] }, { "required": [ "id", "platform", "url" ] }, { "required": [ "platform", "url" ] } ], "type": "object" } }, "patternProperties": { "(gcm)_.*": { "description": "Vendor prefixes for known proprietary extensions" } }, "properties": { "background_color": { "description": "The background_color member describes the expected background color of the web application.", "type": "string" }, "categories": { "description": "Describes the expected application categories to which the web application belongs.", "items": { "enum": [ "books", "business", "education", "entertainment", "finance", "fitness", "food", "games", "government", "health", "kids", "lifestyle", "magazines", "medical", "music", "navigation", "news", "personalization", "photo", "politics", "productivity", "security", "shopping", "social", "sports", "travel", "utilities", "weather" ] }, "type": "array" }, "description": { "description": "Description of the purpose of the web application", "type": "string" }, "dir": { "default": "auto", "description": "The base direction of the manifest.", "enum": [ "auto", "ltr", "rtl" ] }, "display": { "default": "browser", "description": "The item represents the developer's preferred display mode for the web application.", "enum": [ "browser", "fullscreen", "minimal-ui", "standalone" ] }, "iarc_rating_id": { "description": "Represents an ID value of the IARC rating of the web application. It is intended to be used to determine which ages the web application is appropriate for.", "type": "string" }, "icons": { "description": "The icons member is an array of icon objects that can serve as iconic representations of the web application in various contexts.", "items": { "$ref": "#/definitions/image" }, "type": "array" }, "lang": { "description": "The primary language for the values of the manifest.", "type": "string" }, "name": { "description": "The name of the web application.", "type": "string" }, "orientation": { "description": "The orientation member is a string that serves as the default orientation for all top-level browsing contexts of the web application.", "enum": [ "any", "landscape", "landscape-primary", "landscape-secondary", "natural", "portrait", "portrait-primary", "portrait-secondary" ] }, "prefer_related_applications": { "default": false, "description": "Boolean value that is used as a hint for the user agent to say that related applications should be preferred over the web application.", "type": "boolean" }, "related_applications": { "description": "Array of application accessible to the underlying application platform that has a relationship with the web application.", "items": { "$ref": "#/definitions/related_application" }, "type": "array" }, "scope": { "description": "A string that represents the navigation scope of this web application's application context.", "type": "string" }, "screenshots": { "description": "The screenshots member is an array of image objects represent the web application in common usage scenarios.", "items": { "$ref": "#/definitions/image" }, "type": "array" }, "serviceworker": { "additionalProperties": false, "description": "The service worker of the web application.", "properties": { "scope": { "description": "The service worker's associated scope URL.", "type": "string" }, "src": { "description": "URL representing a service worker.", "type": "string" }, "type": { "default": "classic", "description": "The service worker's worker type.", "enum": [ "classic", "module" ] }, "update_via_cache": { "default": "imports", "description": "Determines whether the user agent cache should be used when fetching the service worker.", "enum": [ "all", "imports", "none" ] } }, "type": "object" }, "short_name": { "description": "A string that represents a short version of the name of the web application.", "type": "string" }, "start_url": { "description": "Represents the URL that the developer would prefer the user agent load when the user launches the web application.", "type": "string" }, "theme_color": { "description": "The theme_color member serves as the default theme color for an application context.", "type": "string" } }, "title": "JSON schema for Web Application manifest files", "type": "object" }
o77303
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceClass": { "type": "string", "enum": [ "standalone", "gateway", "peripheral", "floating", "edgeCompute", "system" ] }, "token": { "type": "string", "minLength": 1 }, "ownerType": { "type": "string", "enum": [ "user", "organization" ] }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "required": [ "applicationId", "deviceId", "deviceClass", "token" ] }
o9798
{ "title": "title", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "Text for the title of the individual slide.", "properties": { "text": { "type": "string", "description": "Text to display as slide title." } }, "required": [ "text" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "title", "code": { "title": { "text": "Great slide" } } } ] } }
o90325
{ "id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/youtube-video-teaser/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" } }, "order_date": { "type": "string", "format": "date-time", "description": "Determines the sequence that this teaser node will be rendered in lists, search results, etc. It DOES NOT control visibility or publishing. A date was used over an integer (e.g. seq_no) for blog-like, reverse chronological, clarity in sorting.", "pbj": { "type": "date-time", "rule": "single" } }, "slotting": { "type": "object", "patternProperties": { "^[a-zA-Z_]{1}[\\w\\.:-]+$": { "type": "integer", "default": 0, "minimum": 0, "maximum": 255 } }, "additionalProperties": false, "description": "A map of integers, e.g. {home: 1, sports: 5, tv: 9}, that determine where teasers will render in lists that use slotting. We call it slotting vs sticky or pinning as that is generally just one at a time.", "pbj": { "type": "tiny-int", "rule": "map" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to the image asset to use for widgets, sharing, seo.", "pbj": { "type": "identifier", "rule": "single" } }, "description": { "type": "string", "minLength": 0, "maxLength": 5000, "description": "A description of the teaser (usually a few sentences). It should typically not have HTML as it is used in metadata, feeds, SERP and social.", "pbj": { "type": "text", "rule": "single" } }, "caption": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to caption the teaser.", "pbj": { "type": "string", "rule": "single" } }, "cta_text": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used for the call to action.", "pbj": { "type": "string", "rule": "single" } }, "credit": { "type": "string", "minLength": 0, "maxLength": 255, "description": "Text to be used to credit the teaser source.", "pbj": { "type": "string", "rule": "single" } }, "credit_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "description": "URL to be used to link to the teaser source.", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "gallery_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "timeline_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "youtube_video_id": { "type": "string", "pattern": "^[\\w-]+$", "pbj": { "type": "string", "rule": "single" } } }, "required": [ "_id", "youtube_video_id" ], "additionalProperties": true }
o82849
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": [ "grid" ], "properties": { "grid": { "type": "object", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic", "axRole": "inlet" } } }, "tabs": { "type": "object", "required": [], "properties": { "parameter": { "type": "string", "format": "topic", "default": "events" } } } } }
o89604
{ "additionalProperties": true, "description": "Schema for a Mailgun message dropped event", "properties": { "attachmentCount": { "description": "Number of attachments in attachment-x (where x is a number) fields.", "maximum": 65535, "type": "integer" }, "code": { "description": "SMTP bounce error code in form (X.X.X).", "maxLength": 8, "type": "string" }, "description": { "description": "Detailed explanation for why the message was dropped.", "type": "string" }, "domain": { "_format": "hostname", "description": "Domain that sent the original message.", "maxLength": 256, "type": "string" }, "event": { "description": "Event name ('dropped').", "maxLength": 16, "type": "string" }, "messageHeaders": { "description": "String list of all MIME headers of the original message dumped to a JSON string (order of headers preserved).", "type": "string" }, "reason": { "description": "Reason for failure. Can be one either 'hardfail' or 'old'.", "maxLength": 8, "type": "string" }, "recipient": { "_format": "email", "description": "Recipient who could not be reached.", "maxLength": 256, "type": "string" }, "signature": { "description": "String with hexadecimal digits generate by HMAC algorithm (see securing webhooks).", "maxLength": 128, "type": "string" }, "token": { "description": "Randomly generated string with length 50 (see securing webhooks).", "maxLength": 50, "minLength": 50, "type": "string" }, "xMailgunSid": { "description": "Mailgun identifying header.", "type": "string" } }, "self": { "format": "jsonschema", "name": "message_dropped", "vendor": "com.mailgun", "version": "1-0-0" }, "type": "object" }
sp_118_Normalized
{ "additionalProperties": false, "description": "Schema for a ticket status flow", "properties": { "account": { "type": "string" }, "brand": { "type": "string" }, "ccNames": { "type": "string" }, "createdAt": { "type": "string" }, "dueDate": { "_format": "date-time", "type": [ "string", "null" ] }, "externalId": { "type": [ "string", "null" ] }, "groupAssigned": { "type": [ "string", "null" ] }, "inBusinessHours": { "type": "boolean" }, "latestComment": { "type": "string" }, "latestCommentAuthorName": { "type": "string" }, "latestCommentIsPublic": { "type": "boolean" }, "organizationId": { "type": [ "integer", "null" ] }, "organizationName": { "type": [ "string", "null" ] }, "priority": { "enum": [ "Low", "Normal", "High", "Urgent", null ], "type": [ "string", "null" ] }, "status": { "enum": [ "New", "Open", "Pending", "On-hold", "Solved", "Closed" ] }, "tags": { "type": [ "string", "null" ] }, "ticketId": { "type": "integer" }, "ticketTitle": { "type": "string" }, "ticketType": { "enum": [ "Question", "Incident", "Problem", "Task", "Ticket", null ], "type": [ "string", "null" ] }, "updatedAt": { "_format": "date-time", "type": "string" }, "url": { "type": "string" }, "via": { "type": "string" } }, "required": [ "ticketId", "updatedAt", "account", "brand", "ccNames", "createdAt", "dueDate", "externalId", "groupAssigned", "inBusinessHours", "latestComment", "latestCommentAuthorName", "latestCommentIsPublic", "organizationId", "organizationName", "priority", "status", "tags", "ticketTitle", "ticketType", "url", "via" ], "self": { "format": "jsonschema", "name": "ticket_updated", "vendor": "com.zendesk.snowplow", "version": "1-0-0" }, "type": "object" }
sp_401_Normalized
{ "properties": { "discounts": { "items": { "properties": { "expiry_date": { "description": "The expiry date of the discount", "type": "string" }, "percentage": { "description": "The percentage discount to be applied", "type": "number" } }, "required": [ "percentage", "expiry_date" ], "type": "object" }, "type": "array" }, "original_price": { "description": "The original price of the product", "type": "number" } }, "required": [ "original_price", "discounts" ], "type": "object" }
calculate_discounted_price_04d59cce
{ "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", "null" ] }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": [ "string", "null" ] }, "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", "null" ] }, "type": [ "array", "null" ] } }, "required": [ "key", "operator" ], "type": "object" }
kb_625_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "JSON schema for an item.", "properties": { "$schema": { "default": "https://ils.rero.ch/schema/items/item-v0.0.1.json", "description": "Schema to validate item records against.", "minLength": 9, "title": "Schema", "type": "string" }, "barcode": { "form": { "expressionProperties": { "templateOptions.required": "false" }, "focus": true, "validation": { "messages": { "alreadyTakenMessage": "The barcode is already taken." }, "validators": { "valueAlreadyExists": {} } } }, "minLength": 4, "title": "Barcode", "type": "string" }, "call_number": { "minLength": 4, "title": "Call number", "type": "string" }, "document": { "properties": { "$ref": { "default": "https://ils.rero.ch/api/documents/", "pattern": "^https://ils.rero.ch/api/documents/.+?$", "title": "Document URI", "type": "string" } }, "title": "Document", "type": "object" }, "holding": { "description": "Holding record for the item.", "properties": { "$ref": { "pattern": "^https://ils.rero.ch/api/holdings/.+?$", "title": "Holding URI", "type": "string" } }, "title": "Holding", "type": "object" }, "issue": { "additionalProperties": false, "form": { "hideExpression": "field.parent.model.type !== 'issue'" }, "properties": { "display_text": { "minLength": 1, "title": "displayed text", "type": "string" }, "expected_date": { "_format": "date", "form": { "hideExpression": "field.parent.model.regular", "type": "datepicker", "validation": { "messages": { "pattern": "Should be in the ISO 8601, YYYY-MM-DD." } }, "wrappers": [ "form-field" ] }, "pattern": "\\d{4}-((0[1-9])|(1[0-2]))-(((0[1-9])|[1-2][0-9])|(3[0-1]))$", "title": "Expected date", "type": "string", "validationMessage": "Should be in the following format: 2022-12-31 (YYYY-MM-DD)." }, "received_date": { "_format": "date", "form": { "type": "datepicker", "validation": { "messages": { "pattern": "Should be in the ISO 8601, YYYY-MM-DD." } }, "wrappers": [ "form-field" ] }, "pattern": "\\d{4}-((0[1-9])|(1[0-2]))-(((0[1-9])|[1-2][0-9])|(3[0-1]))$", "title": "Date of reception", "type": "string", "validationMessage": "Should be in the following format: 2022-12-31 (YYYY-MM-DD)." }, "regular": { "default": true, "form": { "hideExpression": "true" }, "title": "Regularity", "type": "boolean" }, "status": { "default": "received", "enum": [ "received", "claimed", "deleted" ], "title": "Issue status", "type": "string" } }, "propertiesOrder": [ "display_text", "received_date", "expected_date", "regular", "status" ], "required": [ "display_text", "received_date", "expected_date", "regular", "status" ], "title": "Issue", "type": "object" }, "item_type": { "form": { "hideExpression": "field.parent.model.type === 'issue'" }, "properties": { "$ref": { "form": { "remoteOptions": { "type": "item_types" } }, "pattern": "^https://ils.rero.ch/api/item_types/.+?$", "title": "Item Type URI", "type": "string" } }, "required": [ "$ref" ], "title": "Circulation category of the item", "type": "object" }, "location": { "form": { "hideExpression": "field.parent.model.type === 'issue'" }, "properties": { "$ref": { "form": { "fieldMap": "location" }, "pattern": "^https://ils.rero.ch/api/locations/.+?$", "title": "Location URI", "type": "string" } }, "required": [ "$ref" ], "title": "Location", "type": "object" }, "notes": { "form": { "validation": { "messages": { "uniqueValueKeysInObjectMessage": "Only one note per type is allowed" }, "validators": { "uniqueValueKeysInObject": { "keys": [ "type" ] } } } }, "items": { "properties": { "content": { "form": { "templateOptions": { "rows": 3 }, "type": "textarea" }, "maxLength": 2000, "minLength": 3, "title": "Content", "type": "string" }, "type": { "enum": [ "public_note", "staff_note", "checkin_note", "checkout_note" ], "form": { "options": [ { "label": "public note", "value": "public_note" }, { "label": "staff note", "value": "staff_note" }, { "label": "checkin note", "value": "checkin_note" }, { "label": "checkout note", "value": "checkout_note" } ] }, "title": "Type", "type": "string" } }, "propertiesOrder": [ "type", "content" ], "required": [ "type", "content" ], "title": "Note", "type": "object" }, "title": "Notes", "type": "array" }, "organisation": { "properties": { "$ref": { "pattern": "^https://ils.rero.ch/api/organisations/.*?$", "title": "Organisation URI", "type": "string" } }, "title": "Organisation", "type": "object" }, "pid": { "minLength": 1, "title": "Item ID", "type": "string" }, "status": { "default": "on_shelf", "enum": [ "on_shelf", "on_loan", "missing", "in_transit", "at_desk", "excluded" ], "form": { "hideExpression": "true", "options": [ { "label": "on_shelf", "value": "on_shelf" }, { "label": "on_loan", "value": "on_loan" }, { "label": "missing", "value": "missing" }, { "label": "in_transit", "value": "in_transit" }, { "label": "at_desk", "value": "at_desk" }, { "label": "excluded", "value": "excluded" } ] }, "readOnly": true, "title": "circulation status", "type": "string" }, "type": { "default": "standard", "enum": [ "standard", "issue" ], "form": { "hideExpression": "true" }, "title": "Item type", "type": "string" } }, "propertiesOrder": [ "barcode", "call_number", "item_type", "location", "status", "type", "status", "issue", "notes" ], "required": [ "$schema", "pid", "location", "barcode", "item_type", "type", "document", "status" ], "title": "Item", "type": "object" }
o69969
{ "additionalProperties": false, "description": "Snowplow Snowflake storage configuration", "properties": { "account": { "description": "Snowflake account name. Must be obtained from Snowflake", "type": "string" }, "auth": { "description": "Authentication method for Snowflake Load", "oneOf": [ { "description": "Static AWS credentials", "properties": { "accessKeyId": { "description": "accessKeyId of static AWS credentials", "type": "string" }, "secretAccessKey": { "description": "secretAccessKey of static AWS credentials", "type": "string" } }, "required": [ "accessKeyId", "secretAccessKey" ], "type": "object" }, { "description": "Temporary credentials", "properties": { "roleArn": { "description": "roleArn of temporary credentials", "minLength": 20, "type": [ "string", "null" ] }, "sessionDuration": { "description": "sessionDuration of temporary credentials", "minimum": 900, "type": "integer" } }, "required": [ "roleArn", "sessionDuration" ], "type": "object" }, { "type": "null" } ] }, "awsRegion": { "description": "AWS Region used by Transformer to access S3 and DynamoDB", "type": "string" }, "badOutputUrl": { "_format": "uri", "description": "URL for bad rows e.g. s3://com-acme-snowplow/snowflake/badrow", "type": "string" }, "database": { "description": "Snowflake Database name. Database must be created manually e.g. acme-snowplow", "type": "string" }, "id": { "_format": "uuid", "description": "Optional machine-readable configuration id", "type": "string" }, "input": { "_format": "uri", "description": "S3 URL to Snowplow enriched events archive e.g. s3://com-acme-snowplow/archive/enriched/", "type": "string" }, "jdbcHost": { "description": "An optional host for the JDBC driver that has priority over automatically derived hosts", "type": "string" }, "manifest": { "description": "AWS DynamoDB table name with processing manifest. Needs to be created manually e.g. snowflake-event-manifest", "type": "string" }, "maxError": { "description": "Optional Snowflake setting - a table copy statement will skip an input file when the number of errors in it exceeds the specified number", "type": "integer" }, "name": { "description": "Human-readable configuration name", "type": "string" }, "password": { "description": "Password which can be passed in two forms: plain string or ec2ParameterStore", "properties": { "ec2ParameterStore": { "description": "ec2ParameterStore object as password. Password will be safely stored in EC2 Parameter store and not exposed", "properties": { "parameterName": { "type": "string" } }, "required": [ "parameterName" ], "type": "object" } }, "required": [ "ec2ParameterStore" ], "type": [ "string", "object" ] }, "purpose": { "enum": [ "ENRICHED_EVENTS" ], "type": "string" }, "schema": { "description": "Snowflake DB schema. Schema automatically created during setup step e.g. atomic", "type": "string" }, "snowflakeRegion": { "description": "AWS Region used by Snowflake to access its endpoint. Recommended to use same as $AWS_REGION if possible", "type": "string" }, "stage": { "description": "Arbitrary name for Snowflake Stage. Stage created automatically during setup step e.g. snowplow_stage", "type": "string" }, "stageUrl": { "_format": "uri", "description": "URL for Transformer-processed data e.g. s3://com-acme-snowplow/snowflake/stage/", "type": "string" }, "username": { "description": "Snowflake username. Must be obtained from Snowflake", "type": "string" }, "warehouse": { "description": "Snowflake Warehouse. Warehouse automatically created during setup step e.g. snowplow_wh", "type": "string" } }, "required": [ "name", "auth", "awsRegion", "manifest", "snowflakeRegion", "database", "account", "warehouse", "input", "stage", "stageUrl", "username", "password", "purpose" ], "self": { "format": "jsonschema", "name": "snowflake_config", "vendor": "com.snowplowanalytics.snowplow.storage", "version": "1-0-2" }, "type": "object" }
sp_378_Normalized
{ "properties": { "activepolicy": { "readonly": true, "type": "integer" }, "boundto": { "type": "string" }, "gotopriorityexpression": { "readonly": true, "type": "string" }, "name": { "type": "string" }, "nextfactor": { "readonly": true, "type": "string" }, "priority": { "readonly": true, "type": "integer" } }, "title": "authenticationpolicy_authenticationpolicylabel_binding", "type": "object" }
o30126
{ "properties": { "include_lowercase": { "description": "Whether to include lowercase letters", "type": "boolean" }, "include_numbers": { "description": "Whether to include numbers", "type": "boolean" }, "include_symbols": { "description": "Whether to include special symbols", "type": "boolean" }, "include_uppercase": { "description": "Whether to include uppercase letters", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length", "include_uppercase", "include_lowercase", "include_numbers", "include_symbols" ], "type": "object" }
generate_random_password_2edc6c3c
{ "properties": { "adminstate": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "backplanebasedview": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "clid": { "type": "integer" }, "clusternoheartbeatonnode": { "readonly": true, "type": "boolean" }, "clusternolinksetmbf": { "readonly": true, "type": "boolean" }, "clusternospottedip": { "readonly": true, "type": "boolean" }, "deadinterval": { "type": "integer" }, "hellointerval": { "type": "integer" }, "heterogeneousflag": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "inc": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "jumbonotsupported": { "readonly": true, "type": "boolean" }, "licensemismatch": { "readonly": true, "type": "boolean" }, "nodegroup": { "type": "string" }, "nodegroupstatewarning": { "readonly": true, "type": "boolean" }, "nodepenummismatch": { "readonly": true, "type": "boolean" }, "operationalpropstate": { "enum": [ "UNKNOWN", "ENABLED", "DISABLED", "AUTO DISABLED" ], "readonly": true, "type": "string" }, "operationalstate": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "penummismatch": { "readonly": true, "type": "boolean" }, "preemption": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "processlocal": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "propstate": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "quorumtype": { "enum": [ "MAJORITY", "NONE" ], "type": "string" }, "retainconnectionsoncluster": { "enum": [ "YES", "NO" ], "type": "string" }, "rsskeymismatch": { "readonly": true, "type": "boolean" }, "status": { "enum": [ "DOWN", "UP", "PARTIAL-UP", "UNKNOWN" ], "readonly": true, "type": "string" }, "validmtu": { "readonly": true, "type": "integer" } }, "title": "clusterinstance", "type": "object" }
o30284
{ "additionalProperties": false, "properties": { "_id": { "description": "unique url-friendly base64 encoded, utf8 endoded concatenation identifier", "type": "string" }, "_timestamp": { "_format": "date-time", "description": "ISO8601 combined date and time in UTC e.g. '2014-12-01T00:00:00+00:00'", "type": "string" }, "award": { "description": "queens award applied for", "enum": [ "international-trade", "innovation", "sustainable-development", "qaep" ] }, "count": { "description": "The number of applications for an award at a specific stage of completeness", "minimum": 0, "type": "integer" }, "period": { "description": "The period covered by each data point from the _timestamp", "enum": [ "hour", "day", "week", "month", "quarter" ] }, "stage": { "description": "the applications stage of completion", "enum": [ "0-percent", "1-24-percent", "25-49-percent", "50-74-percent", "75-99-percent", "100-percent" ] } }, "required": [ "_id", "_timestamp", "period", "award", "stage", "count" ], "title": "queens-award-for-enterprise-applications-by-stage", "type": "object" }
o21471
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "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", "null" ] }, "matchLabels": { "additionalProperties": { "type": [ "string", "null" ] }, "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", "null" ] } }, "type": "object" }
kb_509_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_a16ae769
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string", "description": "Short package description." }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "require": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": true }, "replace": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": true }, "conflict": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": true }, "provide": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": true }, "require-dev": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": true }, "suggest": { "type": "object", "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": true }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "preferred-install": { "type": [ "string", "object" ], "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}." }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": true }, "gitlab-oauth": { "type": "object", "description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": true }, "disable-tls": { "type": "boolean", "description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini." }, "cafile": { "type": "string", "description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically." }, "capath": { "type": "string", "description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory." }, "http-basic": { "type": "object", "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": true }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "platform": { "type": "object", "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "additionalProperties": true }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "data-dir": { "type": "string", "description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "bin-compat": { "enum": [ "auto", "full" ], "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "gitlab-domains": { "type": "array", "description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].", "items": { "type": "string" } }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." }, "exclude-from-classmap": { "type": "array", "description": "This is an array of patterns to exclude from autoload classmap generation. (e.g. \"exclude-from-classmap\": [\"/test/\", \"/tests/\", \"/Tests/\"]" } } }, "autoload-dev": { "type": "object", "description": "Description of additional autoload rules for development purpose (eg. a test suite).", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found into (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "psr-4": { "type": "object", "description": "This is a hash of namespaces (keys) and the PSR-4 directories they can map to (values, can be arrays of paths) by the autoloader.", "additionalProperties": true }, "classmap": { "type": "array", "description": "This is an array of directories that contain classes to be included in the class-map generation process." }, "files": { "type": "array", "description": "This is an array of files that are always required on every request." } } }, "archive": { "type": [ "object" ], "description": "Options for creating package archives for distribution.", "properties": { "exclude": { "type": "array", "description": "A list of patterns for paths to exclude or include if prefixed with an exclamation mark." } } }, "repositories": { "type": [ "object", "array" ], "description": "A set of additional repositories where packages can be found.", "additionalProperties": true }, "minimum-stability": { "type": [ "string" ], "description": "The minimum stability the packages must have to be install-able. Possible values are: dev, alpha, beta, RC, stable.", "pattern": "^dev|alpha|beta|rc|RC|stable$" }, "prefer-stable": { "type": [ "boolean" ], "description": "If set to true, stable packages will be preferred to dev packages when possible, even if the minimum-stability allows unstable packages." }, "bin": { "type": [ "array" ], "description": "A set of files that should be treated as binaries and symlinked into bin-dir (from config).", "items": { "type": "string" } }, "include-path": { "type": [ "array" ], "description": "DEPRECATED: A list of directories which should get added to PHP's include path. This is only present to support legacy projects, and all new code should preferably use autoloading.", "items": { "type": "string" } }, "scripts": { "type": [ "object" ], "description": "Scripts listeners that will be executed before/after some events.", "properties": { "pre-install-cmd": { "type": [ "array", "string" ], "description": "Occurs before the install command is executed, contains one or more Class::method callables or shell commands." }, "post-install-cmd": { "type": [ "array", "string" ], "description": "Occurs after the install command is executed, contains one or more Class::method callables or shell commands." }, "pre-update-cmd": { "type": [ "array", "string" ], "description": "Occurs before the update command is executed, contains one or more Class::method callables or shell commands." }, "post-update-cmd": { "type": [ "array", "string" ], "description": "Occurs after the update command is executed, contains one or more Class::method callables or shell commands." }, "pre-status-cmd": { "type": [ "array", "string" ], "description": "Occurs before the status command is executed, contains one or more Class::method callables or shell commands." }, "post-status-cmd": { "type": [ "array", "string" ], "description": "Occurs after the status command is executed, contains one or more Class::method callables or shell commands." }, "pre-package-install": { "type": [ "array", "string" ], "description": "Occurs before a package is installed, contains one or more Class::method callables or shell commands." }, "post-package-install": { "type": [ "array", "string" ], "description": "Occurs after a package is installed, contains one or more Class::method callables or shell commands." }, "pre-package-update": { "type": [ "array", "string" ], "description": "Occurs before a package is updated, contains one or more Class::method callables or shell commands." }, "post-package-update": { "type": [ "array", "string" ], "description": "Occurs after a package is updated, contains one or more Class::method callables or shell commands." }, "pre-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs before a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "post-package-uninstall": { "type": [ "array", "string" ], "description": "Occurs after a package has been uninstalled, contains one or more Class::method callables or shell commands." }, "pre-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs before the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-autoload-dump": { "type": [ "array", "string" ], "description": "Occurs after the autoloader is dumped, contains one or more Class::method callables or shell commands." }, "post-root-package-install": { "type": [ "array", "string" ], "description": "Occurs after the root-package is installed, contains one or more Class::method callables or shell commands." }, "post-create-project-cmd": { "type": [ "array", "string" ], "description": "Occurs after the create-project command is executed, contains one or more Class::method callables or shell commands." } } }, "support": { "type": "object", "properties": { "email": { "type": "string", "description": "Email address for support.", "format": "email" }, "issues": { "type": "string", "description": "URL to the issue tracker.", "format": "uri" }, "forum": { "type": "string", "description": "URL to the forum.", "format": "uri" }, "wiki": { "type": "string", "description": "URL to the wiki.", "format": "uri" }, "irc": { "type": "string", "description": "IRC channel for support, as irc://server/channel.", "format": "uri" }, "source": { "type": "string", "description": "URL to browse or download the sources.", "format": "uri" }, "docs": { "type": "string", "description": "URL to the documentation.", "format": "uri" } } }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } }, "abandoned": { "type": [ "boolean", "string" ], "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." } } }
o71565
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "inactive" ] }, "description": { "type": "string", "maxLength": 32767 }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "certificate": { "type": "string", "maxLength": 32767, "minLength": 50 }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "required": [ "certificate" ], "additionalProperties": false }
o9775
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse": { "description": "LimitResponse defines how to handle requests that can not be executed right now.", "properties": { "queuing": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration", "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." }, "type": { "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "queuing": "Queuing" } } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration": { "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", "properties": { "assuredConcurrencyShares": { "_format": "int32", "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", "type": "integer" }, "limitResponse": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitResponse", "description": "`limitResponse` indicates what to do with requests that can not be executed right now" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition": { "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": "string" }, "type": { "description": "`type` is the type of the condition. Required.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "properties": { "limited": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration", "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." }, "type": { "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "limited": "Limited" } } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "properties": { "conditions": { "description": "`conditions` is the current state of \"request-priority\".", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "properties": { "handSize": { "_format": "int32", "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", "type": "integer" }, "queueLengthLimit": { "_format": "int32", "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", "type": "integer" }, "queues": { "_format": "int32", "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "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": [ "PriorityLevelConfiguration" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec", "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus", "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfiguration", "version": "v1alpha1" } ] }
kb_767_Normalized
{ "$id": "https://json.schemastore.org/up.json", "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "name": { "type": "string", "title": "Name of the project.", "description": "A machine-friendly project name.", "examples": ["apex-site", "apex-api", "ping-app"] }, "description": { "type": "string", "title": "Description of the project.", "description": "An optional project description.", "examples": ["Marketing site", "Public API"] }, "type": { "type": "string", "title": "Type of project.", "description": "The type of project.", "default": "server", "enum": ["static", "server"], "examples": ["static"] }, "profile": { "type": "string", "title": "AWS profile.", "description": "AWS credentials profile name, these are stored in ~/.aws/credentials.", "examples": ["apex-prod", "apex-dev", "personal"] }, "regions": { "type": "array", "description": "List of target AWS regions for deployment.", "minItems": 1, "items": { "type": "string", "title": "AWS Region.", "description": "AWS region.", "enum": [ "us-east-2", "us-east-1", "us-west-1", "us-west-2", "ap-south-1", "ap-northeast-2", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "sa-east-1" ], "examples": ["us-west-2", "us-*", "eu-*", "*"] } }, "lambda": { "type": "object", "properties": { "accelerate": { "type": "boolean", "title": "Enables S3 acceleration.", "description": "Enable S3 acceleration for faster uploads via the CloudFront CDN.", "default": false }, "warm": { "type": "boolean", "title": "Enables active warming.", "description": "Active warming mitigates cold starts when enabled.", "default": false }, "warm_rate": { "type": "string", "title": "Active warming rate.", "description": "Active warming sends requests to your application at this interval.", "default": "15m", "examples": ["5m", "30m"] }, "warm_count": { "type": "integer", "title": "Active warming container count.", "description": "Number of concurrent containers to warm.", "default": "15" }, "memory": { "type": "integer", "title": "Memory.", "description": "Lambda memory size.", "default": 512, "enum": [ 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024, 1088, 1152, 1216, 1280, 1344, 1408, 1472, 1536, 1600, 1664, 1728, 1792, 1856, 1920, 1984, 2048, 2112, 2176, 2240, 2304, 2368, 2432, 2496, 2560, 2624, 2688, 2752, 2816, 2880, 2944, 3008 ] } } }, "stages": { "type": "object", "properties": { "production": { "type": "object", "properties": { "domain": { "type": "string", "title": "Domain name.", "description": "Domain hostname for the stage.", "default": "", "examples": ["gh-polls.com", "api.gh-polls.com"] } } }, "staging": { "type": "object", "properties": { "domain": { "type": "string", "title": "Domain name.", "description": "Domain hostname for the stage.", "default": "", "examples": ["stage.gh-polls.com", "gh-polls-staging.com"] } } }, "development": { "type": "object", "properties": { "domain": { "type": "string", "title": "Domain name.", "description": "Domain hostname for the stage.", "default": "", "examples": ["dev.gh-polls.com"] } } } } }, "hooks": { "type": "object", "properties": { "build": { "type": "string", "title": "Build hook.", "description": "Hook command(s) to run." }, "clean": { "type": "string", "title": "Clean hook.", "description": "Hook command(s) to run." }, "prebuild": { "type": "string", "title": "Prebuild hook.", "description": "Hook command(s) to run." }, "postbuild": { "type": "string", "title": "Postbuild hook.", "description": "Hook command(s) to run." }, "predeploy": { "type": "string", "title": "Predeploy hook.", "description": "Hook command(s) to run." }, "postdeploy": { "type": "string", "title": "Postdeploy hook.", "description": "Hook command(s) to run." } } }, "static": { "type": "object", "properties": { "dir": { "type": "string", "title": "Directory path.", "description": "Path to directory from which assets are served.", "default": ".", "examples": ["public", "./dist"] }, "prefix": { "type": "string", "title": "URL prefix.", "description": "Optional URL path prefix.", "examples": ["/public/", "/static/"] } } }, "proxy": { "type": "object", "properties": { "command": { "type": "string", "title": "Command.", "description": "Command run to start your application.", "default": "./server", "examples": ["node app.js"] }, "timeout": { "type": "integer", "title": "Request timeout.", "description": "Timeout in seconds per request.", "default": 15 }, "listen_timeout": { "type": "integer", "title": "Listen timeout.", "description": "Timeout in seconds Up will wait for your app to boot and listen on `PORT`.", "default": 15 }, "shutdown_timeout": { "type": "integer", "title": "Shutdown timeout.", "description": "Timeout in seconds Up will wait after sending a SIGINT to your server, before sending a SIGKILL.", "default": 15 }, "backoff": { "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum delay.", "description": "Minimum time in milliseconds before retrying.", "default": 500 }, "max": { "type": "integer", "title": "Max delay.", "description": "Maximum time in milliseconds before retrying.", "default": 1500 }, "factor": { "type": "number", "title": "Factor.", "description": "Factor applied to each attempt.", "default": 1.5 }, "attempts": { "type": "integer", "title": "Retry attempts.", "description": "Attempts made before failing.", "default": 5 }, "jitter": { "type": "boolean", "title": "Jitter.", "description": "Apply jitter.", "default": false } } } } }, "dns": { "type": "object" }, "environment": { "type": "object" }, "headers": { "type": "object" }, "error_pages": { "type": "object", "properties": { "disable": { "type": "boolean", "title": "Disable error pages.", "description": "Disable default error pages.", "default": false }, "dir": { "type": "string", "title": "Directory path.", "description": "Path to directory from which error pages are served.", "default": ".", "examples": ["public", "./dist"] }, "variables": { "type": "object", "properties": { "support_email": { "type": "string", "title": "Support email.", "description": "Support email for contact link.", "examples": ["[email protected]"] }, "color": { "type": "string", "title": "Color.", "description": "Theme color.", "examples": ["#228ae6"] } } } } }, "cors": { "type": "object", "properties": { "enable": { "type": "boolean", "title": "Enable CORS.", "description": "Enable Cross-Origin Resource Sharing.", "default": false }, "allowed_origins": { "type": "array", "items": { "type": "string", "title": "Allowed Origins.", "description": "A list of origins a cross-domain request can be executed from. Use `*` to allow any origin, or a wildcard such as `http://*.domain.com`.", "default": "*", "examples": ["https://*.myapp.com", "https://myapp.com"] } }, "allowed_methods": { "type": "array", "items": { "type": "string", "title": "Allowed Methods.", "description": "A list of methods the client is allowed to use with cross-domain requests.", "examples": ["GET", "HEAD"] } }, "allowed_headers": { "type": "array", "items": { "type": "string", "title": "Allowed Headers.", "description": "A list of headers the client is allowed to use with cross-domain requests. If the special `*` value is present in the list, all headers will be allowed.", "examples": ["Content-Type"] } }, "exposed_headers": { "type": "array", "items": { "type": "string", "title": "Exposed Headers.", "description": "A list of headers which are safe to expose to the API of a CORS response.", "examples": ["Content-Type"] } }, "max_age": { "type": "integer", "title": "Max Age.", "description": "A number indicating how long (in seconds) the results of a preflight request can be cached.", "default": 0 }, "allowed_credentials": { "type": "boolean", "title": "Allow Credentials.", "description": "A boolean indicating whether the request can include user credentials such as cookies, HTTP authentication or client side SSL certificates. Defaults to true.", "default": true } } }, "inject": { "type": "object" }, "redirects": { "type": "object" }, "actions": { "type": "array", "items": { "type": "object", "required": ["name", "type"], "properties": { "name": { "type": "string", "title": "Action Name.", "description": "Name of the action for reference from alert definitions.", "examples": [ "slack", "email.backend", "text.frontend", "text_frontend", "email.tj", "email tj", "Text backend team" ] }, "type": { "type": "string", "title": "Action Type.", "description": "Type of action to perform.", "examples": ["email", "sms"] }, "emails": { "type": "array", "items": { "type": "string", "title": "Email addresses.", "description": "Email addresses when using the email action.", "examples": ["[email protected]"] } }, "numbers": { "type": "array", "items": { "type": "string", "title": "Phone numbers.", "description": "Phone numbers when using the sms action.", "examples": ["+12508004123"] } } } } }, "alerts": { "type": "array", "items": { "type": "object", "required": ["metric", "statistic", "threshold", "action"], "properties": { "metric": { "type": "string", "title": "Metric name.", "description": "Name of the metric.", "examples": ["http.count", "http.latency", "http.4xx", "http.5xx"] }, "statistic": { "type": "string", "title": "Statistics name.", "description": "Name of statistic to perform.", "enum": ["min", "max", "avg", "sum", "count"], "examples": ["avg", "sum"] }, "threshold": { "type": "integer", "title": "Value Threshold.", "description": "Threshold which is compared to the operator.", "default": 0 }, "action": { "type": "string", "title": "Action Name.", "description": "Name of the action to perform.", "examples": ["email.backend", "sms backend team"] }, "period": { "type": ["integer", "string"], "title": "Period.", "description": "Period is the alert query time-span.", "default": "1m" }, "evaluation_periods": { "type": "integer", "title": "Evaluation Periods.", "description": "Number of periods to evaluate over.", "default": 1 }, "operator": { "type": "string", "title": "Operator.", "description": "Operator is the comparison operator.", "default": ">", "enum": [">", "<", ">=", "<="] }, "namespace": { "type": "string", "title": "Namespace.", "description": "Metric namespace.", "examples": ["AWS/ApiGateway"] }, "description": { "type": "string", "title": "Description.", "description": "Informative alert description, displayed in the email, sms, or slack.", "examples": ["Huge traffic spike"] }, "disable": { "type": "boolean", "title": "Disable.", "description": "Disable the alert.", "default": false } } } } }, "required": ["name"], "title": "JSON schema for Apex Up configuration files", "type": "object" }
up
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "paths": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string" } }, "required": [ "id", "type" ] } } }, "required": [ "id", "paths" ] }, "properties": {}, "additionalProperties": false }
o45167
{ "title": "ruleset", "type": "object", "patternProperties": { "^[a-zA-Z0-9\\-\\+]+$": { "title": "rule", "properties": { "url": { "type": "string" }, "forceHTTPS": { "type": "boolean" }, "updater": { "properties": { "x86": { "properties": { "url": { "type": "string" }, "rule_type": { "type": "string" }, "selector": { "type": "string" }, "baselink": { "type": "string" }, "filter": { "type": "string" } }, "required": [ "rule_type" ] }, "x86_64": { "properties": { "url": { "type": "string" }, "rule_type": { "type": "string" }, "selector": { "type": "string" }, "baselink": { "type": "string" }, "filter": { "type": "string" } }, "required": [ "rule_type" ] } }, "required": [ "x86" ] }, "version_extractor": { "type": "string" }, "version_source": { "type": "string" } }, "required": [ "updater", "version_extractor" ] } } }
o53523
{ "properties": { "dimensions": { "oneOf": [ { "required": [ "length", "width" ] }, { "required": [ "base", "height" ] }, { "required": [ "radius" ] } ], "properties": { "base": { "description": "The base measurement", "type": "number" }, "height": { "description": "The height measurement", "type": "number" }, "length": { "description": "The length measurement", "type": "number" }, "radius": { "description": "The radius measurement", "type": "number" }, "width": { "description": "The width measurement", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_423b749e
{ "definitions": { "admin": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when admin was created", "format": "date-time", "type": [ "string" ] }, "email": { "description": "unique email of admin", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of admin", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/admin/definitions/id" } ] }, "name": { "description": "unique name of admin", "readOnly": true, "type": [ "string" ] }, "password": { "description": "the admin's password", "readOnly": true, "type": [ "string" ] }, "password_confirmation": { "description": "the admin's password confirmation", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when admin was updated", "format": "date-time", "type": [ "string" ] } }, "description": "A Ticketfy Admin", "links": [ { "description": "Create a new admin.", "href": "/admins", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "POST", "rel": "create", "schema": { "properties": { "email": { "$ref": "#/definitions/admin/definitions/email" }, "name": { "$ref": "#/definitions/admin/definitions/name" }, "password": { "$ref": "#/definitions/admin/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/admin/definitions/password_confirmation" } }, "required": [ "name", "email", "password", "password_confirmation" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing admin.", "href": "/admins/{(%23%2Fdefinitions%2Fadmin%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing admin.", "href": "/admins/{(%23%2Fdefinitions%2Fadmin%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing admins.", "href": "/admins", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing admin.", "href": "/admins/{(%23%2Fdefinitions%2Fadmin%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "PATCH", "rel": "update", "schema": { "properties": { "email": { "$ref": "#/definitions/admin/definitions/email" }, "name": { "$ref": "#/definitions/admin/definitions/name" }, "password": { "$ref": "#/definitions/admin/definitions/password" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/admin/definitions/created_at" }, "email": { "$ref": "#/definitions/admin/definitions/email" }, "id": { "$ref": "#/definitions/admin/definitions/id" }, "name": { "$ref": "#/definitions/admin/definitions/name" }, "password": { "$ref": "#/definitions/admin/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/admin/definitions/password_confirmation" }, "updated_at": { "$ref": "#/definitions/admin/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Admin", "type": [ "object" ] }, "agent": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when agent was created", "format": "date-time", "type": [ "string" ] }, "email": { "description": "unique email of agent", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of agent", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/agent/definitions/id" } ] }, "name": { "description": "unique name of agent", "readOnly": true, "type": [ "string" ] }, "password": { "description": "the agent's password", "readOnly": true, "type": [ "string" ] }, "password_confirmation": { "description": "the agent's password confirmation", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when agent was updated", "format": "date-time", "type": [ "string" ] } }, "description": "A Ticketfy Agent", "links": [ { "description": "Create a new agent.", "href": "/agents", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "POST", "rel": "create", "schema": { "properties": { "email": { "$ref": "#/definitions/agent/definitions/email" }, "name": { "$ref": "#/definitions/agent/definitions/name" }, "password": { "$ref": "#/definitions/agent/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/agent/definitions/password_confirmation" } }, "required": [ "name", "email", "password", "password_confirmation" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing agent.", "href": "/agents/{(%23%2Fdefinitions%2Fagent%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing agent.", "href": "/agents/{(%23%2Fdefinitions%2Fagent%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing agents.", "href": "/agents", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing agent.", "href": "/agents/{(%23%2Fdefinitions%2Fagent%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "PATCH", "rel": "update", "schema": { "properties": { "email": { "$ref": "#/definitions/agent/definitions/email" }, "name": { "$ref": "#/definitions/agent/definitions/name" }, "password": { "$ref": "#/definitions/agent/definitions/password" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/agent/definitions/created_at" }, "email": { "$ref": "#/definitions/agent/definitions/email" }, "id": { "$ref": "#/definitions/agent/definitions/id" }, "name": { "$ref": "#/definitions/agent/definitions/name" }, "password": { "$ref": "#/definitions/agent/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/agent/definitions/password_confirmation" }, "updated_at": { "$ref": "#/definitions/agent/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Agent", "type": [ "object" ] }, "customer": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "created_at": { "description": "when customer was created", "format": "date-time", "type": [ "string" ] }, "email": { "description": "unique email of customer", "readOnly": true, "type": [ "string" ] }, "id": { "description": "unique identifier of customer", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "anyOf": [ { "$ref": "#/definitions/customer/definitions/id" } ] }, "name": { "description": "unique name of customer", "readOnly": true, "type": [ "string" ] }, "password": { "description": "the customer's password", "readOnly": true, "type": [ "string" ] }, "password_confirmation": { "description": "the customer's password confirmation", "readOnly": true, "type": [ "string" ] }, "updated_at": { "description": "when customer was updated", "format": "date-time", "type": [ "string" ] } }, "description": "A Ticketfy Customer", "links": [ { "description": "Create a new customer.", "href": "/customers", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "POST", "rel": "create", "schema": { "properties": { "email": { "$ref": "#/definitions/customer/definitions/email" }, "name": { "$ref": "#/definitions/customer/definitions/name" }, "password": { "$ref": "#/definitions/customer/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/customer/definitions/password_confirmation" } }, "required": [ "name", "email", "password", "password_confirmation" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing customer.", "href": "/customers/{(%23%2Fdefinitions%2Fcustomer%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing customer.", "href": "/customers/{(%23%2Fdefinitions%2Fcustomer%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing customers.", "href": "/customers", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing customer.", "href": "/customers/{(%23%2Fdefinitions%2Fcustomer%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "PATCH", "rel": "update", "schema": { "properties": { "email": { "$ref": "#/definitions/customer/definitions/email" }, "name": { "$ref": "#/definitions/customer/definitions/name" }, "password": { "$ref": "#/definitions/customer/definitions/password" } }, "type": [ "object" ] }, "title": "Update" } ], "properties": { "created_at": { "$ref": "#/definitions/customer/definitions/created_at" }, "email": { "$ref": "#/definitions/customer/definitions/email" }, "id": { "$ref": "#/definitions/customer/definitions/id" }, "name": { "$ref": "#/definitions/customer/definitions/name" }, "password": { "$ref": "#/definitions/customer/definitions/password" }, "password_confirmation": { "$ref": "#/definitions/customer/definitions/password_confirmation" }, "updated_at": { "$ref": "#/definitions/customer/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Customer", "type": [ "object" ] }, "ticket": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "agent_id": { "description": "ticket agent' id", "type": [ "string" ] }, "created_at": { "description": "when ticket was created", "format": "date-time", "readOnly": true, "type": [ "string" ] }, "customer_id": { "description": "ticket customers' id", "type": [ "string" ] }, "description": { "description": "ticket's description", "type": [ "string" ] }, "id": { "description": "unique identifier of ticket", "format": "uuid", "readOnly": true, "type": [ "string" ] }, "identity": { "$ref": "#/definitions/ticket/definitions/id" }, "status": { "description": "ticket's status", "type": [ "string" ] }, "updated_at": { "description": "when ticket was updated", "format": "date-time", "readOnly": true, "type": [ "string" ] } }, "description": "A Ticketfy Ticket", "links": [ { "description": "Create a new ticket.", "href": "/tickets", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "POST", "rel": "create", "schema": { "properties": { "customer_id": { "$ref": "#/definitions/ticket/definitions/customer_id" }, "description": { "$ref": "#/definitions/ticket/definitions/description" }, "status": { "$ref": "#/definitions/ticket/definitions/status" } }, "required": [ "description", "status", "customer_id" ], "type": [ "object" ] }, "title": "Create" }, { "description": "Delete an existing ticket.", "href": "/tickets/{(%23%2Fdefinitions%2Fticket%2Fdefinitions%2Fidentity)}", "method": "DELETE", "rel": "destroy", "title": "Delete" }, { "description": "Info for existing ticket.", "href": "/tickets/{(%23%2Fdefinitions%2Fticket%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "List existing tickets.", "href": "/tickets", "method": "GET", "rel": "instances", "title": "List" }, { "description": "Update an existing ticket.", "href": "/tickets/{(%23%2Fdefinitions%2Fticket%2Fdefinitions%2Fidentity)}", "http_header": { "access-token": "the user's access-token", "client": "the user client's identifier", "uid": "the user's identifier" }, "method": "PATCH", "rel": "update", "schema": { "properties": { "customer_id": { "$ref": "#/definitions/ticket/definitions/customer_id" }, "description": { "$ref": "#/definitions/ticket/definitions/description" }, "status": { "$ref": "#/definitions/ticket/definitions/status" } }, "required": [ "description", "status", "customer_id" ], "type": [ "object" ] }, "title": "Update" } ], "properties": { "agent_id": { "$ref": "#/definitions/ticket/definitions/agent_id" }, "created_at": { "$ref": "#/definitions/ticket/definitions/created_at" }, "customer_id": { "$ref": "#/definitions/ticket/definitions/customer_id" }, "description": { "$ref": "#/definitions/ticket/definitions/description" }, "id": { "$ref": "#/definitions/ticket/definitions/id" }, "status": { "$ref": "#/definitions/ticket/definitions/status" }, "updated_at": { "$ref": "#/definitions/ticket/definitions/updated_at" } }, "stability": "prototype", "strictProperties": true, "title": "Ticket", "type": [ "object" ] } }, "description": "A Customer Support Ticket System Rails API", "links": [ { "href": "ticketfy-api.herokuapp.com/api/v1", "rel": "self" } ], "properties": { "admin": { "$ref": "#/definitions/admin" }, "agent": { "$ref": "#/definitions/agent" }, "customer": { "$ref": "#/definitions/customer" }, "ticket": { "$ref": "#/definitions/ticket" } }, "title": "Ticketfy", "type": [ "object" ] }
o70918
{ "patternProperties": { "\\w*": { "type": [ "null", "string", "number", "boolean", "array" ] } }, "title": "properties", "type": [ "null", "object" ] }
o76865
{ "properties": { "length": { "description": "The length of the rectangle (required for rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (required for circle)", "type": "number" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "square", "rectangle" ], "type": "string" }, "side": { "description": "The side length of the square (required for square)", "type": "number" }, "width": { "description": "The width of the rectangle (required for rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_fbae1765
{ "description": "Describe a container image", "properties": { "names": { "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "sizeBytes": { "description": "The size of the image in bytes.", "format": "int64", "type": [ "integer", "null" ] } }, "required": [ "names" ], "type": "object" }
kb_122_Normalized
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The shape type, e.g. circle, rectangle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_224b10c8
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "item_name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "item_name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
generate_invoice_f09da27e
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "metadata_code_repository": { "type": "object", "description": "Code repository description", "properties": { "type": { "type": "string" }, "url": { "type": "string" } }, "required": [ "type", "url" ], "additionalProperties": false }, "metadata_maintainer": { "type": "object", "description": "Maintainer description", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "url": { "type": "string" } }, "additionalProperties": false }, "npm_shrinkwrap": { "type": "object", "description": "npm-shrinkwrap description", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "npm_shrinkwrap_version": { "type": "string" }, "node_version": { "type": "string" }, "resolved_dependencies": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false } }, "type": "object", "description": "Result of Mercator worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "npm_shrinkwrap": { "oneOf": [ { "$ref": "#/definitions/npm_shrinkwrap" }, { "type": "null" } ] }, "maintainers": { "oneOf": [ { "type": "array", "items": { "$ref": "#/definitions/metadata_maintainer" } }, { "type": "null" } ] }, "author": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "bug_reporting": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "code_repository": { "oneOf": [ { "$ref": "#/definitions/metadata_code_repository" }, { "type": "null" } ] }, "declared_license": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "description": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "devel_dependencies": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "engines": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "files": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "git_head": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "homepage": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "keywords": { "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "null" } ] }, "metadata": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "name": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "platform": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "readme": { "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "scripts": { "oneOf": [ { "type": "object", "additionalProperties": true }, { "type": "null" } ] }, "version": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "additionalProperties": false, "title": "metadata-v1-0-1" }
o60986
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "pipeline" ], "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "environment": { "type": "object" }, "schedule": { "type": "object", "properties": { "crontab": { "type": "string" } } }, "pipeline": { "type": "array", "minLength": 1, "items": { "type": "object", "oneOf": [ { "required": [ "run" ] }, { "required": [ "flow" ] } ], "properties": { "run": { "type": "string" }, "parameters": { "type": "object" }, "cache": { "type": "boolean" }, "validate": { "type": "boolean" } } } }, "dependencies": { "type": "array", "items": { "type": "object", "maxProperties": 1, "properties": { "datapackage": { "type": "string", "format": "uri" }, "pipeline": { "type": "string" } } } } } }
o42021
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Cluster Config", "description": "Configuration for forwarding metrics from Atlas LWC to AWS CloudWatch", "type": "object", "required": [ "email", "expressions" ], "properties": { "email": { "description": "Email address of the service owner", "type": "string", "format": "email" }, "expressions": { "description": "List of metric expressions", "type": "array", "_uniqueItems": true, "items": { "type": "object", "required": [ "metricName", "atlasUri", "account" ], "properties": { "metricName": { "description": "Name of the metric that will be created in CloudWatch", "type": "string", "pattern": "^(?:(?:[\\w\\-\\.\\s]+)|(?:\\$\\([\\w\\-\\.]+\\)))+$" }, "atlasUri": { "description": "Atlas query", "type": "string", "pattern": "^(https?://)?[\\w-]+(\\.[\\w-]+)*(:\\d+)?/api/v(\\d+){1}/graph\\?.+$" }, "comment": { "type": "string" }, "dimensions": { "description": "Details about AWS CloudWatch dimension that will be created", "type": "array", "_uniqueItems": true, "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "description": "Name of the CloudWatch dimension", "type": "string", "pattern": "^[\\w\\-\\.]+$" }, "value": { "description": "Atlas tag. Example: $(nf.asg)", "type": "string", "pattern": "^(?:(?:[\\w\\-\\.]+)|(?:\\$\\([\\w\\-\\.]+\\)))+$" } } } }, "account": { "description": "AWS account to send the metric to. Typically $(nf.account)", "type": "string", "pattern": "^([\\d]+|\\$\\([\\w\\-\\.]+\\))$" }, "region": { "description": "AWS region to send the metric to", "type": "string", "pattern": "^([\\w\\-\\.]+|\\$\\([\\w\\-\\.]+\\))$" } } } }, "checksToSkip": { "description": "The list of validations to skip", "type": "array", "_uniqueItems": true, "items": { "type": "string", "minLength": 1 } } } }
o11684
{ "properties": { "bornAt": { "type": "string" }, "categories": { "items": { "additionalProperties": false, "properties": { "category": { "type": "string" } }, "type": "object" }, "type": "array" }, "communityPartner": { "type": "object" }, "conformsTo": { "enum": [ "http://codefordc.org/resources/specification.html" ], "type": "string" }, "contact": { "additionalProperties": false, "properties": { "email": { "type": "string" }, "name": { "type": "string" }, "twitter": { "type": "string" } }, "type": "object" }, "data": { "type": "object" }, "geography": { "type": "string" }, "governmentPartner": { "type": "object" }, "moreInfo": { "type": "string" }, "needs": { "items": { "additionalProperties": false, "properties": { "need": { "type": "string" }, "want": { "type": "string" } }, "type": "object" }, "type": "array" }, "politicalEntity": { "type": "object" }, "status": { "enum": [ "Ideation", "Alpha", "Beta", "Production", "Archival" ], "type": "string" }, "thumbnailUrl": { "type": "string" }, "type": { "type": "string" } }, "required": [ "conformsTo", "contact", "status" ], "type": "object" }
o67027
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_7af3e88c
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "properties": { "JSONPath": { "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", "type": "string" }, "description": { "description": "description is a human readable description of this column.", "type": "string" }, "format": { "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, "name": { "description": "name is a human readable name for the column.", "type": "string" }, "priority": { "_format": "int32", "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", "type": "integer" }, "type": { "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" } }, "required": [ "name", "type", "JSONPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", "type": "string" }, "specReplicasPath": { "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", "type": "string" }, "statusReplicasPath": { "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { "type": "string" }, "$schema": { "type": "string" }, "additionalItems": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "allOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "default": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON", "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API." }, "definitions": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray" }, "type": "object" }, "description": { "type": "string" }, "enum": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "type": "array" }, "example": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "exclusiveMaximum": { "type": "boolean" }, "exclusiveMinimum": { "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", "type": "string" }, "id": { "type": "string" }, "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray" }, "maxItems": { "_format": "int64", "type": "integer" }, "maxLength": { "_format": "int64", "type": "integer" }, "maxProperties": { "_format": "int64", "type": "integer" }, "maximum": { "format": "double", "type": "number" }, "minItems": { "_format": "int64", "type": "integer" }, "minLength": { "_format": "int64", "type": "integer" }, "minProperties": { "_format": "int64", "type": "integer" }, "minimum": { "format": "double", "type": "number" }, "multipleOf": { "format": "double", "type": "number" }, "not": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "pattern": { "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "required": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" }, "type": { "type": "string" }, "uniqueItems": { "type": "boolean" }, "x-kubernetes-embedded-resource": { "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", "type": "boolean" }, "x-kubernetes-int-or-string": { "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", "type": "boolean" }, "x-kubernetes-list-map-keys": { "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", "items": { "type": "string" }, "type": "array" }, "x-kubernetes-list-type": { "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", "type": "string" }, "x-kubernetes-map-type": { "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", "type": "string" }, "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." } }, "description": "CustomResourceDefinitionVersion describes a version for CRD.", "properties": { "additionalPrinterColumns": { "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition" }, "type": [ "array", "null" ] }, "name": { "description": "name is the version name, e.g. \u201cv1\u201d, \u201cv2beta1\u201d, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.", "type": [ "string", "null" ] }, "schema": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation", "description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)." }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", "type": [ "boolean", "null" ] }, "storage": { "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", "type": [ "boolean", "null" ] }, "subresources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources", "description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead)." } }, "required": [ "name", "served", "storage" ], "type": "object" }
kb_209_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://clang.llvm.org/docs/JSONCompilationDatabase.html!", "title": "Compilation Database", "description": "List of compilation commands, that specify each translation unit in a project", "type": "array", "items": { "$ref": "#/definitions/commandObject" }, "definitions": { "commandObject": { "description": "Compilation command for single translation unit", "type": "object", "properties": { "directory": { "description": "Working directory of the compilation", "type": "string", "minLength": 1, "examples": [ "/home/user" ] }, "file": { "description": "Main translation unit source processed by this compilation command", "type": "string", "minLength": 1, "examples": [ "main.cpp" ] }, "command": { "description": "Compilation command", "type": "string", "minLength": 1, "examples": [ "/usr/bin/gcc main.cpp" ] }, "arguments": { "description": "Compilation command as list of strings", "type": "array", "minItems": 1, "items": { "type": "string", "minLength": 1 }, "examples": [ [ "/usr/bin/gcc", "main.cpp" ] ] }, "output": { "description": "Name of the output created by this compilation command", "type": "string" } }, "required": [ "directory", "file" ], "anyOf": [ { "required": [ "command" ] }, { "required": [ "arguments" ] } ] } } }
o90938
{ "properties": { "annual_salary": { "description": "The annual salary", "type": "number" }, "current_age": { "description": "The current age of the individual", "type": "integer" }, "retirement_age": { "description": "The desired retirement age", "type": "integer" }, "savings_percentage": { "description": "The percentage of salary to save", "type": "number" } }, "required": [ "current_age", "retirement_age", "annual_salary", "savings_percentage" ], "type": "object" }
calculate_retirement_savings_69745fea
{ "oneOf": [ { "required": [ "radius" ] }, { "required": [ "length", "width" ] }, { "required": [ "base", "height" ] } ], "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_4bbe47e7
{ "properties": { "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "evaluates": { "enum": [ "REQ", "RES", "MSSQL_REQ", "MSSQL_RES", "MYSQL_REQ", "MYSQL_RES" ], "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" }, "flowtype": { "readonly": true, "type": "integer" }, "gotopriorityexpression": { "readonly": true, "type": "string" }, "hits": { "readonly": true, "type": "integer" }, "invoke_labelname": { "readonly": true, "type": "string" }, "labelname": { "type": "string" }, "labeltype": { "enum": [ "reqvserver", "resvserver", "policylabel" ], "readonly": true, "type": "string" }, "newname": { "type": "string" }, "numpol": { "readonly": true, "type": "integer" }, "priority": { "readonly": true, "type": "integer" } }, "title": "cachepolicylabel", "type": "object" }
o30271
{ "description": "Minimum required output for a LogMessage", "properties": { "application": { "description": "Application that raised the log.", "minLength": 1, "type": "string" }, "datetime": { "_format": "date-time", "description": "The datetime this log event occured (ISO8601 combined date/time format (including timezone) for storage).", "type": "string" }, "extra": { "description": "Any extra data to store alongside the log entry.", "type": [ "string", "null" ] }, "message": { "description": "Message for the log but use printf standard for arguments where required.", "minLength": 1, "type": "string" }, "messageArgs": { "description": "Arguments to format into Message.", "minItems": 0, "type": "array", "_uniqueItems": false }, "module": { "description": "Optional module in the application that raised the log.", "type": "string" }, "severity": { "description": "The severity of this log message.", "enum": [ "emergency", "alert", "critical", "error", "warning", "notice", "informational", "debug" ], "type": "string" }, "source": { "description": "The identifier of the machine the log came from (IP, DNS name etc, any unique identifier).", "minLength": 1, "type": "string" } }, "required": [ "severity", "datetime", "source", "application", "message" ], "title": "com.xcitestudios.schema.Logging.LogMessage", "type": "object" }
o89709
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://jsonschema.net/dcat:Distribution", "type": "object", "title": "resources", "properties": { "dct:title": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:title", "type": "string", "title": "Title" }, "dct:description": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:description", "type": "string", "title": "Description" }, "dct:issued": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:issued", "type": "string", "title": "Issued" }, "dct:modified": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:modified", "type": "string", "title": "Modified" }, "dct:license": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:locense", "type": "string", "title": "License" }, "dct:rights": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:rights", "type": "string", "title": "Rights" }, "dcat:accessURL": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:accessURL", "type": "string", "title": "accessURL" }, "dcat:downloadURL": { "id": "http://jsonschema.net/dcat:Distribution/0/dcat:downloadURL", "type": "string", "title": "DownloadURL" }, "dcat:mediaType": { "id": "http://jsonschema.net/dcat:Distribution/0/dcat:mediaType", "type": "string", "title": "mediaType" }, "dct:format": { "id": "http://jsonschema.net/dcat:Distribution/0/dct:format", "type": "string", "title": "Format" }, "dcat:byteSize": { "id": "http://jsonschema.net/dcat:Distribution/0/dcat:byteSize", "type": "string", "title": "byteSize" }, "foaf:page": { "id": "http://jsonschema.net/foaf:page", "type": "array", "title": "foaf page", "items": { "type": "string" } } } }
o36440
{ "properties": { "check_in_date": { "description": "The check-in date", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date", "format": "date", "type": "string" }, "location": { "description": "The location to search for hotels", "type": "string" }, "num_guests": { "description": "The number of guests", "type": "integer" } }, "required": [ "location", "check_in_date", "check_out_date", "num_guests" ], "type": "object" }
search_hotels_252ccbea
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "description": "get spider metadata response", "properties": { "base64_encoded_spider_metadata": { "minLength": 1, "type": "string" }, "links": { "properties": { "self": { "properties": { "href": { "_format": "uri", "type": "string" } }, "required": [ "href" ], "type": "object" } }, "required": [ "self" ], "type": "object" }, "spider_metadata_id": { "minLength": 1, "type": "string" } }, "required": [ "spider_metadata_id", "base64_encoded_spider_metadata", "links" ], "title": "get spider metadata response", "type": "object" }
o76467
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side": { "description": "The side length of the square", "type": "number" } }, "required": [ "radius", "base", "height", "side" ], "type": "object" }, "shape": { "description": "The shape name (e.g. circle, triangle, square)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_4fd39057
{ "$id": "https://json.schemastore.org/typo3.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "definitions": { "enhancerRoute": { "type": "object", "properties": { "routePath": { "type": "string" }, "_controller": { "type": "string", "pattern": "^([a-zA-Z0-9]{1,30})::([a-zA-Z0-9]{1,30})$" }, "_arguments": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": ["routePath", "_controller"], "additionalProperties": false }, "baseVariants": { "type": "object", "properties": { "base": { "type": "string" }, "condition": { "type": "string" } }, "required": ["base", "condition"], "additionalProperties": false }, "redirects": { "type": "object", "properties": { "autoUpdateSlugs": { "description": "Automatically update slugs of all sub pages. Default: true", "type": "boolean" }, "autoCreateRedirects": { "description": "Automatically create redirects for pages with a new slug (works only in LIVE workspace). Default: true", "type": "boolean" }, "redirectTTL": { "description": "Time To Live in days for redirect records to be created - `0` disables TTL, no expiration. Default: 0", "type": "integer" }, "httpStatusCode": { "description": "HTTP status code for the redirect, see https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections#Temporary_redirections. Default: 307", "type": "integer", "anyOf": [ { "type": "integer", "enum": [300, 301, 302, 303, 304, 305, 306, 307, 308] } ] } }, "additionalProperties": false }, "errorHandling": { "type": "object", "properties": { "errorCode": { "description": "Make sure to have at least 0 (not defined otherwise) configured in order to serve helpful error messages to your visitors.", "anyOf": [ { "type": "integer", "default": 404, "enum": [0, 404, 403, 500, 503] }, { "type": "integer" } ] }, "errorHandler": { "description": "How to handle Errors", "type": "string", "default": "Page", "enum": ["Page", "Fluid", "PHP"] } }, "allOf": [ { "if": { "properties": { "errorHandler": { "const": "PHP" } } }, "then": { "additionalProperties": false, "properties": { "errorCode": { "type": "integer" }, "errorHandler": { "type": "string" }, "errorPhpClassFQCN": { "description": "Fully qualified class name to a class that implements the PageErrorHandlerInterface.", "type": "string" } }, "required": ["errorCode", "errorHandler", "errorPhpClassFQCN"] } }, { "if": { "properties": { "errorHandler": { "const": "Fluid" } } }, "then": { "additionalProperties": false, "properties": { "errorCode": { "type": "integer" }, "errorHandler": { "type": "string" }, "errorFluidTemplate": { "description": "Path to the fluid template file given by absolute, relative path (from site root) or by referring the template file inside an extension with \"EXT:\" prefix.", "type": "string" }, "errorFluidTemplatesRootPath": { "type": "string" }, "errorFluidLayoutsRootPath": { "type": "string" }, "errorFluidPartialsRootPath": { "type": "string" } }, "required": ["errorCode", "errorHandler", "errorFluidTemplate"] } }, { "if": { "properties": { "errorHandler": { "const": "Page" } } }, "then": { "properties": { "errorCode": { "type": "integer" }, "errorHandler": { "type": "string" }, "errorContentSource": { "description": "Show Content from Page", "examples": ["t3://page?uid=123"], "type": "string" } }, "required": ["errorCode", "errorHandler", "errorContentSource"] } } ] }, "staticRoutes": { "type": "object", "properties": { "route": { "description": "Static Route Name", "type": "string" }, "type": { "description": "Route Type", "type": "string", "enum": ["uri", "staticText"] } }, "if": { "properties": { "type": { "const": "uri" } } }, "then": { "properties": { "source": { "description": "Page, File or URL", "type": "string" } }, "required": ["source"] }, "else": { "properties": { "content": { "description": "Static Text", "type": "string" } }, "required": ["content"] }, "required": ["route", "type"], "additionalProperties": false }, "localeMap": { "type": "object", "minItems": 1, "properties": { "locale": { "type": "string" }, "value": { "type": "string" } }, "additionalProperties": false }, "language": { "type": "object", "properties": { "title": { "description": "Title", "type": "string" }, "enabled": { "description": "Visible in Frontend", "type": "boolean" }, "languageId": { "description": "ID of the related sys_language record", "type": "integer", "examples": [1] }, "base": { "description": "Use a full qualified domain \"https://www.mydomain.fr/\" or \"/fr/\". Use \"/\" to keep the main URL for the default language. Add language specific suffixes to use those, or configure complete URLs for independent domains.", "type": "string", "default": "/" }, "baseVariants": { "type": "array", "items": { "$ref": "#/definitions/baseVariants" } }, "typo3Language": { "description": "Select the language to be used from translation files. Keep default if no translation files are available. Deprecated with TYPO3 12.3", "anyOf": [ { "type": "string", "default": "default", "enum": [ "default", "af", "ar", "bs", "bg", "ca", "ch", "cs", "da", "de", "el", "eo", "es", "et", "eu", "fa", "fi", "fo", "fr", "fr_CA", "gl", "he", "hi", "hr", "hu", "is", "it", "ja", "ka", "kl", "km", "ko", "lt", "lv", "mi", "mk", "ms", "nl", "no", "pl", "pt", "pt_BR", "ro", "ru", "rw", "sk", "sl", "sq", "sr", "sv", "th", "tr", "uk", "vi", "zh" ] }, { "type": "string" } ] }, "locale": { "description": "Used for localized date and currency formats. E.g. \"de_DE\" or \"en_US.UTF-8\".", "type": "string" }, "iso-639-1": { "description": "ISO 639-1 code of the Language", "type": "string", "enum": [ "ab", "aa", "af", "ak", "sq", "am", "ar", "an", "hy", "as", "av", "ae", "ay", "az", "bm", "ba", "eu", "be", "bn", "bh", "bi", "bs", "br", "bg", "my", "ca", "ch", "ce", "ny", "zh", "cv", "kw", "co", "cr", "hr", "cs", "da", "dv", "nl", "dz", "en", "eo", "et", "ee", "fo", "fj", "fi", "fr", "ff", "gl", "ka", "de", "el", "gn", "gu", "ht", "ha", "he", "hz", "hi", "ho", "hu", "ia", "id", "ie", "ga", "ig", "ik", "io", "is", "it", "iu", "ja", "jv", "kl", "kn", "kr", "ks", "kk", "km", "ki", "rw", "ky", "kv", "kg", "ko", "ku", "kj", "la", "lb", "lg", "li", "ln", "lo", "lt", "lu", "lv", "gv", "mk", "mg", "ms", "ml", "mt", "mi", "mr", "mh", "mn", "na", "nv", "nd", "ne", "ng", "nb", "nn", "no", "ii", "nr", "oc", "oj", "cu", "om", "or", "os", "pa", "pi", "fa", "pl", "ps", "pt", "qu", "rm", "rn", "ro", "ru", "sa", "sc", "sd", "se", "sm", "sg", "sr", "gd", "sn", "si", "sk", "sl", "so", "st", "es", "su", "sw", "ss", "sv", "ta", "te", "tg", "th", "ti", "bo", "tk", "tl", "tn", "to", "tr", "ts", "tt", "tw", "ty", "ug", "uk", "ur", "uz", "ve", "vi", "vo", "wa", "cy", "wo", "fy", "xh", "yi", "yo", "za", "zu" ] }, "navigationTitle": { "description": "Used within language-related menus", "type": "string" }, "hreflang": { "description": "Used within for \"lang\" and \"hreflang\" attributes", "type": "string" }, "direction": { "description": "Language direction for \"dir\" attribute", "type": "string", "enum": ["", "ltr", "rtl"] }, "flag": { "type": "string", "enum": [ "global", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", "as", "at", "au", "aw", "ax", "az", "ba", "bb", "bd", "be", "bf", "bg", "bh", "bi", "bj", "bl", "bm", "bn", "bo", "bq", "br", "bs", "bt", "bv", "bw", "by", "bz", "ca", "catalonia", "cc", "cd", "cf", "cg", "ch", "ci", "ck", "cl", "cm", "cn", "co", "cr", "cs", "cu", "cv", "cw", "cx", "cy", "cz", "de", "dj", "dk", "dm", "do", "dz", "ec", "ee", "eg", "eh", "en-us-gb", "gb-eng", "er", "es", "et", "eu", "fi", "fj", "fk", "fm", "fo", "fr", "ga", "gb", "gd", "ge", "gf", "gg", "gh", "gi", "gl", "gm", "gn", "gp", "gq", "gr", "gs", "gt", "gu", "gw", "gy", "hk", "hm", "hn", "hr", "ht", "hu", "id", "ie", "il", "im", "in", "io", "iq", "ir", "is", "it", "jm", "jo", "jp", "ke", "kg", "kh", "ki", "kl", "km", "kn", "kp", "kr", "kw", "ky", "kz", "la", "lb", "lc", "li", "lk", "lr", "ls", "lt", "lu", "lv", "ly", "ma", "mc", "md", "me", "mf", "mg", "mh", "mi", "mk", "ml", "mm", "mn", "mo", "mp", "mq", "mr", "ms", "mt", "mu", "mv", "mw", "mx", "my", "mz", "na", "nc", "ne", "nf", "ng", "ni", "gb-nir", "nl", "no", "np", "nr", "nu", "nz", "om", "pa", "pe", "pf", "pg", "ph", "pk", "pl", "pm", "pn", "pr", "ps", "pt", "pw", "py", "qa", "qc", "re", "ro", "rs", "ru", "rw", "sa", "sb", "sc", "gb-sct", "sd", "se", "sg", "sh", "si", "sj", "sk", "sl", "sm", "sn", "so", "sr", "ss", "st", "sv", "sx", "sy", "sz", "tc", "td", "tf", "tg", "th", "tj", "tk", "tl", "tm", "tn", "to", "tr", "tt", "tv", "tw", "tz", "ua", "ug", "um", "us", "uy", "uz", "va", "vc", "ve", "vg", "vi", "vn", "vu", "gb-wls", "wf", "ws", "ye", "yt", "za", "zm", "zw" ] }, "websiteTitle": { "description": "With this language based Website title, you can override the Website title for this language", "type": "string" }, "fallbackType": { "description": "Fallback Type", "type": "string", "enum": ["strict", "fallback", "free"], "default": "strict" }, "fallbacks": { "description": "Fallback to other Language(s) - order is important! Comma separated list", "type": "string" } }, "required": ["title", "enabled", "languageId", "base", "locale"], "additionalProperties": true } }, "properties": { "base": { "description": "Base URL. This is the URL under which this site is available", "type": "string" }, "rootPageId": { "description": "ID of the page where this site begins", "type": "integer" }, "languages": { "type": "array", "items": { "$ref": "#/definitions/language" } }, "baseVariants": { "type": "array", "items": { "$ref": "#/definitions/baseVariants" } }, "errorHandling": { "type": "array", "items": { "$ref": "#/definitions/errorHandling" } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/staticRoutes" } }, "websiteTitle": { "type": "string", "description": "Default website title" }, "routeEnhancers": { "description": "routeEnhancers transform arguments into nice urls. Docs can be found at https://docs.typo3.org/m/typo3/reference-coreapi/master/en-us/ApiOverview/Routing/Index.html", "type": "object", "additionalProperties": { "type": "object", "description": "Each enhancer must have a type", "required": ["type"], "properties": { "type": { "type": "string", "anyOf": [ { "type": "string", "enum": ["Simple", "Plugin", "Extbase", "PageType"] }, { "type": "string" } ] }, "default": { "type": "string" }, "routePath": { "type": "string" }, "limitToPages": { "type": "array", "uniqueItems": true, "items": { "type": "number" } }, "requirements": { "type": "object", "additionalProperties": { "type": "string" } }, "_arguments": { "type": "object", "additionalProperties": { "type": "string" } }, "aspects": { "type": "object", "additionalProperties": { "type": "object", "required": ["type"], "properties": { "type": { "title": "Type of aspect", "type": "string", "anyOf": [ { "type": "string", "enum": [ "LocaleModifier", "PersistedAliasMapper", "PersistedPatternMapper", "StaticRangeMapper", "StaticValueMapper" ] }, { "type": "string" } ] } }, "allOf": [ { "if": { "properties": { "type": { "const": "PersistedAliasMapper" } } }, "then": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "tableName": { "type": "string" }, "routeFieldName": { "type": "string" }, "routeValuePrefix": { "type": "string", "examples": ["", "/"], "maxLength": 1 } }, "required": ["type", "routeFieldName", "tableName"] } }, { "if": { "properties": { "type": { "const": "PersistedPatternMapper" } } }, "then": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "tableName": { "type": "string" }, "routeFieldName": { "type": "string" }, "routeValuePrefix": { "type": "string", "examples": ["", "/"], "maxLength": 1 } }, "required": ["type", "routeFieldName", "tableName"] } }, { "if": { "properties": { "type": { "const": "LocaleModifier" } } }, "then": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "default": { "type": "string" }, "localeMap": { "type": "array", "items": { "$ref": "#/definitions/localeMap" } } }, "required": ["type", "default", "localeMap"] } }, { "if": { "properties": { "type": { "const": "StaticRangeMapper" } } }, "then": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "start": { "type": "string" }, "end": { "type": "string" } }, "required": ["type", "start", "end"] } }, { "if": { "properties": { "type": { "const": "StaticValueMapper" } } }, "then": { "additionalProperties": false, "properties": { "type": { "type": "string" }, "map": { "type": "object" } }, "required": ["type", "map"] } } ] } } }, "allOf": [ { "if": { "properties": { "type": { "const": "Simple" } } }, "then": { "required": ["type", "routePath", "_arguments"] } }, { "if": { "properties": { "type": { "const": "Plugin" } } }, "then": { "properties": { "namespace": { "$comment": "plugin namespace", "type": "string" } }, "required": ["type", "namespace", "requirements"] } }, { "if": { "properties": { "type": { "const": "Extbase" } } }, "then": { "properties": { "defaults": { "type": "object" }, "routes": { "type": "array", "items": { "$ref": "#/definitions/enhancerRoute" } }, "extension": { "$comment": "extbase", "type": "string", "pattern": "^([A-Z]{1})([a-zA-Z0-9]{2,30})$" }, "plugin": { "$comment": "extbase", "type": "string" }, "defaultController": { "$comment": "extbase", "type": "string", "pattern": "^([a-zA-Z0-9]{1,30})::([a-zA-Z0-9]{1,30})$" } }, "required": ["type", "extension", "plugin", "defaultController"] } } ] } }, "settings": { "type": "object", "properties": { "redirects": { "$ref": "#/definitions/redirects" } }, "additionalProperties": true }, "sitePackage": { "type": "string", "description": "Extension key for site setup (used by EXT:bolt)" }, "solr_core_read": { "type": "string", "description": "EXT:solr default core for read" }, "solr_enabled_read": { "type": "boolean", "description": "EXT:solr enable default solr read" }, "solr_host_read": { "type": "string", "description": "EXT:solr default host for read" }, "solr_password_read": { "type": "string", "description": "EXT:solr password for read" }, "solr_username_read": { "type": "string", "description": "EXT:solr username for read" }, "solr_port_read": { "type": "string", "description": "EXT:solr port for read" }, "solr_scheme_read": { "type": "string", "description": "EXT:solr scheme for read", "anyOf": [ { "type": "string", "enum": ["http", "https", "%env(SOLR_SCHEME)%"] } ] }, "solr_use_write_connection": { "type": "boolean", "description": "EXT:solr use write connection" } }, "required": ["base", "rootPageId", "languages"], "type": "object" }
typo3
{ "description": "Frame data for a Tekken 7 character", "properties": { "metadata": { "description": "Data about the frame data", "properties": { "character": { "type": "string" }, "game": { "type": "string" }, "type": { "type": "string" }, "ver": { "type": "string" } }, "required": [ "ver", "game", "character", "type" ], "type": "object" }, "moves": { "description": "A collection of character moves", "items": { "properties": { "damage": { "type": [ "string", "null" ] }, "hit_level": { "type": [ "string", "null" ] }, "notation": { "isUniqueKey": true, "type": "string" }, "notes": { "type": [ "string", "null" ] }, "on_block": { "type": [ "string", "null" ] }, "on_ch": { "type": [ "string", "null" ] }, "on_hit": { "type": [ "string", "null" ] }, "speed": { "type": [ "string", "null" ] } }, "required": [ "notation", "hit_level", "damage", "speed", "on_block", "on_hit", "on_ch" ], "type": "object" }, "type": "array" } }, "required": [ "moves", "metadata" ], "title": "Tekken 7 Character Data v0.4", "type": "object" }
o45486
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___utils_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" }, "___utils_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" }, "___utils_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" }, "___utils_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/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/trait_alignment_json" }, "channels": { "$ref": "#/definitions/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/trait_subtype_json" }, "type": { "enum": [ "reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element", "type": "object" }, "___utils_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/trait_id_json" }, "_website": { "$ref": "#/definitions/trait_website_json" }, "additional_properties": { "$ref": "#/definitions/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/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Section", "type": "object" }, "___utils_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/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/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/trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Site", "type": "object" }, "___utils_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/trait_id_json" }, "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/trait_slug_json" }, "subtype": { "$ref": "#/definitions/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" }, "___utils_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" }, "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" }, "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" }, "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" }, "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" }, "trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "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" }, "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" }, "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" } }, "description": "Holds the collection of tags, categories, keywords, etc that describe content.", "properties": { "additional_properties": { "$ref": "#/definitions/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/___utils_auxiliary_json" }, "type": "array" }, "keywords": { "description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_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/___utils_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/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_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/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_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/___utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_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/___utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/___utils_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/___utils_tag_json" }, "type": "array" }, "topics": { "description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/___utils_topic_json" }, "type": "array" } }, "title": "Taxonomy", "type": "object" }
wp_94_Normalized
{ "properties": { "distance": { "description": "The distance traveled in kilometers", "type": "number" }, "electricity_usage": { "description": "The electricity usage in kilowatt-hours", "type": "number" }, "transportation": { "description": "The mode of transportation (car, bike, public transport, etc.)", "type": "string" }, "waste_production": { "description": "The waste production in kilograms", "type": "number" } }, "required": [ "transportation", "distance" ], "type": "object" }
calculate_carbon_footprint_b1ffc587
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiVersion": { "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "rbac.authorization.k8s.io/v1alpha1" ], "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": [ "RoleBinding" ], "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." }, "roleRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_RoleRef", "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1alpha1_Subject" }, "type": [ "array", "null" ] } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBinding", "version": "v1alpha1" } ] }
kb_855_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "length": { "description": "The length of the rectangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "width": { "description": "The width of the rectangle (if applicable)", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_eb46c7e3
{ "$comment": "https://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization", "$id": "https://json.schemastore.org/github-workflow-template-properties.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "A workflow template name\nhttps://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization#creating-a-starter-workflow", "type": "string", "minLength": 1, "examples": ["Sample name"] }, "description": { "description": "A workflow template description\nhttps://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization#creating-a-starter-workflow", "type": "string", "minLength": 1, "examples": ["Sample description"] }, "iconName": { "description": "A workflow template icon\nMust be the name of an SVG file, without the file name extension, stored in the workflow-templates directory\nhttps://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization#creating-a-starter-workflow", "type": "string", "minLength": 1, "examples": ["Sample icon"] }, "categories": { "description": "A workflow category\nhttps://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization#creating-a-starter-workflow", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "type": "string", "enum": [ "1C Enterprise", "4D", "ABAP CDS", "ABAP", "ABNF", "AFDKO", "AGS Script", "AIDL", "AL", "AMPL", "ANTLR", "API Blueprint", "APL", "ASL", "ASN.1", "ASP.NET", "ATS", "ActionScript", "Ada", "Alloy", "Alpine Abuild", "Altium Designer", "AngelScript", "Ant Build System", "ApacheConf", "Apex", "Apollo Guidance Computer", "AppleScript", "Arc", "AsciiDoc", "AspectJ", "Assembly", "Astro", "Asymptote", "Augeas", "AutoHotkey", "AutoIt", "AutoIt3", "AutoItScript", "Avro IDL", "Awk", "BASIC", "Ballerina", "Batchfile", "Beef", "Befunge", "BibTeX", "Bicep", "Bison", "BitBake", "Blade", "BlitzBasic", "BlitzMax", "Boo", "Boogie", "Brainfuck", "Brightscript", "Browserslist", "C", "C#", "C++", "C-ObjDump", "C2hs Haskell", "CIL", "CLIPS", "CMake", "COBOL", "CODEOWNERS", "COLLADA", "CSON", "CSS", "CSV", "CUE", "CWeb", "Cabal Config", "Cabal", "Cap'n Proto", "Carto", "CartoCSS", "Ceylon", "Chapel", "Charity", "ChucK", "Cirru", "Clarion", "Classic ASP", "Clean", "Click", "Clojure", "Closure Templates", "Cloud Firestore Security Rules", "CoNLL", "CoNLL-U", "CoNLL-X", "ColdFusion CFC", "ColdFusion", "Common Lisp", "Common Workflow Language", "Component Pascal", "Containerfile", "Cool", "Coq", "Cpp-ObjDump", "Crystal", "Csound Document", "Csound Score", "Csound", "Cuda", "Cue Sheet", "Cycript", "Cython", "D-ObjDump", "DIGITAL Command Language", "DM", "DTrace", "Dafny", "Darcs Patch", "Dart", "DataWeave", "Dhall", "Diff", "Dlang", "Dockerfile", "Dogescript", "Dylan", "E", "E-mail", "EBNF", "ECL", "ECLiPSe", "EJS", "EQ", "Eagle", "Earthly", "Easybuild", "Ecere Projects", "EditorConfig", "Eiffel", "Elixir", "Elm", "Emacs Lisp", "EmberScript", "Erlang", "F#", "F*", "FIGfont", "FIGlet Font", "FLUX", "Factor", "Fancy", "Fantom", "Faust", "Fennel", "Filebench WML", "Filterscript", "Fluent", "Formatted", "Forth", "Fortran Free Form", "Fortran", "FreeBasic", "Frege", "Futhark", "G-code", "GAML", "GAMS", "GAP", "GCC Machine Description", "GDB", "GDScript", "GEDCOM", "GLSL", "GN", "Game Maker Language", "Gemfile.lock", "Genie", "Genshi", "Gentoo Eclass", "Gerber Image", "Gettext Catalog", "Gherkin", "Git Config", "Glyph Bitmap Distribution Format", "Glyph", "Gnuplot", "Go Checksums", "Go Module", "Go", "Golo", "Gosu", "Grace", "Gradle", "Grammatical Framework", "Graph Modeling Language", "GraphQL", "Graphviz (DOT)", "Groovy Server Pages", "Groovy", "HAProxy", "HCL", "HTML", "HTML+ECR", "HTML+EEX", "HTML+ERB", "HTML+PHP", "HTML+Razor", "HTTP", "HXML", "Hack", "Haml", "Handlebars", "Harbour", "HashiCorp Configuration Language", "Haskell", "Haxe", "HiveQL", "HolyC", "Hy", "IDL", "IGOR Pro", "IPython Notebook", "Idris", "Ignore List", "ImageJ Macro", "Inform 7", "Io", "Ioke", "Isabelle ROOT", "Isabelle", "J", "JAR Manifest", "JFlex", "JSON with Comments", "JSON", "JSON5", "JSONLD", "JSONiq", "Jasmin", "Java Properties", "Java Server Pages", "Java", "JavaScript", "JavaScript+ERB", "Jest Snapshot", "Jinja", "Jison Lex", "Jison", "Jolie", "Jsonnet", "Julia", "Jupyter Notebook", "Kaitai Struct", "KakouneScript", "KiCad Layout", "KiCad Legacy Layout", "KiCad Schematic", "Kit", "Kotlin", "Kusto", "LFE", "LLVM", "LOLCODE", "LSL", "LTspice Symbol", "LabVIEW", "Lark", "Lasso", "Lean", "Less", "Lex", "LilyPond", "Limbo", "Linker Script", "Linux Kernel Module", "Liquid", "Literate Agda", "Literate CoffeeScript", "Literate Haskell", "LiveScript", "Logos", "Logtalk", "LookML", "LoomScript", "Lua", "M", "M4", "M4Sugar", "MATLAB", "MAXScript", "MLIR", "MQL4", "MQL5", "MTML", "MUF", "Macaulay2", "Makefile", "Mako", "Markdown", "Marko", "Mathematica", "Max", "Mercury", "Meson", "Metal", "Microsoft Developer Studio Project", "Microsoft Visual Studio Solution", "MiniD", "Mirah", "Modelica", "Modula-2", "Modula-3", "Module Management System", "Monkey", "Moocode", "MoonScript", "Motoko", "Motorola 68K Assembly", "Muse", "Myghty", "NASL", "NCL", "NEON", "NPM Config", "NSIS", "NWScript", "Nearley", "Nemerle", "NeoSnippet", "NetLinx", "NetLinx+ERB", "NetLogo", "NewLisp", "Nextflow", "Nginx", "Ninja", "Nit", "Nix", "NumPy", "Nunjucks", "ObjDump", "Object Data Instance Notation", "ObjectScript", "Objective-C", "Objective-C++", "Objective-J", "Odin", "Omgrofl", "Opa", "Opal", "Open Policy Agent", "OpenCL", "OpenEdge ABL", "OpenQASM", "OpenRC runscript", "OpenSCAD", "OpenStep Property List", "OpenType Feature File", "Org", "Ox", "Oxygene", "Oz", "P4", "PEG.js", "PHP", "PLpgSQL", "POV-Ray SDL", "Pan", "Papyrus", "Parrot Assembly", "Parrot Internal Representation", "Parrot", "Pascal", "Pawn", "Pep8", "Perl", "Pickle", "PicoLisp", "PigLatin", "Pike", "PlantUML", "Pod 6", "Pod", "PogoScript", "Pony", "PostCSS", "PostScript", "PowerShell", "Prisma", "Processing", "Proguard", "Prolog", "Promela", "Propeller Spin", "Protocol Buffer", "Protocol Buffers", "Public Key", "Pug", "Puppet", "Pure Data", "PureBasic", "PureScript", "Python", "Q#", "QMake", "Qt Script", "Quake", "R", "RAML", "RDoc", "REALbasic", "REXX", "RMarkdown", "RPC", "RPM Spec", "Racket", "Ragel", "Raw token data", "ReScript", "Readline Config", "Reason", "Rebol", "Record Jar", "Red", "Redirect Rules", "Regular Expression", "RenderScript", "Rich Text Format", "Ring", "Riot", "RobotFramework", "Roff", "Rouge", "Rscript", "Ruby", "Rust", "SAS", "SCSS", "SELinux Kernel Policy Language", "SELinux Policy", "SMT", "SPARQL", "SQF", "SQL", "SQLPL", "SRecode Template", "SSH Config", "STON", "SVG", "SWIG", "Sage", "SaltStack", "Sass", "Scala", "Scaml", "Scheme", "Scilab", "Self", "ShaderLab", "Shell", "ShellCheck Config", "Sieve", "Singularity", "Slash", "Slice", "Slim", "SmPL", "Smalltalk", "SnipMate", "Solidity", "Soong", "SourcePawn", "Spline Font Database", "Squirrel", "Stan", "Standard ML", "Starlark", "StringTemplate", "Stylus", "SubRip Text", "SugarSS", "SuperCollider", "Svelte", "Swift", "SystemVerilog", "TI Program", "TLA", "TOML", "TSQL", "TSV", "TSX", "TXL", "Tcl", "Tcsh", "TeX", "Tea", "Terra", "Texinfo", "Text", "TextMate Properties", "Textile", "Thrift", "Turing", "Turtle", "Twig", "Type Language", "TypeScript", "UltiSnip", "UltiSnips", "Unified Parallel C", "Unity3D Asset", "Unix Assembly", "Uno", "UnrealScript", "Ur", "Ur/Web", "UrWeb", "V", "VBA", "VCL", "VHDL", "Vala", "Valve Data Format", "Verilog", "Vim Help File", "Vim Script", "Vim Snippet", "Visual Basic .NET", "Vue", "Wavefront Material", "Wavefront Object", "Web Ontology Language", "WebAssembly", "WebVTT", "Wget Config", "Wikitext", "Windows Registry Entries", "Wollok", "World of Warcraft Addon Data", "X BitMap", "X Font Directory Index", "X PixMap", "X10", "XC", "XCompose", "XML Property List", "XML", "XPages", "XProc", "XQuery", "XS", "XSLT", "Xojo", "Xonsh", "Xtend", "YAML", "YANG", "YARA", "YASnippet", "Yacc", "ZAP", "ZIL", "Zeek", "ZenScript", "Zephir", "Zig", "Zimpl", "abl", "abuild", "acfm", "aconf", "actionscript 3", "actionscript3", "ada2005", "ada95", "adobe composite font metrics", "adobe multiple font metrics", "advpl", "ags", "ahk", "altium", "amfm", "amusewiki", "apache", "apkbuild", "arexx", "as3", "asm", "asp", "aspx", "aspx-vb", "ats2", "au3", "autoconf", "b3d", "bash session", "bash", "bat", "batch", "bazel", "blitz3d", "blitzplus", "bmax", "bplus", "bro", "bsdmake", "byond", "bzl", "c++-objdump", "c2hs", "cURL Config", "cake", "cakescript", "cfc", "cfm", "cfml", "chpl", "clipper", "coccinelle", "coffee", "coffee-script", "coldfusion html", "console", "cperl", "cpp", "csharp", "csound-csd", "csound-orc", "csound-sco", "cucumber", "curlrc", "cwl", "dcl", "delphi", "desktop", "dircolors", "django", "dosbatch", "dosini", "dpatch", "dtrace-script", "eC", "ecr", "editor-config", "edn", "eeschema schematic", "eex", "elisp", "emacs muse", "emacs", "email", "eml", "erb", "fb", "fish", "flex", "foxpro", "fsharp", "fstar", "ftl", "fundamental", "gf", "git-ignore", "gitattributes", "gitconfig", "gitignore", "gitmodules", "go mod", "go sum", "go.mod", "go.sum", "golang", "groff", "gsp", "hbs", "heex", "help", "html+django", "html+jinja", "html+ruby", "htmlbars", "htmldjango", "hylang", "i7", "ignore", "igor", "igorpro", "ijm", "inc", "inform7", "inputrc", "irc logs", "irc", "java server page", "jq", "jruby", "js", "jsonc", "jsp", "kak", "kakscript", "keyvalues", "ksy", "lassoscript", "latex", "leex", "lhaskell", "lhs", "lisp", "litcoffee", "live-script", "ls", "m2", "m68k", "mIRC Script", "macruby", "mail", "make", "man page", "man", "man-page", "manpage", "markojs", "max/msp", "maxmsp", "mbox", "mcfunction", "mdoc", "mediawiki", "mf", "mma", "mumps", "mupad", "nanorc", "nasm", "ne-on", "nesC", "nette object notation", "nginx configuration file", "nixos", "njk", "node", "npmrc", "nroff", "nush", "nvim", "obj-c", "obj-c++", "obj-j", "objc", "objc++", "objectivec", "objectivec++", "objectivej", "objectpascal", "objj", "octave", "odin-lang", "odinlang", "oncrpc", "ooc", "openedge", "openrc", "osascript", "pandoc", "pasm", "pcbnew", "perl-6", "perl6", "pir", "plain text", "posh", "postscr", "pot", "pov-ray", "povray", "progress", "protobuf", "pwsh", "pycon", "pyrex", "python3", "q", "ql", "qsharp", "ragel-rb", "ragel-ruby", "rake", "raw", "razor", "rb", "rbx", "reStructuredText", "readline", "red/system", "redirects", "regex", "regexp", "renpy", "rhtml", "robots txt", "robots", "robots.txt", "rpcgen", "rs", "rs-274x", "rss", "rst", "rusthon", "salt", "saltstate", "sed", "sepolicy", "sh", "shell-script", "shellcheckrc", "sml", "snippet", "sourcemod", "soy", "specfile", "splus", "squeak", "terraform", "tl", "tm-properties", "troff", "ts", "udiff", "vb .net", "vb.net", "vb6", "vbnet", "vdf", "vim", "vimhelp", "viml", "visual basic 6", "visual basic for applications", "visual basic", "vlang", "wasm", "wast", "wdl", "wgetrc", "wiki", "winbatch", "wisp", "wl", "wolfram lang", "wolfram language", "wolfram", "wsdl", "xBase", "xbm", "xdr", "xhtml", "xml+genshi", "xml+kid", "xpm", "xsd", "xsl", "xten", "yas", "yml", "zsh" ] } }, "filePatterns": { "description": "A file name pattern to match against repository to enable this workflow when match is succeed\nhttps://docs.github.com/en/actions/using-workflows/creating-starter-workflows-for-your-organization#creating-a-starter-workflow", "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string", "minLength": 1, "examples": ["*.sample"] } } }, "required": ["name", "description"], "title": "GitHub starter workflow config file schema", "type": "object" }
github-workflow-template-properties
{ "description": "Represents a package repository.", "properties": { "mirror_urls": { "oneOf": [ { "description": "A list of URLs for mirrors of this repository.", "items": { "type": "string" }, "title": "repository mirror urls", "type": "array" }, { "type": "null" } ] }, "nickname": { "oneOf": [ { "description": "nickname used for well known \"named\" public repos such as: Maven Central, Pypi, RubyGems, npmjs.org or their mirrors", "title": "repository nickname", "type": "string" }, { "type": "null" } ] }, "public": { "oneOf": [ { "description": "A flag set to true if this is a public repository.", "title": "public repository", "type": "boolean" }, { "type": "null" } ] }, "type": { "oneOf": [ { "description": "The type of package repository for this repository. One of: Bower, CPAN, Debian, Rubygems, Godoc, IVY, Maven, NPM, Packagist, Nuget, Pypi, YUM", "enum": [ "Bower", "CPAN", "Debian", "Rubygems", "Godoc", "IVY", "Maven", "NPM", "Packagist", "Nuget", "Pypi", "YUM" ], "title": "package repository type", "type": "string" }, { "type": "null" } ] }, "url": { "oneOf": [ { "description": "URL to this repository.", "title": "url", "type": "string" }, { "type": "null" } ] } }, "title": "package repository", "type": "object" }
o89989
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "required": [ "name", "type" ], "properties": { "name": { "type": "string", "description": "Package name using 'org/package' format." }, "type": { "type": "string", "description": "Either 'library' for static and shared libraries or 'project' for executable projects." }, "version": { "type": "string", "description": "Version of the package, used only for development purposes (eq. local repository)." }, "include": { "type": "string", "description": "Path to the directory containing header files (.h and .hpp). The default is 'include'." }, "source": { "type": "string", "description": "Path to the directory containing source files (.c and .cpp). The default is 'src'." }, "compilers": { "type": "object", "description": "List of supported compilers. By default one of the locally supported compilers is used.", "additionalProperties": { "type": "string", "description": "The compiler name (key) and version constraint (value)." } }, "platform": { "oneOf": [ { "type": "string", "description": "Supported platform. If no platform is specified then it's assumed that all platforms are supported." }, { "type": "array", "description": "List of supported platforms. If no platforms are specified then it's assumed that all platforms are supported.", "items": { "type": "string" } } ] }, "arch": { "oneOf": [ { "type": "string", "description": "Supported architecture. The defaults are 'x86' and 'x64'." }, { "type": "array", "description": "List of supported architectures. The defaults are 'x86' and 'x64'.", "items": { "type": "string" } } ] }, "linking": { "oneOf": [ { "type": "string", "description": "Support only one linking type. By default supports both, the static and dynamic linking." }, { "type": "array", "description": "List of supported linking types. The defaults are 'static' and 'dynamic'.", "items": { "type": "string" } } ] }, "dependencies": { "type": "object", "description": "List of required dependencies.", "items": { "type": "string", "description": "Each item contains the package name and version constraint, additionally the linking type constraint (eq. '\"org/package\": \"^5.3:static\"')." } }, "dev-dependencies": { "type": "object", "description": "List of required dependencies while developing (i.e. package is the root one).", "items": { "type": "string", "description": "Each item contains the package name and version constraint, additionally the linking type constraint (eq. '\"org/package\": \"^5.3:static\"')." } }, "define": { "type": "object", "description": "List of preprocessor macros.", "additionalProperties": false, "properties": { "debug": { "type": "object" }, "release": { "type": "object" } } }, "scripts": { "type": "object", "description": "List of user and system callbacks scripts.", "patternProperties": { ".*": { "oneOf": [ { "type": "string", "description": "Each item contains the script name with constraints and command (eq. '\"clear-cache:linux\": \"rm -r ./cache\"')." }, { "type": "array", "description": "Each item contains the script name with constraints and commands (eq. '\"clear-cache:linux\": \"rm -r ./cache\"').", "items": { "type": "string", "description": "The list of commands executed one by one. Commands are executed as long as previous command exits with status code 0." } } ] } } }, "repositories": { "type": "array", "description": "List of repositories to search for packages before looking up to the official one.", "items": { "type": "object", "additionalProperties": false, "properties": { "type": { "type": "string", "description": "Type of the repository, eq. local, git, register etc." }, "src": { "type": "string", "description": "Repository source, eq. directory path for local repository etc." } } } }, "config": { "type": "object", "additionalProperties": true } } }
o35870
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "JSON Schema for droplit-edge localsettings", "definitions": { "plugins-array": { "type": "array", "items": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/plugins-array-item" } ] } }, "plugins-array-item": { "description": "Configuration for an individual plugin.", "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Set whether the plugin is enabled.", "type": "boolean", "default": true }, "localServices": { "description": "List local services that the plugin manages.", "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "name": { "description": "The name of the plugin.", "type": "string" } }, "required": [ "name" ] }, "plugins-object": { "description": "Configuration for an individual plugin.", "type": "object", "additionalProperties": { "type": "object", "properties": { "enabled": { "description": "Set whether the plugin is enabled.", "type": "boolean", "default": true }, "localServices": { "description": "List local services that the plugin manages.", "type": "array", "items": { "type": "string" }, "_uniqueItems": true } } } } }, "type": "object", "additionalProperties": false, "properties": { "config": { "description": "Configures miscellaneous capabilities.", "type": "object", "additionalProperties": false, "properties": { "LinuxNetInterfaceOverride": { "description": "Override the Linux network interface", "type": "string" }, "MACAddressOverride": { "description": "Override the MAC address used as the Edge Id.", "type": "string" }, "provisioningServiceEnabled": { "description": "Enables the network provisioning service.", "type": "boolean" }, "provisioningServicePort": { "description": "Set the port used for network provisioning.", "type": "integer", "minimum": 0, "maximum": 65536, "default": 81 } } }, "debug": { "description": "Configures debugging options.", "type": "object", "additionalProperties": false, "properties": { "generateHeapDump": { "description": "Periodically generate a heap dump file.", "type": "boolean" }, "logToFile": { "description": "Whether to log out to a file.", "type": "boolean", "default": true }, "logPath": { "description": "The file path to the file log.", "type": "string" } } }, "diagnostics": { "description": "Configures the diagnostics telnet console.", "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Determine whether the console should be enabled or not.", "type": "boolean" }, "port": { "description": "The port the console is opened on.", "type": "integer", "minimum": 0, "maximum": 65536, "default": 8888 } } }, "ecosystemId": { "description": "The Ecosystem associated with this Edge device. May be omitted if Ecosystem is determined via the claims process.", "type": "string" }, "environmentId": { "description": "The Environment associated with this Edge device. Specifying this allows for multiple Edge devices within the same environment.", "type": "string" }, "router": { "description": "Configures the Edge router layer.", "type": "object", "additionalProperties": false, "properties": { "autodiscover": { "description": "Whether or not autodiscover should be enabled.", "type": "boolean" }, "autodiscoverCadence": { "description": "The amount of time (in ms) between discovery invocations.", "type": "integer", "minimum": 0 } } }, "plugins": { "oneOf": [ { "$ref": "#/definitions/plugins-object" }, { "$ref": "#/definitions/plugins-array" } ] }, "transport": { "description": "Configures the Edge transport layer.", "type": "object", "additionalProperties": false, "properties": { "enableHeartbeat": { "description": "Whether or not heartbeat should be enabled. This should only ever be disabled for diagnostic purposes.", "type": "boolean", "default": true }, "host": { "description": "The host service uri.", "type": "string", "format": "uri" } } } }, "default": {}, "required": [ "transport" ] }
o37075
{ "$schema": "http://json-schema.org/draft-04/schema", "type": "object", "title": "RPC Job Payload", "description": "An object containing a new RPC Job", "properties": { "query": { "description": "A MongoDB query. For more information on the syntax: https://docs.mongodb.com/manual/reference/method/db.collection.find/", "type": "object" }, "instruction": { "description": "An instruction instruction representing a Mercury RPC method call", "type": "object", "properties": { "method": { "description": "The RPC method we are targeting. Available methods can be enummerated using /active/computers/{mercury_id}", "type": "string" }, "args": { "description": "Positional arguments being passed to the method", "type": "array" }, "kwargs": { "description": "Keyword arguments being passed to the method", "type": "object" } }, "required": [ "method" ] } }, "required": [ "query", "instruction" ] }
o53004
{ "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" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape (e.g. rectangle, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_bbc9c40d
{ "description": "CSIDriverSpec is the specification of a CSIDriver.", "properties": { "attachRequired": { "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", "type": [ "boolean", "null" ] }, "podInfoOnMount": { "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", "type": [ "boolean", "null" ] }, "volumeLifecycleModes": { "description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "type": "object" }
kb_166_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "guide" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "guide" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "additionalProperties": false, "properties": { "external_related_links": { "$ref": "#/definitions/external_related_links" }, "hide_chapter_navigation": { "description": "Hide guide elements if this guide is part of a step by step navigation", "type": "boolean" }, "parts": { "description": "List of guide parts", "$ref": "#/definitions/parts" } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "external_related_links": { "type": "array", "items": { "$ref": "#/definitions/external_link" } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "parts": { "type": "array", "items": { "type": "object", "required": [ "title", "slug", "body" ], "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "slug": { "type": "string", "format": "uri" }, "title": { "type": "string" } } } }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21246
{ "id": "http://schemas.triniti.io/json-schema/triniti/ovp/mixin/transcribable/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "The \"_id\" value: - MUST NOT change for the life of the node. - SHOULD be globally unique - SHOULD be generated by the app (ideally in default value closure... e.g. UuidIdentifier::generate())", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "transcription_status": { "type": "string", "enum": [ "unknown", "processing", "canceled", "completed", "failed" ], "pbj": { "type": "string-enum", "rule": "single" } } }, "required": [ "_id" ], "additionalProperties": true }
o83016
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "invoice_items": { "items": { "properties": { "description": { "description": "The description of the item", "type": "string" }, "quantity": { "description": "The quantity of the item", "type": "integer" }, "unit_price": { "description": "The unit price of the item", "type": "number" } }, "required": [ "description", "quantity", "unit_price" ], "type": "object" }, "type": "array" } }, "required": [ "client_name", "invoice_items" ], "type": "object" }
generate_invoice_2962bea8
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "about", "recruitment", "complaints_procedure", "about_our_services", "social_media_use", "publication_scheme", "our_governance", "procurement", "statistics", "membership", "research", "welsh_language_scheme", "media_enquiries", "access_and_opening", "our_energy_use", "personal_information_charter", "equality_and_diversity", "staff_update", "terms_of_reference", "petitions_and_campaigns", "accessible_documents_policy" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "corporate_information_pages": { "$ref": "#/definitions/guid_list" }, "government": { "description": "The government associated with this document", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "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 }, "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 } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "corporate_information_page" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_fullpath": { "description": "A path with optional query string and/or fragment.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?(\\?([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?(#([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)?$" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "type": "array", "items": { "type": "object", "required": [ "public_timestamp", "note" ], "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "type": "string", "format": "date-time" } } } }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "required": [ "body", "organisation" ], "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "type": "array", "items": { "$ref": "#/definitions/file_attachment_asset" } }, "body": { "$ref": "#/definitions/body" }, "change_history": { "$ref": "#/definitions/change_history" }, "corporate_information_groups": { "description": "Groups of corporate information to display on about pages", "$ref": "#/definitions/grouped_lists_of_links" }, "organisation": { "description": "A single organisation that is the subject of this corporate information page", "$ref": "#/definitions/guid" }, "tags": { "$ref": "#/definitions/tags" } } }, "external_link": { "type": "object", "required": [ "title", "url" ], "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "file_attachment_asset": { "type": "object", "required": [ "attachment_type", "content_type", "id", "url" ], "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "type": "string", "enum": [ "file" ] }, "content_type": { "type": "string" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "url": { "type": "string", "format": "uri" } } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "grouped_lists_of_links": { "description": "Lists of links with titles in named groups", "type": "array", "items": { "type": "object", "required": [ "name", "contents" ], "additionalProperties": false, "properties": { "contents": { "description": "An ordered list of links, either internal with GUID or external with URL and title", "type": "array", "items": { "$ref": "#/definitions/internal_or_external_link" } }, "name": { "description": "Title of the group", "type": "string" } } } }, "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 }, "internal_link_without_guid": { "description": "Links to pages on GOV.UK without a corresponding GUID. eg A filtered list of publications", "type": "object", "required": [ "title", "path" ], "additionalProperties": false, "properties": { "path": { "$ref": "#/definitions/absolute_fullpath" }, "title": { "type": "string" } } }, "internal_or_external_link": { "anyOf": [ { "$ref": "#/definitions/external_link" }, { "$ref": "#/definitions/internal_link_without_guid" }, { "$ref": "#/definitions/guid" } ] }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "tags": { "description": "Field used by email-alert-api to trigger email alerts for subscriptions to topics (gov.uk/topic) and policies (gov.uk/policies).", "type": "object", "additionalProperties": false, "properties": { "additional_topics": { "type": "array", "items": { "type": "string" } }, "browse_pages": { "type": "array", "items": { "type": "string" } }, "policies": { "type": "array", "items": { "type": "string" } }, "primary_topic": { "type": "array", "items": { "type": "string" } }, "topics": { "type": "array", "items": { "type": "string" } } } }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21187
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "env": { "$ref": "#/definitions/identifier" }, "log_level": { "type": "string", "enum": [ "trace", "debug", "info", "warn", "error", "fatal" ] }, "aws": { "type": "object", "properties": { "accountId": { "type": [ "string", "null" ] }, "profile": { "type": [ "string", "null" ] }, "region": { "type": [ "string", "null" ] } } }, "build": { "type": "object", "properties": { "unbundled": { "type": "object", "patternProperties": { ".+": { "type": "string" } } } } }, "update": { "type": "object", "properties": {} }, "registry": { "type": [ "object", "null" ], "required": [ "command" ], "properties": { "command": { "type": "string" }, "argv": { "type": "array", "items": { "type": "string" } }, "env": { "type": "object", "patternProperties": { ".+": { "type": "string" } } } } }, "utils": { "type": "object" }, "hooks": { "type": "object", "properties": { "prebuild": {}, "prebuildrollup": {}, "prebuildinstall": {}, "postbuildinstall": {}, "postbuildrollup": {}, "postbuild": {}, "preupdate": {}, "postupdate": {}, "prepublish": {}, "postpublish": {} } } }, "definitions": { "identifier": { "type": [ "string", "null" ], "minLength": 1, "pattern": "^[\\w\\d][\\w\\d-]*$" } } }
o32806
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "https://w3id.org/blockcerts/schema/1.2/issuer-id-1.2.json", "properties": { "email": { "_format": "email", "description": "Contact address for the individual or organization.", "type": "string" }, "id": { "_format": "uri", "description": "The URL of the issuer's website or homepage", "type": "string" }, "image": { "description": "Data URI; a base-64 encoded png image of the issuer's image. https://en.wikipedia.org/wiki/Data_URI_scheme", "pattern": "data:image/png;base64,", "type": "string" }, "introductionURL": { "_format": "uri", "description": "The URL hosting the issuer's introduction endpoint", "type": "string" }, "issuerKeys": { "description": "list of issuer keys, listed in descending date order (most recent first). V1.2 change: renamed from issuer_key, added optional invalidated field.", "items": { "additionalProperties": false, "properties": { "date": { "_format": "date-time", "description": "ISO-8601 formatted date time the key was activated.", "type": "string" }, "invalidated": { "_format": "date-time", "description": "Optional ISO-8601 formatted date time the key was invalidated.", "type": "string" }, "key": { "description": "Bitcoin address (compressed public key, usually 24 characters) that the issuer uses to issue the certificates.", "type": "string" } }, "required": [ "date", "key" ], "type": "object" }, "type": "array" }, "name": { "description": "Human-readable name of the issuing entity", "type": "string" }, "revocationKeys": { "description": "list of revocation keys, listed in descending date order (most recent first). V1.2 changes: renamed from revocation_key, added optional invalidated field.", "items": { "additionalProperties": false, "properties": { "date": { "_format": "date-time", "description": "ISO-8601 formatted date time the key was activated.", "type": "string" }, "invalidated": { "_format": "date-time", "description": "Optional ISO-8601 formatted date time the key was invalidated.", "type": "string" }, "key": { "description": "Bitcoin address (compressed public key, usually 24 characters) that the issuer uses to revoke the certificates.", "type": "string" } }, "required": [ "date", "key" ], "type": "object" }, "type": "array" }, "url": { "_format": "uri", "description": "The URL where the issuer's certificates can be found", "type": "string" } }, "required": [ "issuerKeys", "revocationKeys", "id", "name", "email", "url", "introductionURL", "image" ], "type": "object" }
o33932
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (if applicable)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_dfef43db
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://thrift.apache.org/program-schema#", "description": "Schema for Apache Thrift protocol descriptors", "definitions": { "type-id": { "enum": [ "void", "string", "bool", "byte", "i16", "i32", "i64", "double", "list", "set", "map", "union", "struct", "exception", "binary" ] }, "base-type": { "title": "Base types", "type": "object", "properties": { "typeId": { "enum": [ "void", "string", "bool", "byte", "i16", "i32", "i64", "double", "binary" ] } }, "required": [ "typeId" ] }, "list-type": { "title": "List and set types", "type": "object", "properties": { "typeId": { "enum": [ "list", "set" ] }, "elemTypeId": { "$ref": "#/definitions/type-id" }, "elemType": { "$ref": "#/definitions/type-spec" } }, "required": [ "typeId", "elemTypeId", "elemType" ] }, "map-type": { "title": "Map type", "type": "object", "properties": { "typeId": { "enum": [ "map" ] }, "keyTypeId": { "$ref": "#/definitions/type-id" }, "keyType": { "$ref": "#/definitions/type-spec" }, "valueTypeId": { "$ref": "#/definitions/type-id" }, "valueType": { "$ref": "#/definitions/type-spec" } }, "required": [ "typeId", "keyTypeId", "valueTypeId" ] }, "struct-spec": { "title": "Struct and union types", "type": "object", "properties": { "typeId": { "enum": [ "union", "struct" ] }, "class": { "type": "string" } }, "required": [ "typeId", "class" ] }, "type-spec": { "allOf": [ { "type": "object" }, { "oneOf": [ { "$ref": "#/definitions/base-type" }, { "$ref": "#/definitions/list-type" }, { "$ref": "#/definitions/map-type" }, { "$ref": "#/definitions/struct-spec" } ] } ] }, "name-and-doc": { "type": "object", "properties": { "name": { "type": "string" }, "doc": { "type": "string" } }, "required": [ "name" ] }, "enum": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "required": [ "members" ], "properties": { "members": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "integer" } }, "required": [ "name", "value" ] } } } } ] }, "typedef": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "properties": { "typeId": { "$ref": "#/definitions/type-id" }, "type": { "$ref": "#/definitions/type-spec" } }, "required": [ "typeId" ] } ] }, "constant": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "$ref": "#/definitions/type-spec" }, { "properties": { "value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "array" }, { "type": "object" } ] } }, "required": [ "value" ] } ] }, "field": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "$ref": "#/definitions/type-spec" }, { "properties": { "key": { "type": "integer", "minimum": 1, "maximum": 65535 }, "required": { "enum": [ "required", "optional", "req_out" ] }, "default": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "array" }, { "type": "object" } ] } }, "required": [ "key", "required" ] } ] }, "struct": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "properties": { "isException": { "type": "boolean" }, "isUnion": { "type": "boolean" }, "fields": { "type": "array", "items": { "$ref": "#/definitions/field" } } }, "required": [ "isException", "isUnion", "fields" ] } ] }, "union": { "$ref": "#/definitions/struct" }, "exception": { "$ref": "#/definitions/struct" }, "function": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "oneOf": [ { "properties": { "oneway": { "type": "boolean" } }, "required": [ "oneway" ] }, { "properties": { "returnType": { "$ref": "#/definitions/type-spec" } }, "required": [ "returnType" ] } ] }, { "properties": { "arguments": { "type": "array", "items": { "allOf": [ { "$ref": "#/definitions/field" }, { "properties": {} } ] } }, "exceptions": { "type": "array", "items": { "$ref": "#/definitions/exception" } } }, "required": [ "oneway", "arguments", "exceptions" ] } ] }, "service": { "type": "object", "allOf": [ { "$ref": "#/definitions/name-and-doc" }, { "properties": { "functions": { "type": "array", "items": { "$ref": "#/definitions/function" } } }, "required": [ "functions" ] } ] } }, "type": "object", "required": [ "name", "namespaces", "includes", "enums", "typedefs", "structs", "constants", "services" ], "properties": { "name": { "type": "string" }, "includes": { "type": "array", "items": { "type": "string" }, "_uniqueItems": true }, "enums": { "type": "array", "items": { "$ref": "#/definitions/enum" } }, "typedefs": { "type": "array", "items": { "$ref": "#/definitions/typedef" } }, "structs": { "type": "array", "items": { "$ref": "#/definitions/struct" } }, "constants": { "type": "array", "items": { "$ref": "#/definitions/constant" } }, "services": { "type": "array", "items": { "$ref": "#/definitions/service" } } } }
o91595
{ "additionalProperties": false, "description": "Schema for a Mandrill message clicked event", "properties": { "_id": { "type": "string" }, "ip": { "type": "string" }, "location": { "additionalProperties": false, "properties": { "city": { "type": "string" }, "country": { "type": "string" }, "country_short": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "postal_code": { "type": "string" }, "region": { "type": "string" }, "timezone": { "type": "string" } }, "type": [ "object", "null" ] }, "msg": { "additionalProperties": false, "properties": { "_id": { "type": "string" }, "_version": { "type": "string" }, "clicks": { "items": { "additionalProperties": true, "properties": { "ip": { "type": "string" }, "location": { "type": [ "string", "null" ] }, "ts": { "_format": "date-time", "type": "string" }, "ua": { "type": [ "string", "null" ] }, "url": { "type": "string" } }, "type": "object" }, "type": "array" }, "email": { "type": "string" }, "metadata": { "additionalProperties": true, "properties": { "user_id": { "type": "number" } }, "type": "object" }, "opens": { "items": { "additionalProperties": true, "properties": { "ip": { "type": "string" }, "location": { "type": [ "string", "null" ] }, "ts": { "_format": "date-time", "type": "string" }, "ua": { "type": [ "string", "null" ] } }, "type": "object" }, "type": "array" }, "resends": { "type": "array" }, "sender": { "type": "string" }, "smtp_events": { "items": { "additionalProperties": true, "properties": { "destination_ip": { "type": "string" }, "diag": { "type": "string" }, "size": { "type": "integer" }, "source_ip": { "type": "string" }, "ts": { "_format": "date-time", "type": "string" }, "type": { "type": "string" } }, "type": "object" }, "type": "array" }, "state": { "type": "string" }, "subaccount": { "type": [ "string", "null" ] }, "subject": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "template": { "type": [ "string", "null" ] }, "ts": { "_format": "date-time", "type": "string" } }, "type": "object" }, "ts": { "_format": "date-time", "type": "string" }, "url": { "type": "string" }, "user_agent": { "type": "string" }, "user_agent_parsed": { "additionalProperties": false, "properties": { "mobile": { "type": "boolean" }, "os_company": { "type": "string" }, "os_company_url": { "type": "string" }, "os_family": { "type": "string" }, "os_icon": { "type": "string" }, "os_name": { "type": "string" }, "os_url": { "type": "string" }, "type": { "type": "string" }, "ua_company": { "type": "string" }, "ua_company_url": { "type": "string" }, "ua_family": { "type": "string" }, "ua_icon": { "type": "string" }, "ua_name": { "type": "string" }, "ua_url": { "type": "string" }, "ua_version": { "type": "string" } }, "type": [ "object", "null" ] } }, "self": { "format": "jsonschema", "name": "message_clicked", "vendor": "com.mandrill", "version": "1-0-1" }, "type": "object" }
sp_124_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "simple-extension": { "type": "object", "properties": { "url": { "type": "string" }, "value": { "type": "string" } } }, "complex-extension": { "items": { "type": "object", "properties": { "extension": { "$ref": "#/definitions/simple-extension" } } } } }, "properties": { "simple-extension": { "$ref": "#/definitions/simple-extension" }, "complex-extension.items": { "$ref": "#/definitions/complex-extension/items" } }, "required": [ "simple-extension", "complex-extension.items" ] }
o5799
{ "properties": { "openldap": { "description": "OpenLDAP service configuration properties", "properties": { "additional_modules": { "description": "Comma-separated list of modules to load.", "type": "string" }, "additional_schemas": { "description": "Loads additional schemas provided in the slapd package.", "type": "string" }, "admin_password": { "default": "admin", "description": "Administrator password. Defaults to 'admin' if not defined.", "type": "string" }, "config_password": { "description": "Allows password protected access to the dn=config branch. This helps to reconfigure the server without interruption.", "type": "string" }, "cpus": { "default": 0.3, "description": "CPU shares to allocate to each OpenLDAP node.", "minimum": 0.3, "type": "number" }, "domain": { "default": "ldap.example.org", "description": "LDAP domain. Defaults to LOCAL", "type": "string" }, "force_reconfigure": { "default": false, "description": "Reconfigure the service after the image has been initialized. Defaults to FALSE", "type": "boolean" }, "host_volume": { "default": "/tmp", "description": "The location of a volume on the host to be used for persisting OpenLDAP data. The final location will be derived from this value plus the name set in `name` (e.g. `/mnt/host_volume/openldap`). Note that this path must be the same on all DCOS agents. Required.", "type": "string" }, "mem": { "default": 128.0, "description": "Memory to allocate to each OpenLDAP node.", "minimum": 128.0, "type": "number" }, "name": { "default": "openldap", "description": "Package name.", "type": "string" }, "organization": { "description": "Organization name.", "type": "string" }, "port": { "default": 10389, "description": "Port number to be used for clear communication", "type": "number" }, "port_ssl": { "default": 10636, "description": "Port number to be used for secure communication", "type": "number" }, "version": { "default": "0.1", "description": "Package version.", "type": "string" }, "virtual_host": { "default": "ldap.example.org", "description": "Virtual Host URL to be used in the external load balancer. Modify as per your installation.", "type": "string" } }, "required": [ "name", "cpus", "mem" ], "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "name": { "default": "openldap", "description": "The name of the OpenLDAP service instance", "type": "string" } }, "type": "object" } } }
o90805
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" }, "owner": { "type": "string" }, "description": { "type": "string" }, "vcsroot": { "type": "string" }, "contact": { "type": "string" }, "short_name": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "links": { "type": "object", "properties": { "homepage": { "type": "string" }, "buildchain": { "type": "string" }, "api_docs": { "type": "string" } } }, "service": { "type": "object", "properties": { "provides": { "type": "array", "items": { "type": "object", "properties": { "description": { "type": "string" }, "service_name": { "type": "string" }, "protocol": { "type": "string" }, "port": { "type": "integer" }, "public_dns": { "type": "array", "items": { "type": "string" } }, "transport_protocol": { "type": "string" } } } }, "depends_on": { "type": "object", "properties": { "internal": { "type": "array", "items": { "type": "object", "properties": { "short_name": { "type": "string" }, "port": { "type": "integer" } } } }, "external": { "type": "array", "items": { "type": "object", "properties": { "target": { "type": "string" }, "transport_protocol": { "type": "string" }, "why": { "type": "string" } } } } } } } }, "context": { "type": "object", "properties": { "belongs_to_bounded_context": { "type": "string" }, "visibility": { "type": "string" } } }, "runtime": { "type": "object", "properties": { "cpu": { "type": "string" }, "ram": { "type": "string" }, "disk": { "type": "string" }, "host_type": { "type": "string" }, "network_zone": { "type": "string" } } }, "software_dependencies": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "licenses": { "type": "array", "items": { "type": "object", "properties": {} } } } } } }, "required": [ "id", "name", "type", "owner", "description" ] }
o67268
{ "additionalProperties": false, "description": "For validating the schema dependency manifest used in the Data Structures CI/CD tool", "properties": { "schemas": { "description": "An array of schema dependencies", "items": { "additionalProperties": false, "properties": { "format": { "pattern": "^[a-zA-Z0-9-_]+$", "type": "string" }, "name": { "pattern": "^[a-zA-Z0-9-_]+$", "type": "string" }, "vendor": { "pattern": "^[a-zA-Z0-9-_.]+$", "type": "string" }, "version": { "pattern": "^[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "vendor", "name", "format", "version" ], "type": "object" }, "type": "array" } }, "required": [ "schemas" ], "self": { "format": "jsonschema", "name": "data_structures_dependencies", "vendor": "com.snowplowanalytics.insights", "version": "1-0-0" }, "type": "object" }
sp_215_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "api_key", "functional" ], "type": "object", "properties": { "api_key": { "type": "object" }, "functional": { "type": "object", "properties": { "type": { "enum": [ "dicom" ] } } }, "anatomical": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "required": [ "mni", "basetime" ], "type": "object", "properties": { "mni": { "default": false, "type": "boolean" }, "basetime": { "default": "0", "type": "string" } } } }, "title": "Invocation manifest for ME-ICA: Multi-Echo Independent Components Analysis" }
o41320
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "medium" ], "properties": { "medium": { "type": "object", "description": "Identifies which media content to display.", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic", "axRole": "inlet", "description": "A resource topic under which a document resource can be obtained." }, "showTitle": { "type": "boolean", "description": "If available, show a title above the media content.", "default": false }, "showCaption": { "type": "boolean", "description": "If available, show a caption below the media content.", "default": false }, "onActions": { "type": "array", "description": "List of actions, any of which triggers loading media content. If omitted, content is loaded immediately.", "items": { "type": "string", "format": "topic", "axRole": "inlet", "description": "An action that triggers loading media content." } } }, "additionalProperties": false }, "layout": { "type": "object", "description": "Tells how the display size is calculated.", "properties": { "sizeToContent": { "type": "boolean", "description": "If true, the media content determines the rendering size (container otherwise).", "default": false } }, "additionalProperties": false }, "fallback": { "type": "object", "description": "Allow to open content in a new browser-window on specific platforms.", "properties": { "i18nHtmlText": { "type": [ "string", "object" ], "description": "Text to display on the fallback-link.", "default": { "en": "Please click here to display the document!", "de": "Bitte klicken, um das Dokument anzuzeigen!" } } } }, "integration": { "type": "object", "description": "Allow to integrate with embedded websites (applicable to website mime-types only).", "properties": { "name": { "type": [ "string", "null" ], "description": "The window.name that is visible to any embedded website.", "default": null } }, "additionalProperties": false }, "i18n": { "description": "Which locale to use for displaying this widget.", "type": "object", "properties": { "locale": { "type": "string", "format": "topic", "axRole": "inlet", "description": "The topic under which to expect the locale for this widget.", "default": "default" } } } } }
o9360
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "AnyChart 7 JSON schema", "type": "object", "properties": { "chart": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" }, { "$ref": "#/definitions/anychart.core.Chart" } ], "oneOf": [ { "$ref": "#/definitions/anychart.charts.Bullet" }, { "$ref": "#/definitions/anychart.charts.Cartesian" }, { "$ref": "#/definitions/anychart.charts.Funnel" }, { "$ref": "#/definitions/anychart.charts.Pie" }, { "$ref": "#/definitions/anychart.charts.Polar" }, { "$ref": "#/definitions/anychart.charts.Pyramid" }, { "$ref": "#/definitions/anychart.charts.Radar" }, { "$ref": "#/definitions/anychart.charts.Scatter" }, { "$ref": "#/definitions/anychart.charts.Sparkline" }, { "$ref": "#/definitions/anychart.charts.HeatMap" }, { "$ref": "#/definitions/anychart.charts.TreeMap" } ], "properties": { "container": { "type": "string" }, "defaultSeriesType": { "type": "string" } } }, "gauge": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" }, { "$ref": "#/definitions/anychart.core.Chart" }, { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "oneOf": [ { "$ref": "#/definitions/anychart.charts.CircularGauge" } ], "properties": { "container": { "type": "string" } } }, "gantt": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" }, { "$ref": "#/definitions/anychart.core.Chart" }, { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "oneOf": [ { "$ref": "#/definitions/anychart.gantt.Resource" }, { "$ref": "#/definitions/anychart.gantt.Project" } ], "properties": { "container": { "type": "string" } } }, "map": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" }, { "$ref": "#/definitions/anychart.core.Chart" }, { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "oneOf": [ { "$ref": "#/definitions/anychart.charts.Map" } ], "properties": { "container": { "type": "string" }, "defaultSeriesType": { "type": "string" } } } }, "definitions": { "anychart.core.VisualBase": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "zIndex": { "type": "number" } } }, "anychart.core.VisualBaseWithBounds": { "type": "object", "properties": { "bounds": { "$ref": "#/definitions/anychart.core.utils.Bounds" } } }, "anychart.core.Chart": { "type": "object", "properties": { "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] }, "margin": { "$ref": "#/definitions/anychart.core.utils.Space" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "legend": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Legend" } ] }, "chartLabels": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Label" } ] } }, "credits": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Credits" } ] }, "animation": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.utils.Animation" } ] }, "tooltip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.ChartTooltip" } ] }, "interactivity": { "$ref": "#/definitions/anychart.core.utils.Interactivity" }, "contextMenu": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.ui.ContextMenu" } ] } } }, "anychart.core.SeparateChart": { "type": "object", "properties": { "legend": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Legend" } ] }, "credits": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Credits" } ] } } }, "anychart.charts.Cartesian": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "cartesian", "cartesian3d", "area", "area3d", "bar", "bar3d", "box", "bubble", "column", "column3d", "financial", "line", "marker" ] }, "grids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Linear" } ] } }, "minorGrids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Linear" } ] } }, "xAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "yAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "lineAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Line" } ] } }, "rangeAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Range" } ] } }, "textAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Text" } ] } }, "series": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.series.Base" } ] } }, "crosshair": { "$ref": "#/definitions/anychart.core.ui.Crosshair" }, "barChartMode": { "type": "boolean" }, "barGroupsPadding": { "type": [ "number" ] }, "barsPadding": { "type": [ "number" ] }, "minBubbleSize": { "type": [ "number", "string" ] }, "maxBubbleSize": { "type": [ "number", "string" ] }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "xZoom": { "oneOf": [ { "type": "number" }, { "type": "boolean" }, { "$ref": "#/definitions/anychart.core.CartesianXZoom" } ] }, "xScroller": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.ChartScroller" } ] }, "zAngle": { "type": [ "number" ] }, "zDepth": { "type": [ "number", "null" ] }, "zAspect": { "type": [ "number", "string" ] }, "zPadding": { "type": [ "number" ] }, "zDistribution": { "type": [ "boolean" ] } }, "required": [ "type" ] }, "anychart.charts.Funnel": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "funnel" ] }, "data": { "$ref": "#/definitions/data" }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "tooltip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Tooltip" } ] }, "pointsPadding": { "type": [ "string", "number" ] }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "connectorLength": { "type": [ "string", "number", "null" ] }, "connectorStroke": { "$ref": "#/definitions/stroke" }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "selectLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "selectStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "selectFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "baseWidth": { "type": [ "string", "number" ] }, "neckHeight": { "type": [ "string", "number" ] }, "neckWidth": { "type": [ "string", "number" ] } }, "required": [ "type" ] }, "anychart.charts.Pyramid": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "pyramid" ] }, "data": { "$ref": "#/definitions/data" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "selectLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "tooltip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Tooltip" } ] }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "pointsPadding": { "type": [ "string", "number" ] }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "connectorLength": { "type": [ "string", "number", "null" ] }, "connectorStroke": { "$ref": "#/definitions/stroke" }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "selectStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "selectFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "baseWidth": { "type": [ "string", "number" ] }, "reversed": { "type": "boolean" } }, "required": [ "type" ] }, "anychart.charts.Polar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "polar" ] }, "grids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Polar" } ] } }, "minorGrids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Polar" } ] } }, "xAxis": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Polar" } ] }, "yAxis": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Radial" } ] }, "series": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/anychart.core.polar.series.Area" }, { "$ref": "#/definitions/anychart.core.polar.series.Line" }, { "$ref": "#/definitions/anychart.core.polar.series.Marker" } ] } }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "startAngle": { "type": [ "number", "string" ] } }, "required": [ "type" ] }, "anychart.charts.Radar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "radar" ] }, "grids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Radar" } ] } }, "minorGrids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Radar" } ] } }, "xAxis": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Radar" } ] }, "yAxis": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Radial" } ] }, "series": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/anychart.core.radar.series.Area" }, { "$ref": "#/definitions/anychart.core.radar.series.Line" }, { "$ref": "#/definitions/anychart.core.radar.series.Marker" } ] } }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Ordinal" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "startAngle": { "type": [ "number", "string" ] } }, "required": [ "type" ] }, "anychart.charts.Scatter": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "scatter" ] }, "grids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Linear" } ] } }, "minorGrids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Linear" } ] } }, "xAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "yAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "lineAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Line" } ] } }, "rangeAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Range" } ] } }, "textAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Text" } ] } }, "series": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/anychart.core.scatter.series.Bubble" }, { "$ref": "#/definitions/anychart.core.scatter.series.Line" }, { "$ref": "#/definitions/anychart.core.scatter.series.Marker" } ] } }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "minBubbleSize": { "type": [ "number", "string" ] }, "maxBubbleSize": { "type": [ "number", "string" ] } }, "required": [ "type" ] }, "anychart.charts.Pie": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "pie", "pie3d" ] }, "data": { "$ref": "#/definitions/data" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "tooltip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Tooltip" } ] }, "sort": { "$ref": "#/definitions/anychart.enums.Sort" }, "radius": { "type": [ "string", "number" ] }, "innerRadius": { "type": [ "string", "number" ] }, "explode": { "type": [ "string", "number" ] }, "startAngle": { "type": [ "string", "number" ] }, "outsideLabelsSpace": { "type": [ "string", "number", "null" ] }, "insideLabelsOffset": { "type": [ "string", "number", "null" ] }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "forceHoverLabels": { "type": "boolean" }, "connectorLength": { "type": [ "string", "number", "null" ] }, "outsideLabelsCriticalAngle": { "type": [ "string", "number", "null" ] }, "group": { "type": "null" }, "connectorStroke": { "$ref": "#/definitions/stroke" }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" } }, "required": [ "type" ] }, "anychart.charts.Bullet": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "bullet" ] }, "data": { "$ref": "#/definitions/data" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } } }, "rangePalette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } } }, "items": { "type": "string" } }, "scale": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "axis": { "oneOf": [ { "$ref": "#/definitions/anychart.core.axes.Linear" }, { "$ref": "#/definitions/disable" } ] }, "ranges": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } } }, "required": [ "type" ] }, "anychart.charts.Sparkline": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "sparkline" ] }, "seriesType": { "enum": [ "column", "line", "winLoss", "area" ] }, "data": { "$ref": "#/definitions/data" }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" }, { "$ref": "#/definitions/anychart.scales.DateTime" } ] }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "negativeMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "minMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "maxMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "firstMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "lastMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } ] }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "negativeLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "minLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "maxLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "firstLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "lastLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory.Label" } ] }, "fill": { "$ref": "#/definitions/fill" }, "negativeFill": { "$ref": "#/definitions/fill" }, "firstFill": { "$ref": "#/definitions/fill" }, "lastFill": { "$ref": "#/definitions/fill" }, "minFill": { "$ref": "#/definitions/fill" }, "maxFill": { "$ref": "#/definitions/fill" }, "stroke": { "$ref": "#/definitions/stroke" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "negativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "minHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "maxHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "lastHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "firstHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "lineAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Line" } ] } }, "rangeAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Range" } ] } }, "textAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Text" } ] } }, "pointWidth": { "type": [ "string", "number", "null" ] }, "connectMissingPoints": { "type": "boolean" } }, "required": [ "type" ] }, "anychart.charts.HeatMap": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "heatMap" ] }, "data": { "$ref": "#/definitions/data" }, "grids": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.grids.Linear" } ] } }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.OrdinalColor" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.Ordinal" }, { "$ref": "#/definitions/anychart.scales.OrdinalColor" } ] } }, "additionalProperties": false }, "xScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Ordinal" } ] }, "yScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.Ordinal" } ] }, "xAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "yAxes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Linear" } ] } }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "selectLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "selectStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "selectFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "labelsDisplayMode": { "$ref": "#/definitions/anychart.enums.LabelsDisplayMode" }, "colorScale": { "oneOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.OrdinalColor" } ] }, "xZoom": { "oneOf": [ { "type": "number" }, { "type": "boolean" }, { "$ref": "#/definitions/anychart.core.CartesianXZoom" } ] }, "xScroller": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.ChartScroller" } ] }, "yZoom": { "oneOf": [ { "type": "number" }, { "type": "boolean" }, { "$ref": "#/definitions/anychart.core.CartesianXZoom" } ] }, "yScroller": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.ChartScroller" } ] } }, "required": [ "type" ] }, "anychart.charts.TreeMap": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "treeMap" ] }, "treeData": { "$ref": "#/definitions/treeData" }, "drillTo": { "type": "array" }, "scales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.OrdinalColor" }, { "$ref": "#/definitions/anychart.scales.LinearColor" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.OrdinalColor" }, { "$ref": "#/definitions/anychart.scales.LinearColor" } ] } }, "additionalProperties": false }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "selectLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "headers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverHeaders": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "selectStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "selectFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "labelsDisplayMode": { "$ref": "#/definitions/anychart.enums.LabelsDisplayMode" }, "headersDisplayMode": { "$ref": "#/definitions/anychart.enums.LabelsDisplayMode" }, "maxDepth": { "type": "number" }, "hintDepth": { "type": "number" }, "hintOpacity": { "type": "number" }, "maxHeadersHeight": { "type": [ "number", "string" ] }, "sort": { "type": "string" }, "colorScale": { "oneOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.OrdinalColor" }, { "$ref": "#/definitions/anychart.scales.LinearColor" } ] } }, "required": [ "type" ] }, "anychart.gantt.Resource": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "ganttResource" ] }, "headerHeight": { "type": "number" }, "rowHoverFill": { "$ref": "#/definitions/fill" }, "rowSelectedFill": { "$ref": "#/definitions/fill" }, "splitterPosition": { "type": [ "number", "string" ] }, "controller": { "$ref": "#/definitions/anychart.core.gantt.Controller" }, "dataGrid": { "$ref": "#/definitions/anychart.core.ui.DataGrid" }, "timeline": { "$ref": "#/definitions/anychart.core.ui.Timeline" }, "editing": { "type": "boolean" } }, "required": [ "type" ] }, "anychart.gantt.Project": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeparateChart" } ], "properties": { "type": { "enum": [ "ganttProject" ] }, "headerHeight": { "type": "number" }, "rowHoverFill": { "$ref": "#/definitions/fill" }, "rowSelectedFill": { "$ref": "#/definitions/fill" }, "splitterPosition": { "type": [ "number", "string" ] }, "controller": { "$ref": "#/definitions/anychart.core.gantt.Controller" }, "dataGrid": { "$ref": "#/definitions/anychart.core.ui.DataGrid" }, "timeline": { "$ref": "#/definitions/anychart.core.ui.Timeline" }, "editing": { "type": "boolean" } }, "required": [ "type" ] }, "anychart.charts.CircularGauge": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "circular" ] }, "data": { "$ref": "#/definitions/data" }, "stroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "startAngle": { "type": "number" }, "sweepAngle": { "type": "number" }, "circularPadding": { "type": [ "string" ] }, "cap": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.gauge.Cap" } ] }, "axes": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Circular" } ] } }, "bars": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.gauge.pointers.Bar" } ] } }, "markers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.gauge.pointers.Marker" } ] } }, "needles": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.gauge.pointers.Needle" } ] } }, "knobs": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.gauge.pointers.Knob" } ] } }, "ranges": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.CircularRange" } ] } }, "encloseWithStraightLine": { "type": "boolean" } }, "required": [ "type" ] }, "anychart.charts.Map": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Chart" } ], "properties": { "type": { "enum": [ "map" ] }, "data": { "$ref": "#/definitions/data" }, "markerPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "items": { "$ref": "#/definitions/anychart.enums.MarkerType" } }, "hatchFillPalette": { "type": [ "object", "array" ], "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/hatchFillSet" } } }, "items": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" } }, "palette": { "type": [ "object", "array" ], "properties": { "type": { "enum": [ "distinct", "range" ] }, "items": { "type": [ "array" ], "items": { "$ref": "#/definitions/fill" } }, "count": { "type": "number" } }, "items": { "type": "string" } }, "unboundRegions": { "$ref": "#/definitions/anychart.core.utils.UnboundRegionsSettings" }, "colorRange": { "$ref": "#/definitions/anychart.core.ui.ColorRange" }, "geoScale": { "$ref": "#/definitions/anychart.core.map.scale.Geo" }, "minBubbleSize": { "type": [ "string", "number" ] }, "maxBubbleSize": { "type": [ "string", "number" ] }, "geoIdField": { "type": "string" }, "series": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.map.series.Choropleth" }, { "$ref": "#/definitions/anychart.core.map.series.Bubble" }, { "$ref": "#/definitions/anychart.core.map.series.Connector" } ] } }, "colorScales": { "type": [ "object", "array" ], "items": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.OrdinalColor" }, { "$ref": "#/definitions/anychart.scales.LinearColor" } ] }, "patternProperties": { ".*": { "anyOf": [ { "$ref": "#/definitions/anychart.scales.OrdinalColor" }, { "$ref": "#/definitions/anychart.scales.LinearColor" } ] } }, "additionalProperties": false }, "interactivity": { "$ref": "#/definitions/anychart.core.utils.MapInteractivity" }, "drillDownMap": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "map": { "$ref": "#/definitions/anychart.charts.Map" } } } } }, "geoData": { "type": [ "string" ] }, "crsAnimation": { "$ref": "#/definitions/anychart.core.utils.Animation" }, "crs": { "type": "string" } }, "required": [ "type" ] }, "anychart.core.SeriesBase": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" } ], "properties": { "color": { "type": [ "string", "object", "null" ] }, "name": { "type": "string" }, "data": { "$ref": "#/definitions/data" }, "tooltip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.SeriesTooltip" } ] }, "legendItem": { "$ref": "#/definitions/anychart.core.utils.LegendItemSettings" }, "selectionMode": { "$ref": "#/definitions/anychart.enums.SelectionMode" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "hoverLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "selectLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "selectStroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "selectFill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectHatchFill": { "$ref": "#/definitions/hatchFillSet" } } }, "anychart.core.series.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeriesBase" } ], "properties": { "seriesType": { "enum": [ "area", "bar", "box", "bubble", "candlestick", "column", "line", "marker", "ohlc", "rangeArea", "rangeBar", "rangeColumn", "rangeSplineArea", "rangeStepArea", "spline", "splineArea", "stepArea", "stepLine" ] }, "id": { "type": "string" }, "autoIndex": { "type": "number" }, "xPointPosition": { "type": [ "number", "null" ] }, "pointWidth": { "type": [ "string", "number", "null" ] }, "connectMissingPoints": { "type": "boolean" }, "clip": { "$ref": "#/definitions/clip" }, "error": { "$ref": "#/definitions/error" }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "highStroke": { "$ref": "#/definitions/stroke" }, "hoverHighStroke": { "$ref": "#/definitions/stroke" }, "selectHighStroke": { "$ref": "#/definitions/stroke" }, "lowStroke": { "$ref": "#/definitions/stroke" }, "hoverLowStroke": { "$ref": "#/definitions/stroke" }, "selectLowStroke": { "$ref": "#/definitions/stroke" }, "medianStroke": { "$ref": "#/definitions/stroke" }, "hoverMedianStroke": { "$ref": "#/definitions/stroke" }, "selectMedianStroke": { "$ref": "#/definitions/stroke" }, "stemStroke": { "$ref": "#/definitions/stroke" }, "hoverStemStroke": { "$ref": "#/definitions/stroke" }, "selectStemStroke": { "$ref": "#/definitions/stroke" }, "whiskerStroke": { "$ref": "#/definitions/stroke" }, "hoverWhiskerStroke": { "$ref": "#/definitions/stroke" }, "selectWhiskerStroke": { "$ref": "#/definitions/stroke" }, "whiskerWidth": { "type": [ "string", "number", "null" ] }, "hoverWhiskerWidth": { "type": [ "string", "number", "null" ] }, "selectWhiskerWidth": { "type": [ "string", "number", "null" ] }, "outlierMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverOutlierMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectOutlierMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "minimumSize": { "type": [ "string", "number" ] }, "maximumSize": { "type": [ "string", "number" ] }, "displayNegative": { "type": [ "boolean" ] }, "negativeFill": { "$ref": "#/definitions/fill" }, "hoverNegativeFill": { "$ref": "#/definitions/fill" }, "selectNegativeFill": { "$ref": "#/definitions/fill" }, "negativeStroke": { "$ref": "#/definitions/stroke" }, "hoverNegativeStroke": { "$ref": "#/definitions/stroke" }, "selectNegativeStroke": { "$ref": "#/definitions/stroke" }, "negativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "risingStroke": { "$ref": "#/definitions/stroke" }, "hoverRisingStroke": { "$ref": "#/definitions/stroke" }, "selectRisingStroke": { "$ref": "#/definitions/stroke" }, "fallingStroke": { "$ref": "#/definitions/stroke" }, "hoverFallingStroke": { "$ref": "#/definitions/stroke" }, "selectFallingStroke": { "$ref": "#/definitions/stroke" }, "risingFill": { "$ref": "#/definitions/fill" }, "hoverRisingFill": { "$ref": "#/definitions/fill" }, "selectRisingFill": { "$ref": "#/definitions/fill" }, "fallingFill": { "$ref": "#/definitions/fill" }, "hoverFallingFill": { "$ref": "#/definitions/fill" }, "selectFallingFill": { "$ref": "#/definitions/fill" }, "risingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverRisingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectRisingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "fallingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverFallingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectFallingHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "hoverType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "selectType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "size": { "type": "number" }, "hoverSize": { "type": "number" }, "selectSize": { "type": "number" } } }, "anychart.core.polar.series.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeriesBase" } ], "properties": { "clip": { "$ref": "#/definitions/clip" } } }, "anychart.core.polar.series.ContinuousBase": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.polar.series.Base" } ], "properties": { "connectMissingPoints": { "type": "boolean" }, "closed": { "type": "boolean" }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] } } }, "anychart.core.polar.series.Area": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.polar.series.ContinuousBase" } ], "properties": { "seriesType": { "enum": [ "area" ] } } }, "anychart.core.polar.series.Line": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.polar.series.ContinuousBase" } ], "properties": { "seriesType": { "enum": [ "line" ] } } }, "anychart.core.polar.series.Marker": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.polar.series.Base" } ], "properties": { "seriesType": { "enum": [ "marker" ] }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "hoverType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "selectType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "size": { "type": "number" }, "hoverSize": { "type": "number" }, "selectSize": { "type": "number" } } }, "anychart.core.radar.series.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeriesBase" } ], "properties": { "clip": { "$ref": "#/definitions/clip" } } }, "anychart.core.radar.series.ContinuousBase": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.radar.series.Base" } ], "properties": { "connectMissingPoints": { "type": "boolean" }, "closed": { "type": "boolean" }, "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] } } }, "anychart.core.radar.series.Area": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.radar.series.ContinuousBase" } ], "properties": { "seriesType": { "enum": [ "area" ] } } }, "anychart.core.radar.series.Line": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.radar.series.ContinuousBase" } ], "properties": { "seriesType": { "enum": [ "line" ] } } }, "anychart.core.radar.series.Marker": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.radar.series.Base" } ], "properties": { "seriesType": { "enum": [ "marker" ] }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "hoverType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "selectType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "size": { "type": "number" }, "hoverSize": { "type": "number" }, "selectSize": { "type": "number" } } }, "anychart.core.scatter.series.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeriesBase" } ], "properties": { "clip": { "$ref": "#/definitions/clip" }, "error": { "$ref": "#/definitions/error" } } }, "anychart.core.scatter.series.BaseWithMarkers": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.scatter.series.Base" } ], "properties": { "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] } } }, "anychart.core.scatter.series.Bubble": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.scatter.series.BaseWithMarkers" } ], "properties": { "seriesType": { "enum": [ "bubble" ] }, "minimumSize": { "type": [ "string", "number" ] }, "maximumSize": { "type": [ "string", "number" ] }, "displayNegative": { "type": [ "boolean" ] }, "negativeFill": { "$ref": "#/definitions/fill" }, "hoverNegativeFill": { "$ref": "#/definitions/fill" }, "selectNegativeFill": { "$ref": "#/definitions/fill" }, "negativeStroke": { "$ref": "#/definitions/stroke" }, "hoverNegativeStroke": { "$ref": "#/definitions/stroke" }, "selectNegativeStroke": { "$ref": "#/definitions/stroke" }, "negativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" } } }, "anychart.core.scatter.series.Line": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.scatter.series.BaseWithMarkers" } ], "properties": { "seriesType": { "enum": [ "line" ] }, "connectMissingPoints": { "type": "boolean" } } }, "anychart.core.scatter.series.Marker": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.radar.series.Base" } ], "properties": { "seriesType": { "enum": [ "marker" ] }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "hoverType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "selectType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "size": { "type": "number" }, "hoverSize": { "type": "number" }, "selectSize": { "type": "number" } } }, "anychart.core.gauge.Cap": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "radius": { "type": [ "string", "number" ] } } }, "anychart.core.gauge.pointers.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "axisIndex": { "type": [ "number" ] }, "dataIndex": { "type": [ "number" ] } } }, "anychart.core.gauge.pointers.Bar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.gauge.pointers.Base" } ], "properties": { "radius": { "type": [ "string", "number", "null" ] }, "width": { "type": [ "string", "number", "null" ] }, "position": { "$ref": "#/definitions/anychart.enums.GaugeSidePosition" } } }, "anychart.core.gauge.pointers.Knob": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.gauge.pointers.Base" } ], "properties": { "verticesCount": { "type": "number" }, "verticesCurvature": { "type": "number" }, "topRatio": { "type": "number" }, "bottomRatio": { "type": "number" }, "topRadius": { "type": [ "string", "number", "null" ] }, "bottomRadius": { "type": [ "string", "number", "null" ] } } }, "anychart.core.gauge.pointers.Marker": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.gauge.pointers.Base" } ], "properties": { "size": { "type": [ "string", "number", "null" ] }, "position": { "$ref": "#/definitions/anychart.enums.GaugeSidePosition" }, "radius": { "type": [ "string", "number", "null" ] }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" } } }, "anychart.core.gauge.pointers.Needle": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.gauge.pointers.Base" } ], "properties": { "startRadius": { "type": [ "string", "number", "null" ] }, "middleRadius": { "type": [ "string", "number", "null" ] }, "endRadius": { "type": [ "string", "number", "null" ] }, "startWidth": { "type": [ "string", "number", "null" ] }, "middleWidth": { "type": [ "string", "number", "null" ] }, "endWidth": { "type": [ "string", "number", "null" ] } } }, "anychart.core.map.series.Base": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.SeriesBase" } ], "properties": { "geoIdField": { "type": [ "string", "null" ] } } }, "anychart.core.map.series.BaseWithMarkers": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.map.series.Base" } ], "properties": { "markers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "hoverMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] }, "selectMarkers": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" } ] } } }, "anychart.core.map.series.Choropleth": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.map.series.BaseWithMarkers" } ], "properties": { "seriesType": { "enum": [ "choropleth" ] }, "colorScale": { "anyOf": [ { "type": [ "string", "number" ] }, { "$ref": "#/definitions/anychart.scales.LinearColor" }, { "$ref": "#/definitions/anychart.scales.OrdinalColor" } ] } } }, "anychart.core.map.series.Bubble": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.map.series.BaseWithMarkers" } ], "properties": { "seriesType": { "enum": [ "bubble" ] }, "displayNegative": { "type": [ "boolean" ] }, "negativeFill": { "$ref": "#/definitions/fill" }, "hoverNegativeFill": { "$ref": "#/definitions/fill" }, "selectNegativeFill": { "$ref": "#/definitions/fill" }, "negativeStroke": { "$ref": "#/definitions/stroke" }, "hoverNegativeStroke": { "$ref": "#/definitions/stroke" }, "selectNegativeStroke": { "$ref": "#/definitions/stroke" }, "negativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "hoverNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" }, "selectNegativeHatchFill": { "$ref": "#/definitions/hatchFillSet" } } }, "anychart.core.map.series.Connector": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.map.series.BaseWithMarkers" } ], "properties": { "seriesType": { "enum": [ "connector" ] }, "endSize": { "type": [ "number", "string" ] }, "startSize": { "type": [ "number", "string" ] }, "curvature": { "type": [ "number", "string" ] } } }, "anychart.core.map.series.Marker": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.map.series.Base" } ], "properties": { "seriesType": { "enum": [ "marker" ] }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "hoverType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "selectType": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "size": { "type": "number" }, "hoverSize": { "type": "number" }, "selectSize": { "type": "number" } } }, "anychart.core.ui.ChartScroller": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "fill": { "$ref": "#/definitions/fill" }, "selectedFill": { "$ref": "#/definitions/fill" }, "outlineStroke": { "$ref": "#/definitions/stroke" }, "thumbs": { "$ref": "#/definitions/anychart.core.ui.ScrollerThumbs" }, "orientation": { "$ref": "#/definitions/anychart.enums.Orientation" }, "inverted": { "type": "boolean" }, "autoHide": { "type": "boolean" }, "allowRangeChange": { "type": "boolean" }, "height": { "type": [ "number", "string" ] }, "minHeight": { "type": [ "number", "string", "null" ] }, "maxHeight": { "type": [ "number", "string", "null" ] }, "position": { "$ref": "#/definitions/anychart.enums.ChartScrollerPosition" } } }, "anychart.core.ui.ScrollerThumbs": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "fill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "stroke": { "$ref": "#/definitions/stroke" }, "hoverStroke": { "$ref": "#/definitions/stroke" }, "autoHide": { "type": "boolean" } } }, "anychart.core.CartesianXZoom": { "type": [ "object" ], "properties": { "continuous": { "type": "boolean" }, "startRatio": { "type": "number" }, "endRatio": { "type": "number" }, "startValue": {}, "endValue": {}, "pointsCount": { "type": "number" }, "scale": { "type": "number" } } }, "anychart.core.axes.Circular": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "fill": { "$ref": "#/definitions/fill" }, "width": { "type": [ "string", "number", "null" ] }, "startAngle": { "type": [ "number", "null" ] }, "sweepAngle": { "type": [ "number", "null" ] }, "radius": { "type": [ "string", "number", "null" ] }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.CircularLabelsFactory" } ] }, "minorLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.CircularLabelsFactory" } ] }, "ticks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.CircularTicks" } ] }, "minorTicks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.CircularTicks" } ] }, "scale": { "anyOf": [ { "type": [ "string" ] }, { "$ref": "#/definitions/anychart.scales.Linear" }, { "$ref": "#/definitions/anychart.scales.Logarithmic" } ] }, "drawFirstLabel": { "type": "boolean" }, "drawLastLabel": { "type": "boolean" } } }, "anychart.core.axes.Linear": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "width": { "type": [ "null", "number", "string" ] }, "orientation": { "$ref": "#/definitions/anychart.enums.Orientation" }, "drawFirstLabel": { "type": "boolean" }, "drawLastLabel": { "type": "boolean" }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "minorLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "ticks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Ticks" } ] }, "minorTicks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.Ticks" } ] }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "staggerMode": { "type": "boolean" }, "staggerLines": { "type": [ "null", "number" ] }, "staggerMaxLines": { "type": [ "null", "number" ] } } }, "anychart.core.axes.Polar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "minorLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "ticks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.RadialTicks" } ] }, "minorTicks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.RadialTicks" } ] } } }, "anychart.core.axes.Radar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "ticks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.RadialTicks" } ] } } }, "anychart.core.axes.Radial": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "drawFirstLabel": { "type": "boolean" }, "drawLastLabel": { "type": "boolean" }, "overlapMode": { "$ref": "#/definitions/anychart.enums.LabelsOverlapMode" }, "labels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "minorLabels": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ] }, "ticks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.RadialTicks" } ] }, "minorTicks": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axes.RadialTicks" } ] } } }, "anychart.core.axes.Ticks": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "length": { "type": "number" }, "position": { "$ref": "#/definitions/anychart.enums.SidePosition" }, "stroke": { "$ref": "#/definitions/stroke" } } }, "anychart.core.axes.RadialTicks": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "length": { "type": "number" }, "stroke": { "$ref": "#/definitions/stroke" } } }, "anychart.core.axes.CircularTicks": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "length": { "type": [ "string", "number", "null" ] }, "stroke": { "$ref": "#/definitions/stroke" }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "fill": { "$ref": "#/definitions/fill" }, "hatchFill": { "$ref": "#/definitions/hatchFillSet" }, "position": { "$ref": "#/definitions/anychart.enums.GaugeSidePosition" } } }, "anychart.core.gantt.Controller": { "type": "object", "properties": { "treeData": { "$ref": "#/definitions/treeData" }, "isResourceChart": { "type": "boolean" }, "verticalOffset": { "type": "number" }, "startIndex": { "type": "number" } } }, "anychart.core.ui.Timeline": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "rowStroke": { "$ref": "#/definitions/stroke" }, "columnStroke": { "$ref": "#/definitions/stroke" }, "tooltip": { "$ref": "#/definitions/anychart.core.ui.Tooltip" }, "scale": { "$ref": "#/definitions/anychart.scales.GanttDateTime" }, "backgroundFill": { "$ref": "#/definitions/fill" }, "rowOddFill": { "$ref": "#/definitions/fill" }, "rowEvenFill": { "$ref": "#/definitions/fill" }, "rowFill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "rowSelectedFill": { "$ref": "#/definitions/fill" }, "baseFill": { "$ref": "#/definitions/fill" }, "baseStroke": { "$ref": "#/definitions/stroke" }, "baselineFill": { "$ref": "#/definitions/fill" }, "baselineStroke": { "$ref": "#/definitions/stroke" }, "milestoneFill": { "$ref": "#/definitions/fill" }, "milestoneStroke": { "$ref": "#/definitions/stroke" }, "parentFill": { "$ref": "#/definitions/fill" }, "parentStroke": { "$ref": "#/definitions/stroke" }, "progressFill": { "$ref": "#/definitions/fill" }, "progressStroke": { "$ref": "#/definitions/stroke" }, "connectorFill": { "$ref": "#/definitions/fill" }, "connectorStroke": { "$ref": "#/definitions/stroke" }, "selectedElementFill": { "$ref": "#/definitions/fill" }, "selectedElementStroke": { "$ref": "#/definitions/stroke" }, "selectedConnectorStroke": { "$ref": "#/definitions/stroke" }, "labels": { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" }, "markers": { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" }, "connectorPreviewStroke": { "$ref": "#/definitions/stroke" }, "editPreviewFill": { "$ref": "#/definitions/fill" }, "editPreviewStroke": { "$ref": "#/definitions/stroke" }, "editProgressFill": { "$ref": "#/definitions/fill" }, "editProgressStroke": { "$ref": "#/definitions/stroke" }, "editIntervalThumbFill": { "$ref": "#/definitions/fill" }, "editIntervalThumbStroke": { "$ref": "#/definitions/stroke" }, "editConnectorThumbFill": { "$ref": "#/definitions/fill" }, "editConnectorThumbStroke": { "$ref": "#/definitions/stroke" }, "editStructurePreviewFill": { "$ref": "#/definitions/fill" }, "editStructurePreviewStroke": { "$ref": "#/definitions/stroke" }, "editStructurePreviewDashStroke": { "$ref": "#/definitions/stroke" }, "editing": { "type": "boolean" }, "baselineAbove": { "type": "boolean" }, "headerHeight": { "type": "number" }, "lineAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Line" } ] } }, "rangeAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Range" } ] } }, "textAxesMarkers": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.axisMarkers.Text" } ] } } } }, "anychart.scales.Base": { "type": "object", "properties": { "type": { "type": "string" }, "inverted": { "type": "boolean" } } }, "anychart.scales.ScatterBase": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.Base" } ], "properties": { "minimumGap": { "type": "number" }, "maximumGap": { "type": "number" }, "minimum": { "type": [ "number", "string", "null" ] }, "maximum": { "type": [ "number", "string", "null" ] }, "softMinimum": { "type": [ "number", "string", "null" ] }, "softMaximum": { "type": [ "number", "string", "null" ] } } }, "anychart.scales.Linear": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.ScatterBase" } ], "properties": { "type": { "enum": [ "linear" ] }, "ticks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "minorTicks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "stackMode": { "$ref": "#/definitions/anychart.enums.ScaleStackMode" }, "stickToZero": { "type": "boolean" } } }, "anychart.scales.LinearColor": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.Base" } ], "properties": { "type": { "enum": [ "linearColor" ] }, "ticks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "minorTicks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "colors": { "type": [ "null", "array" ], "items": { "type": "object" } } } }, "anychart.scales.Logarithmic": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.ScatterBase" } ], "properties": { "type": { "enum": [ "log" ] }, "logBase": { "type": "number" }, "ticks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "minorTicks": { "$ref": "#/definitions/anychart.scales.ScatterTicks" }, "stackMode": { "$ref": "#/definitions/anychart.enums.ScaleStackMode" }, "stickToZero": { "type": "boolean" } } }, "anychart.scales.Ordinal": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.Base" } ], "properties": { "type": { "enum": [ "ordinal" ] }, "ticks": { "$ref": "#/definitions/anychart.scales.OrdinalTicks" }, "names": { "type": [ "array", "string" ] }, "values": { "type": [ "null", "array" ], "items": { "type": [ "string", "number" ] } } } }, "anychart.scales.OrdinalColor": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.Base" } ], "properties": { "type": { "enum": [ "ordinalColor" ] }, "ticks": { "$ref": "#/definitions/anychart.scales.OrdinalTicks" }, "colors": { "type": [ "null", "array" ], "items": { "type": "string" } }, "ranges": { "type": "array", "items": { "type": "object" } }, "names": { "type": [ "array", "string" ] } } }, "anychart.scales.DateTime": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.scales.ScatterBase" } ], "properties": { "type": { "enum": [ "dateTime" ] }, "ticks": { "$ref": "#/definitions/anychart.scales.DateTimeTicks" }, "minorTicks": { "$ref": "#/definitions/anychart.scales.DateTimeTicks" } } }, "anychart.scales.ScatterTicks": { "type": "object", "properties": { "mode": { "type": "string" }, "base": { "type": "number" }, "explicit": { "type": [ "array", "null" ] }, "count": { "type": [ "number", "null" ] }, "minCount": { "type": [ "number", "null" ] }, "maxCount": { "type": [ "number", "null" ] }, "interval": { "type": [ "number", "null" ] } } }, "anychart.scales.OrdinalTicks": { "type": "object", "properties": { "explicit": { "type": [ "array", "null" ] }, "interval": { "type": [ "number", "null" ] }, "names": { "type": [ "array", "null" ], "items": { "type": "string" } } } }, "anychart.scales.DateTimeTicks": { "type": "object", "properties": { "explicit": { "type": [ "array", "null" ] }, "count": { "type": [ "number", "null" ] }, "interval": { "type": [ "number", "null", "string" ] } } }, "anychart.scales.GanttDateTime": { "type": "object", "properties": { "range": { "type": "object", "properties": { "min": { "type": "number" }, "max": { "type": "number" } } }, "totalRange": { "type": "object", "properties": { "min": { "type": "number" }, "max": { "type": "number" } } } } }, "anychart.core.map.scale.Geo": { "type": "object", "properties": { "type": { "enum": [ "geo" ] }, "inverted": { "type": "array", "items": { "type": "boolean" } }, "minimumX": { "type": [ "number", "string", "null" ] }, "maximumX": { "type": [ "number", "string", "null" ] }, "minimumY": { "type": [ "number", "string", "null" ] }, "maximumY": { "type": [ "number", "string", "null" ] }, "gap": { "type": [ "number", "string" ] }, "bounds": { "$ref": "#/definitions/anychart.math.Rect" } } }, "anychart.core.grids.Linear": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" }, "oddFill": { "$ref": "#/definitions/fill" }, "evenFill": { "$ref": "#/definitions/fill" }, "drawFirstLine": { "type": [ "boolean" ] }, "drawLastLine": { "type": [ "boolean" ] }, "isMinor": { "type": [ "boolean" ] }, "axis": { "type": "number" } } }, "anychart.core.grids.Polar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "layout": { "$ref": "#/definitions/anychart.enums.RadialGridLayout" }, "oddFill": { "$ref": "#/definitions/fill" }, "evenFill": { "$ref": "#/definitions/fill" }, "drawLastLine": { "type": [ "boolean" ] }, "isMinor": { "type": [ "boolean" ] }, "axis": { "type": "number" } } }, "anychart.core.grids.Radar": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "layout": { "$ref": "#/definitions/anychart.enums.RadialGridLayout" }, "oddFill": { "$ref": "#/definitions/fill" }, "evenFill": { "$ref": "#/definitions/fill" }, "drawLastLine": { "type": [ "boolean" ] }, "isMinor": { "type": [ "boolean" ] }, "axis": { "type": "number" } } }, "anychart.core.ui.ColorRange": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.axes.Linear" } ], "properties": { "align": { "$ref": "#/definitions/anychart.enums.Align" }, "length": { "type": [ "string", "number" ] }, "colorLineSize": { "type": [ "string", "number" ] }, "marker": { "$ref": "#/definitions/anychart.core.ui.MarkersFactory.Marker" } } }, "anychart.core.ui.Background": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.VisualBaseWithBounds" }, { "$ref": "#/definitions/shape" } ], "properties": { "cornerType": { "$ref": "#/definitions/anychart.enums.BackgroundCornersType" }, "corners": { "type": [ "array", "object", "number" ], "properties": { "leftTop": { "type": "number" }, "rightTop": { "type": "number" }, "rightBottom": { "type": "number" }, "leftBottom": { "type": "number" } }, "items": { "type": [ "string", "number" ] } } } }, "anychart.core.ui.Label": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "adjustFontSize": { "type": [ "boolean", "object", "array" ], "properties": { "width": { "type": "boolean" }, "height": { "type": "boolean" } }, "items": { "type": "boolean" } }, "minFontSize": { "type": [ "number", "string" ] }, "maxFontSize": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "offsetX": { "type": [ "number", "string" ] }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "position": { "$ref": "#/definitions/anychart.enums.Anchor" }, "rotation": { "type": "number" }, "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" } } }, "anychart.core.ui.CrosshairLabel": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" }, { "$ref": "#/definitions/anychart.core.ui.Label" } ], "properties": { "axisIndex": { "type": "number" } } }, "anychart.core.ui.Crosshair": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "displayMode": { "$ref": "#/definitions/anychart.enums.CrosshairDisplayMode" }, "xStroke": { "$ref": "#/definitions/stroke" }, "yStroke": { "$ref": "#/definitions/stroke" }, "xLabel": { "$ref": "#/definitions/anychart.core.ui.CrosshairLabel" }, "yLabel": { "$ref": "#/definitions/anychart.core.ui.CrosshairLabel" } } }, "anychart.core.ui.Legend": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "iconTextSpacing": { "type": [ "number", "string" ] }, "iconSize": { "type": "number" }, "itemsSpacing": { "type": [ "number", "string" ] }, "itemsSourceMode": { "$ref": "#/definitions/anychart.enums.LegendItemsSourceMode" }, "hoverCursor": { "$ref": "#/definitions/anychart.enums.Cursor" }, "inverted": { "type": "boolean" }, "position": { "$ref": "#/definitions/anychart.enums.Orientation" }, "align": { "$ref": "#/definitions/anychart.enums.Align" }, "itemsLayout": { "$ref": "#/definitions/anychart.enums.Layout" }, "items": { "type": "array", "items": { "$ref": "#/definitions/anychart.core.utils.LegendItemSettings" } }, "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] }, "margin": { "$ref": "#/definitions/anychart.core.utils.Space" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "titleSeparator": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Separator" } ] }, "paginator": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Paginator" } ] } } }, "anychart.core.ui.LabelsFactory": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "rotation": { "type": "number" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "position": { "type": "string" }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] }, "width": { "type": [ "number", "string", "null" ] }, "height": { "type": [ "number", "string", "null" ] }, "adjustFontSize": { "type": [ "boolean", "object", "array" ], "properties": { "width": { "type": "boolean" }, "height": { "type": "boolean" } }, "items": { "type": "boolean" } }, "minFontSize": { "type": [ "number", "string" ] }, "maxFontSize": { "type": [ "number", "string" ] }, "textFormatter": { "type": "string" } } }, "anychart.core.ui.LabelsFactory.Label": { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" }, "anychart.core.ui.CircularLabelsFactory": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" }, { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" } ], "properties": { "autoRotate": { "type": "boolean" } } }, "anychart.core.ui.CircularLabelsFactory.Label": { "$ref": "#/definitions/anychart.core.ui.CircularLabelsFactory" }, "anychart.core.ui.MarkersFactory": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/shape" } ], "properties": { "disablePointerEvents": { "type": "boolean" }, "position": { "type": "string" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "type": { "$ref": "#/definitions/anychart.enums.MarkerType" }, "rotation": { "type": [ "number", "null" ] }, "size": { "type": "number" }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] } } }, "anychart.core.ui.MarkersFactory.Marker": { "$ref": "#/definitions/anychart.core.ui.MarkersFactory" }, "anychart.core.ui.Title": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "orientation": { "$ref": "#/definitions/anychart.enums.Orientation" }, "align": { "$ref": "#/definitions/anychart.enums.Align" }, "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] }, "margin": { "$ref": "#/definitions/anychart.core.utils.Space" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "text": { "type": "string" }, "rotation": { "type": "number" }, "width": { "type": [ "number", "string", "null" ] }, "height": { "type": [ "number", "string", "null" ] } } }, "anychart.core.ui.ChartTooltip": { "type": "object", "properties": { "displayMode": { "$ref": "#/definitions/anychart.enums.TooltipDisplayMode" }, "position": { "$ref": "#/definitions/anychart.enums.Anchor" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "positionMode": { "$ref": "#/definitions/anychart.enums.TooltipPositionMode" }, "allowAdjustPosition": { "type": "boolean" }, "allowLeaveChart": { "type": "boolean" }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "separator": { "$ref": "#/definitions/anychart.core.ui.Separator" }, "background": { "$ref": "#/definitions/anychart.core.ui.Background" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "enabled": { "type": "boolean" }, "hideDelay": { "type": "number" }, "adjustFontSize": { "type": [ "boolean", "object", "array" ], "properties": { "width": { "type": "boolean" }, "height": { "type": "boolean" } }, "items": { "type": "boolean" } }, "minFontSize": { "type": [ "number", "string" ] }, "maxFontSize": { "type": [ "number", "string" ] }, "fontSize": { "type": [ "string", "number" ] }, "fontFamily": { "type": [ "string", "null" ] }, "fontColor": { "type": [ "string", "null" ] }, "fontOpacity": { "type": [ "number", "null" ], "minimum": 0, "maximum": 1 }, "fontDecoration": { "enum": [ "blink", "line-through", "overline", "underline", "none", "null" ] }, "fontStyle": { "enum": [ "normal", "italic", "oblique", "null" ] }, "fontVariant": { "enum": [ "normal", "small-caps", "null" ] }, "fontWeight": { "type": [ "string", "number", "null" ] }, "letterSpacing": { "type": [ "string", "number", "null" ] }, "textDirection": { "enum": [ "ltr", "rtl", "null" ] }, "lineHeight": { "type": [ "string", "number", "null" ] }, "textIndent": { "type": [ "number", "null" ] }, "vAlign": { "enum": [ "top", "middle", "bottom", "null" ] }, "hAlign": { "enum": [ "left", "start", "center", "end", "right", "null" ] }, "textWrap": { "enum": [ "noWrap", "byLetter", "null" ] }, "textOverflow": { "type": [ "string", "null" ] }, "selectable": { "type": [ "boolean", "null" ] }, "disablePointerEvents": { "type": [ "boolean", "null" ] }, "useHtml": { "type": [ "boolean", "null" ] }, "allowLeaveScreen": { "type": "boolean" } } }, "anychart.core.ui.SeriesTooltip": { "type": "object", "properties": { "valuePrefix": { "type": "string" }, "valuePostfix": { "type": "string" }, "position": { "$ref": "#/definitions/anychart.enums.Anchor" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "separator": { "$ref": "#/definitions/anychart.core.ui.Separator" }, "background": { "$ref": "#/definitions/anychart.core.ui.Background" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "enabled": { "type": "boolean" }, "hideDelay": { "type": "number" }, "adjustFontSize": { "type": [ "boolean", "object", "array" ], "properties": { "width": { "type": "boolean" }, "height": { "type": "boolean" } }, "items": { "type": "boolean" } }, "minFontSize": { "type": [ "number", "string" ] }, "maxFontSize": { "type": [ "number", "string" ] }, "fontSize": { "type": [ "string", "number" ] }, "fontFamily": { "type": [ "string", "null" ] }, "fontColor": { "type": [ "string", "null" ] }, "fontOpacity": { "type": [ "number", "null" ], "minimum": 0, "maximum": 1 }, "fontDecoration": { "enum": [ "blink", "line-through", "overline", "underline", "none", "null" ] }, "fontStyle": { "enum": [ "normal", "italic", "oblique", "null" ] }, "fontVariant": { "enum": [ "normal", "small-caps", "null" ] }, "fontWeight": { "type": [ "string", "number", "null" ] }, "letterSpacing": { "type": [ "string", "number", "null" ] }, "textDirection": { "enum": [ "ltr", "rtl", "null" ] }, "lineHeight": { "type": [ "string", "number", "null" ] }, "textIndent": { "type": [ "number", "null" ] }, "vAlign": { "enum": [ "top", "middle", "bottom", "null" ] }, "hAlign": { "enum": [ "left", "start", "center", "end", "right", "null" ] }, "textWrap": { "enum": [ "noWrap", "byLetter", "null" ] }, "textOverflow": { "type": [ "string", "null" ] }, "selectable": { "type": [ "boolean", "null" ] }, "disablePointerEvents": { "type": [ "boolean", "null" ] }, "useHtml": { "type": [ "boolean", "null" ] } } }, "anychart.core.ui.Tooltip": { "type": "object", "properties": { "valuePrefix": { "type": "string" }, "valuePostfix": { "type": "string" }, "title": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Title" } ] }, "separator": { "$ref": "#/definitions/anychart.core.ui.Separator" }, "content": { "$ref": "#/definitions/anychart.core.ui.Label" }, "background": { "$ref": "#/definitions/anychart.core.ui.Background" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "allowLeaveScreen": { "type": "boolean" }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" }, "hideDelay": { "type": "number" }, "enabled": { "type": "boolean" } } }, "anychart.core.ui.Paginator": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "orientation": { "$ref": "#/definitions/anychart.enums.Orientation" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" }, "margin": { "$ref": "#/definitions/anychart.core.utils.Space" }, "padding": { "$ref": "#/definitions/anychart.core.utils.Space" }, "background": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.core.ui.Background" } ] } } }, "anychart.core.ui.Separator": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/shape" } ], "properties": { "margin": { "$ref": "#/definitions/anychart.core.utils.Space" }, "width": { "type": [ "string", "number", "null" ] }, "height": { "type": [ "string", "number", "null" ] }, "orientation": { "$ref": "#/definitions/anychart.enums.Orientation" } } }, "anychart.core.ui.Credits": { "type": "object", "properties": { "text": { "type": "string" }, "url": { "type": "string" }, "alt": { "type": "string" }, "logoSrc": { "type": "string" }, "isChart": { "type": "boolean" } } }, "anychart.core.ui.DataGrid": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "rowStroke": { "$ref": "#/definitions/stroke" }, "columnStroke": { "$ref": "#/definitions/stroke" }, "titleFill": { "$ref": "#/definitions/fill" }, "tooltip": { "$ref": "#/definitions/anychart.core.ui.Tooltip" }, "columns": { "type": "array", "items": { "$ref": "#/definitions/anychart.core.ui.DataGrid.Column" } }, "isStandalone": { "type": "boolean" }, "headerHeight": { "type": "number" }, "horizontalOffset": { "type": "number" }, "backgroundFill": { "$ref": "#/definitions/fill" }, "rowOddFill": { "$ref": "#/definitions/fill" }, "rowEvenFill": { "$ref": "#/definitions/fill" }, "rowFill": { "$ref": "#/definitions/fill" }, "hoverFill": { "$ref": "#/definitions/fill" }, "rowSelectedFill": { "$ref": "#/definitions/fill" }, "editStructurePreviewFill": { "$ref": "#/definitions/fill" }, "editStructurePreviewStroke": { "$ref": "#/definitions/stroke" }, "editStructurePreviewDashStroke": { "$ref": "#/definitions/stroke" }, "editing": { "type": "boolean" } } }, "anychart.core.ui.DataGrid.Column": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "cellTextSettings": { "$ref": "#/definitions/anychart.core.ui.LabelsFactory" }, "title": { "$ref": "#/definitions/anychart.core.ui.Title" }, "width": { "type": "number" }, "defaultWidth": { "type": "number" }, "collapseExpandButtons": { "type": "boolean" }, "depthPaddingMultiplier": { "type": "number" } } }, "anychart.core.Text": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "align": { "type": "string" }, "orientation": { "type": "string" }, "useHtml": { "type": [ "boolean", "null" ] }, "fontSize": { "type": [ "string", "number" ] }, "color": { "type": [ "string", "null" ] }, "fontFamily": { "type": [ "string", "null" ] }, "direction": { "enum": [ "ltr", "rtl", "null" ] }, "selectable": { "type": [ "boolean", "null" ] }, "disablePointerEvents": { "type": [ "boolean", "null" ] }, "hAlign": { "enum": [ "left", "start", "center", "end", "right", "null" ] }, "textWrap": { "enum": [ "noWrap", "byLetter", "null" ] }, "width": { "type": [ "string", "number", "null" ] }, "height": { "type": [ "string", "number", "null" ] }, "fontStyle": { "enum": [ "normal", "italic", "oblique", "null" ] }, "fontVariant": { "enum": [ "normal", "small-caps", "null" ] }, "fontWeight": { "type": [ "string", "number", "null" ] }, "letterSpacing": { "type": [ "string", "number", "null" ] }, "decoration": { "enum": [ "blink", "line-through", "overline", "underline", "none", "null" ] }, "vAlign": { "enum": [ "top", "middle", "bottom", "null" ] }, "opacity": { "type": [ "number", "null" ], "minimum": 0, "maximum": 1 }, "textIndent": { "type": [ "number", "null" ] }, "lineHeight": { "type": [ "string", "number", "null" ] }, "textOverflow": { "type": [ "string", "null" ] } } }, "anychart.core.axisMarkers.Line": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "value": { "type": [ "number", "string" ] }, "scale": { "type": "number" }, "axis": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" } } }, "anychart.core.axisMarkers.GanttLine": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "stroke": { "$ref": "#/definitions/stroke" }, "value": { "type": [ "number", "string" ] }, "scale": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" } } }, "anychart.core.axisMarkers.Range": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "fill": { "$ref": "#/definitions/fill" }, "from": { "type": [ "number", "string" ] }, "to": { "type": [ "number", "string" ] }, "scale": { "type": "number" }, "axis": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" } } }, "anychart.core.axisMarkers.GanttRange": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "fill": { "$ref": "#/definitions/fill" }, "from": { "type": [ "number", "string" ] }, "to": { "type": [ "number", "string" ] }, "scale": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" } } }, "anychart.core.axisMarkers.CircularRange": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" } ], "properties": { "fill": { "$ref": "#/definitions/fill" }, "endSize": { "type": [ "string", "number", "null" ] }, "startSize": { "type": [ "string", "number", "null" ] }, "radius": { "type": [ "string", "number", "null" ] }, "axisIndex": { "type": "number" }, "from": { "type": "number" }, "to": { "type": "number" }, "position": { "$ref": "#/definitions/anychart.enums.GaugeSidePosition" } } }, "anychart.core.axisMarkers.Text": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "value": { "type": [ "number", "string" ] }, "text": { "type": [ "string" ] }, "width": { "type": [ "number", "string", "null" ] }, "height": { "type": [ "number", "string", "null" ] }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "rotation": { "type": [ "number", "null" ] }, "scale": { "type": "number" }, "axis": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" }, "align": { "$ref": "#/definitions/anychart.enums.Align" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" } } }, "anychart.core.axisMarkers.GanttText": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "value": { "type": [ "number", "string" ] }, "text": { "type": [ "string" ] }, "width": { "type": [ "number", "string", "null" ] }, "height": { "type": [ "number", "string", "null" ] }, "offsetX": { "type": [ "number", "string" ] }, "offsetY": { "type": [ "number", "string" ] }, "rotation": { "type": [ "number", "null" ] }, "scale": { "type": "number" }, "layout": { "$ref": "#/definitions/anychart.enums.Layout" }, "align": { "$ref": "#/definitions/anychart.enums.Align" }, "anchor": { "$ref": "#/definitions/anychart.enums.Anchor" } } }, "anychart.math.Rect": { "type": "object", "properties": { "left": { "type": "number" }, "top": { "type": "number" }, "width": { "type": "number" }, "height": { "type": "number" } } }, "anychart.enums.HoverMode": { "enum": [ "bySpot", "byX", "single" ] }, "anychart.enums.SelectionMode": { "enum": [ "none", "singleSelect", "multiSelect", "drillDown" ] }, "anychart.enums.Align": { "enum": [ "center", "top", "left", "right", "bottom" ] }, "anychart.enums.NinePositions": { "enum": [ "leftTop", "top", "rightTop", "leftCenter", "center", "rightCenter", "leftBottom", "bottom", "rightBottom" ] }, "anychart.enums.Anchor": { "enum": [ "leftTop", "leftCenter", "leftBottom", "centerTop", "center", "centerBottom", "rightTop", "rightCenter", "rightBottom" ] }, "anychart.enums.Orientation": { "enum": [ "top", "left", "right", "bottom" ] }, "anychart.enums.ChartScrollerPosition": { "enum": [ "afterAxes", "beforeAxes" ] }, "anychart.enums.Sort": { "enum": [ "asc", "desc", "none" ] }, "anychart.enums.BackgroundCornersType": { "enum": [ "none", "cut", "round", "roundInner" ] }, "anychart.enums.MarkerType": { "enum": [ "star4", "star5", "star6", "star7", "star10", "triangleUp", "triangleDown", "cross", "diamond", "diagonalCross", "circle", "square", "trapezium", "pentagon", "line", "vline", "x", "ellipse", "bar", "trapezoid", "arrow", "arrowhead" ] }, "anychart.enums.Layout": { "enum": [ "vertical", "horizontal" ] }, "anychart.enums.RadialGridLayout": { "enum": [ "radial", "circuit" ] }, "anychart.enums.LabelsOverlapMode": { "enum": [ "noOverlap", "allowOverlap" ] }, "anychart.enums.LabelsDisplayMode": { "enum": [ "alwaysShow", "clip", "drop" ] }, "anychart.enums.SidePosition": { "enum": [ "inside", "center", "outside" ] }, "anychart.enums.GaugeSidePosition": { "enum": [ "inside", "center", "outside" ] }, "anychart.enums.ScaleStackMode": { "enum": [ "none", "value", "percent" ] }, "anychart.enums.ErrorMode": { "enum": [ "none", "x", "value", "both" ] }, "anychart.enums.LegendItemsSourceMode": { "enum": [ "default", "categories" ] }, "anychart.enums.Cursor": { "enum": [ "default", "crosshair", "pointer", "move", "text", "wait", "help", "n-resize", "ne-resize", "e-resize", "se-resize", "s-resize", "sw-resize", "w-resize", "nw-resize" ] }, "anychart.enums.TooltipDisplayMode": { "enum": [ "union", "separated", "single" ] }, "anychart.enums.TooltipPositionMode": { "enum": [ "float", "point", "chart" ] }, "anychart.enums.CrosshairDisplayMode": { "enum": [ "float", "sticky" ] }, "acgraph.vector.HatchFill.HatchFillType": { "enum": [ "backwardDiagonal", "forwardDiagonal", "horizontal", "vertical", "dashedBackwardDiagonal", "grid", "dashedForwardDiagonal", "dashedHorizontal", "dashedVertical", "diagonalCross", "diagonalBrick", "divot", "horizontalBrick", "verticalBrick", "checkerBoard", "confetti", "plaid", "solidDiamond", "zigZag", "weave", "percent05", "percent10", "percent20", "percent25", "percent30", "percent40", "percent50", "percent60", "percent70", "percent75", "percent80", "percent90" ] }, "anychart.core.utils.Bounds": { "properties": { "left": { "type": [ "number", "string", "null" ] }, "top": { "type": [ "number", "string", "null" ] }, "right": { "type": [ "number", "string", "null" ] }, "bottom": { "type": [ "number", "string", "null" ] }, "width": { "type": [ "number", "string", "null" ] }, "height": { "type": [ "number", "string", "null" ] }, "minWidth": { "type": [ "number", "string", "null" ] }, "minHeight": { "type": [ "number", "string", "null" ] }, "maxWidth": { "type": [ "number", "string", "null" ] }, "maxHeight": { "type": [ "number", "string", "null" ] } } }, "anychart.core.utils.Animation": { "properties": { "enabled": { "type": "boolean" }, "duration": { "type": "number" } } }, "anychart.core.utils.Space": { "properties": { "top": { "type": [ "number", "string" ] }, "left": { "type": [ "number", "string" ] }, "right": { "type": [ "number", "string" ] }, "bottom": { "type": [ "number", "string" ] } } }, "anychart.core.utils.Error": { "type": "object", "properties": { "mode": { "$ref": "#/definitions/anychart.enums.ErrorMode" }, "xError": { "type": [ "number", "string", "null" ] }, "xUpperError": { "type": [ "number", "string", "null" ] }, "xLowerError": { "type": [ "number", "string", "null" ] }, "valueError": { "type": [ "number", "string", "null" ] }, "valueUpperError": { "type": [ "number", "string", "null" ] }, "valueLowerError": { "type": [ "number", "string", "null" ] }, "xErrorWidth": { "type": "number" }, "valueErrorWidth": { "type": "number" }, "xErrorStroke": { "$ref": "#/definitions/stroke" }, "valueErrorStroke": { "$ref": "#/definitions/stroke" } } }, "anychart.core.utils.UnboundRegionsSettings": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "stroke": { "$ref": "#/definitions/stroke" }, "fill": { "$ref": "#/definitions/fill" } } }, "anychart.core.utils.LegendItemSettings": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.VisualBase" }, { "$ref": "#/definitions/anychart.core.Text" } ], "properties": { "iconTextSpacing": { "type": [ "number", "string" ] }, "iconSize": { "type": "number" }, "iconEnabled": { "type": "boolean" }, "iconType": { "type": "string" }, "iconMarkerType": { "type": "string" }, "text": { "type": "string" }, "disabled": { "type": "boolean" }, "iconFill": { "$ref": "#/definitions/fill" }, "iconStroke": { "$ref": "#/definitions/stroke" }, "iconHatchFill": { "$ref": "#/definitions/hatchFill" }, "iconMarkerFill": { "$ref": "#/definitions/fill" }, "iconMarkerStroke": { "$ref": "#/definitions/stroke" } } }, "anychart.core.utils.Interactivity": { "type": "object", "properties": { "hoverMode": { "$ref": "#/definitions/anychart.enums.HoverMode" }, "selectionMode": { "$ref": "#/definitions/anychart.enums.SelectionMode" }, "spotRadius": { "type": "number" }, "allowMultiSeriesSelection": { "type": "boolean" } } }, "anychart.core.utils.MapInteractivity": { "type": "object", "allOf": [ { "$ref": "#/definitions/anychart.core.utils.Interactivity" } ], "properties": { "mouseWheel": { "type": "boolean" }, "drag": { "type": "boolean" } } }, "anychart.ui.ContextMenu": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "data": { "type": "array" }, "treeData": { "type": "object", "properties": { "children": { "type": "array", "items": { "$ref": "#/definitions/treeDataItem" } }, "index": { "type": "array", "items": { "type": "string" } } } }, "treeDataItem": { "type": "object", "properties": { "treeDataItemData": { "type": "object" }, "treeDataItemMeta": { "type": "object" }, "children": { "type": "array", "items": { "$ref": "#/definitions/treeDataItem" } } } }, "error": { "oneOf": [ { "$ref": "#/definitions/anychart.core.utils.Error" }, { "type": [ "number", "boolean", "string" ] } ] }, "disable": { "type": [ "boolean", "null" ] }, "clip": { "oneOf": [ { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/anychart.math.Rect" } ] }, "shape": { "type": "object", "properties": { "fill": { "$ref": "#/definitions/fill" }, "stroke": { "$ref": "#/definitions/stroke" } } }, "disabledColor": { "oneOf": [ { "type": "null" } ] }, "fill": { "anyOf": [ { "$ref": "#/definitions/disabledColor" }, { "$ref": "#/definitions/linearGradientFill" }, { "$ref": "#/definitions/radialGradientFill" }, { "$ref": "#/definitions/solidFill" }, { "$ref": "#/definitions/hatchFill" } ] }, "stroke": { "anyOf": [ { "$ref": "#/definitions/disabledColor" }, { "$ref": "#/definitions/solidStroke" }, { "$ref": "#/definitions/linearGradientStroke" }, { "$ref": "#/definitions/radialGradientStroke" } ] }, "hatchFill": { "type": [ "object" ], "properties": { "type": { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" }, "color": { "type": "string" }, "thickness": { "type": "number" }, "size": { "type": "number" } } }, "hatchFillSet": { "oneOf": [ { "enum": [ "none" ] }, { "$ref": "#/definitions/disable" }, { "$ref": "#/definitions/acgraph.vector.HatchFill.HatchFillType" }, { "$ref": "#/definitions/hatchFill" } ] }, "solidFill": { "type": [ "string", "object" ], "properties": { "color": { "type": "string" }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 } } }, "solidStroke": { "type": [ "string", "object" ], "properties": { "color": { "type": "string" }, "thickness": { "type": "number" }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 }, "dash": { "type": "string" }, "linejoin": { "enum": [ "miter", "round", "bevel" ] }, "linecap": { "enum": [ "butt", "round", "square" ] } } }, "radialGradientFill": { "type": "object", "properties": { "type": { "enum": [ "RadialGradientFill" ] }, "keys": { "$ref": "#/definitions/gradientKeys" }, "cx": { "type": "number" }, "cy": { "type": "number" }, "fx": { "type": "number" }, "fy": { "type": "number" }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 } } }, "linearGradientFill": { "type": "object", "properties": { "type": { "enum": [ "LinearGradientFill" ] }, "keys": { "$ref": "#/definitions/gradientKeys" }, "angle": { "type": [ "number" ] }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 } } }, "radialGradientStroke": { "type": "object", "properties": { "type": { "enum": [ "RadialGradientStroke" ] }, "keys": { "$ref": "#/definitions/gradientKeys" }, "cx": { "type": "number" }, "cy": { "type": "number" }, "mode": { "$ref": "#/definitions/anychart.math.Rect" }, "fx": { "type": "number" }, "fy": { "type": "number" }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 }, "dash": { "type": "string" }, "linejoin": { "enum": [ "miter", "round", "bevel" ] }, "linecap": { "enum": [ "butt", "round", "square" ] }, "thickness": { "type": "number" } } }, "linearGradientStroke": { "type": "object", "properties": { "keys": { "$ref": "#/definitions/gradientKeys" }, "type": { "enum": [ "LinearGradientStroke" ] }, "angle": { "type": [ "number" ] }, "mode": { "oneOf": [ { "type": "boolean" }, { "$ref": "#/definitions/anychart.math.Rect" } ] }, "opacity": { "type": "number", "minimum": 0, "maximum": 1 }, "dash": { "type": "string" }, "linejoin": { "enum": [ "miter", "round", "bevel" ] }, "linecap": { "enum": [ "butt", "round", "square" ] }, "thickness": { "type": "number" } } }, "gradientKeys": { "type": "array", "items": { "type": [ "string", "object" ], "properties": { "offset": { "type": "number" }, "color": { "type": "string" }, "opacity": { "type": [ "number" ], "minimum": 0, "maximum": 1 } } } } } }
o48661
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://mcda.drugis.org/valueCIEffect.json#", "title": "MCDA value, confidence interval effect for the performance table entry of absolute data", "type": "object", "required": [ "type", "value", "input" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "exact" ] }, "value": { "type": "number" }, "input": { "type": "object", "required": [ "value", "lowerBound", "upperBound" ], "additionalProperties": false, "properties": { "value": { "type": "number" }, "lowerBound": { "oneOf": [ { "type": "number" }, { "type": "string", "enum": [ "NE" ] } ] }, "upperBound": { "oneOf": [ { "type": "number" }, { "type": "string", "enum": [ "NE" ] } ] }, "scale": { "type": "string", "enum": [ "percentage", "decimal" ] } } } } }
o37097
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "additionalTerms": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "backgroundInformation": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,199}\\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" }, "endUsers": { "minLength": 1, "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": [ "Case study", "Work history", "Reference", "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" }, "outcome": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,199}\\S+$", "type": "string" }, "phase": { "enum": [ "not_applicable", "not_started", "discovery", "alpha", "beta", "live" ] }, "priceCriteria": { "enum": [ "Fixed price", "Time and materials", "Capped time and materials" ] }, "priceWeighting": { "maximum": 85, "minimum": 20, "type": "integer" }, "questionAndAnswerSessionDetails": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "securityClearance": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,49}\\S+$)", "type": "string" }, "startDate": { "_format": "date", "type": "string" }, "successCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "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" }, "workAlreadyDone": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "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": [ "backgroundInformation", "culturalFitCriteria", "culturalWeighting", "endUsers", "essentialRequirements", "existingTeam", "location", "numberOfSuppliers", "organisation", "outcome", "phase", "priceCriteria", "priceWeighting", "startDate", "successCriteria", "summary", "technicalWeighting", "title", "workingArrangements", "workplaceAddress" ], "title": "Digital Outcomes and Specialists 4 Digital outcomes Brief Schema", "type": "object" }
o21072
{ "properties": { "grafana": { "description": "grafana service configuration properties", "properties": { "admin_password": { "default": "admin", "description": "Admin password.", "type": "string" }, "cpus": { "default": 0.3, "description": "CPU shares to allocate to each service instance.", "minimum": 0.3, "type": "number" }, "mem": { "default": 512.0, "description": "Memory to allocate to each service instance.", "minimum": 512.0, "type": "number" }, "plugins": { "default": "", "description": "Comma separated Grafana plugins which will be installed via `grafana-cli plugins install grafana-example-app,grafana-clock-panel`. See https://grafana.com/plugins", "type": "string" } }, "required": [ "cpus", "mem" ], "type": "object" }, "networking": { "description": "Grafana networking configuration properties", "properties": { "external_access": { "description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.", "properties": { "enable": { "default": true, "description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.", "type": "boolean" }, "external_access_port": { "default": 13000, "description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer", "type": "number" }, "virtual_host": { "default": "grafana.example.org", "description": "For external access, Virtual Host URL to be used in the external load balancer.", "type": "string" } }, "type": "object" } }, "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "name": { "default": "grafana", "description": "Name of this service instance.", "type": "string" } }, "type": "object" } } }
o90702
{ "properties": { "keyvalue": { "type": "string" }, "method": { "enum": [ "NONE", "RC4", "DES3", "AES128", "AES192", "AES256", "DES", "DES-CBC", "DES-CFB", "DES-OFB", "DES-ECB", "DES3-CBC", "DES3-CFB", "DES3-OFB", "DES3-ECB", "AES128-CBC", "AES128-CFB", "AES128-OFB", "AES128-ECB", "AES192-CBC", "AES192-CFB", "AES192-OFB", "AES192-ECB", "AES256-CBC", "AES256-CFB", "AES256-OFB", "AES256-ECB" ], "type": "string" } }, "title": "nsencryptionparams", "type": "object" }
o30752
{ "title": "JSON schema for Outblocks App configuration files", "$schema": "http://json-schema.org/draft-07/schema", "$ref": "#/definitions/OutblocksApp", "definitions": { "OutblocksApp": { "title": "OutblocksApp", "type": "object", "additionalProperties": true, "properties": { "name": { "description": "Name of the app. Defaults to directory name.", "type": "string" }, "type": { "description": "Type of the app.", "type": "string", "enum": [ "static", "function", "service" ] }, "env": { "description": "Environment variables common for all operations.", "type": "object", "additionalProperties": { "type": "string" } }, "dir": { "description": "Working directory of the app where all commands will be run. Defaults to location of this yaml. All other dirs will be relative to this one.", "type": "string" }, "url": { "description": "External URL of the app.", "type": "string" }, "path_redirect": { "description": "Path redirect rewrites URL to specified path. URL path from 'url' field will be stripped and replaced with value below.", "type": "string" }, "needs": { "description": "Application dependencies to inject.", "$ref": "#/definitions/Needs" }, "run": { "description": "Run config used for dev builds during run.", "$ref": "#/definitions/Run" }, "cdn": { "description": "CDN settings.", "$ref": "#/definitions/CDN" }, "build": { "type": "object" } }, "required": [ "type" ], "allOf": [ { "if": { "properties": { "type": { "const": "static" } } }, "then": { "properties": { "routing": { "description": "Routing type. Defaults to 'react'.", "type": "string", "enum": [ "react", "gatsby", "disabled" ] }, "remove_trailing_slash": { "description": "Remove trailing slash with permanent redirect. Currently used only for deployments. Defaults to 'true' when gatsby routing is used, 'false' otherwise.", "type": "boolean" }, "basic_auth": { "description": "Static application basic authentication config. Currently used only for deployments.", "$ref": "#/definitions/StaticBasicAuth" }, "build": { "description": "Static application build config used for deployment builds.", "$ref": "#/definitions/StaticBuild" }, "deploy": { "description": "Static deploy config.", "$ref": "#/definitions/StaticDeploy" } } } }, { "if": { "properties": { "type": { "const": "service" } } }, "then": { "properties": { "private": { "description": "Marks app as private - won't allow unauthenticated access.", "type": "boolean" }, "build": { "description": "Service application build config used for deployment builds.", "$ref": "#/definitions/ServiceBuild" }, "container": { "description": "Service application container config used for docker based deployments/runs.", "$ref": "#/definitions/ServiceContainer" }, "deploy": { "description": "Service deploy config.", "$ref": "#/definitions/ServiceDeploy" }, "scheduler": { "description": "Service scheduler config.", "$ref": "#/definitions/Scheduler" } } } }, { "if": { "properties": { "type": { "const": "function" } } }, "then": { "required": [ "type" ], "properties": { "private": { "description": "Marks app as private - won't allow unauthenticated access.", "type": "boolean" }, "runtime": { "description": "The runtime in which the function is going to run, refer to cloud provider docs for possible options.", "type": "string" }, "entrypoint": { "description": "Name of the function that will be executed when the function is triggered. Not all deployment plugins support it. Defaults to application name.", "type": "string" }, "build": { "description": "Function application build config used for deployment builds.", "$ref": "#/definitions/FunctionBuild" }, "deploy": { "description": "Function deploy config.", "$ref": "#/definitions/FunctionDeploy" }, "package": { "description": "Function package config.", "$ref": "#/definitions/FunctionPackage" }, "scheduler": { "description": "Function scheduler config.", "$ref": "#/definitions/Scheduler" } } } } ] }, "Needs": { "title": "Needs", "type": "object", "additionalProperties": false, "patternProperties": { "^[_a-zA-Z][a-zA-Z0-9_-]*$": { "oneOf": [ { "type": "null" }, { "type": "object" } ] } } }, "Run": { "title": "Run config", "type": "object", "additionalProperties": true, "properties": { "plugin": { "description": "Run plugin override. Defaults to first supported plugin available.", "type": "string" }, "command": { "description": "Command to be run to for dev mode.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "port": { "description": "Port override, by default just assigns next port starting from listen-port.", "type": "integer" }, "env": { "description": "Additional environment variables available local run.", "type": "object", "additionalProperties": { "type": "string" } } } }, "StaticDeploy": { "title": "Static deploy config", "type": "object", "additionalProperties": true, "properties": { "plugin": { "description": "Deploy plugin override. Defaults to first supported plugin available.", "type": "string" }, "min_scale": { "description": "Minimum scale of container deployment (used if deployment uses a container).", "type": "integer" }, "max_scale": { "description": "Maximum scale of container deployment (used if deployment uses a container).", "type": "integer" }, "timeout": { "description": "Execution timeout. Execution is considered failed and can be terminated if the function is not completed at the end of the timeout period.", "type": "integer" }, "patterns": { "description": "File/dir patterns to exclude (or force include if starts with '!').", "type": "array", "items": { "type": "string" } } } }, "ServiceDeploy": { "title": "Service deploy config", "type": "object", "additionalProperties": true, "properties": { "plugin": { "description": "Deploy plugin override. Defaults to first supported plugin available.", "type": "string" }, "env": { "description": "Additional environment variables.", "type": "object", "additionalProperties": { "type": "string" } }, "cpu_limit": { "description": "CPU limit of container deployment. 1.0 means 1 full core of CPU will be used.", "type": "number" }, "memory_limit": { "description": "Memory limit in MiB of container deployment.", "type": "integer" }, "min_scale": { "description": "Minimum scale of container deployment.", "type": "integer" }, "max_scale": { "description": "Maximum scale of container deployment.", "type": "integer" }, "timeout": { "description": "Execution timeout. Execution is considered failed and can be terminated if the function is not completed at the end of the timeout period.", "type": "integer" }, "container": { "description": "Service application container config used for docker based deployments.", "$ref": "#/definitions/ServiceContainer" } } }, "Scheduler": { "title": "Scheduler config", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "cron" ], "properties": { "cron": { "description": "Scheduler cron, e.g. */30 * * * * runs every 30 minutes.", "type": "string" }, "name": { "description": "Name of cron (just for information purpose).", "type": "string" }, "method": { "description": "HTTP method to use. Defaults to 'GET'.", "type": "string", "enum": [ "GET", "POST", "HEAD", "PUT", "DELETE", "PATCH", "OPTIONS" ] }, "path": { "description": "Path to call in current app url.", "type": "string" }, "headers": { "description": "Additional headers to use for this call.", "type": "object", "additionalProperties": { "type": "string" } } } } }, "FunctionDeploy": { "title": "Function deploy config", "type": "object", "additionalProperties": true, "properties": { "plugin": { "description": "Deploy plugin override. Defaults to first supported plugin available.", "type": "string" }, "env": { "description": "Additional environment variables.", "type": "object", "additionalProperties": { "type": "string" } }, "memory_limit": { "description": "Memory limit in MiB of function deployment.", "type": "integer" }, "min_scale": { "description": "Minimum scale of container deployment (used if deployment uses a container).", "type": "integer" }, "max_scale": { "description": "Maximum scale of container deployment (used if deployment uses a container).", "type": "integer" }, "timeout": { "description": "Execution timeout. Execution is considered failed and can be terminated if the function is not completed at the end of the timeout period.", "type": "integer" } } }, "FunctionPackage": { "title": "Function package config", "type": "object", "additionalProperties": false, "properties": { "patterns": { "description": "Package patterns to exclude (or force include if starts with '!').", "type": "array", "items": { "type": "string" } } } }, "CDN": { "title": "CDN", "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } } }, "StaticBasicAuth": { "title": "Static app basic auth config", "type": "object", "additionalProperties": false, "properties": { "realm": { "description": "Basic auth realm name, defaults to 'restricted'.", "type": "string" }, "users": { "description": "Basic auth users in form of `user: password` where password is either in plain text or in a form of apr1 hash (used by htpasswd).", "type": "object", "additionalProperties": { "type": "string" } } } }, "StaticBuild": { "title": "Build static app", "type": "object", "additionalProperties": false, "properties": { "env": { "description": "Additional environment variables available during build.", "type": "object", "additionalProperties": { "type": "string" } }, "command": { "description": "Command to be run to generate output files.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "dir": { "description": "Output dir to where static files end up.", "type": "string" } } }, "ServiceBuild": { "title": "Service app build definition", "type": "object", "additionalProperties": false, "properties": { "image": { "description": "Docker image to use. If specified, will try to pull this image if skip-build is enabled.", "type": "string" }, "skip_build": { "description": "Skip this image build phase. If enabled, requires image to be either present on docker host or custom image to be possible to pull.", "type": "boolean" }, "skip_pull": { "description": "Skip this image dependencies pull phase. As a result, doesn't check for newer versions of tagged dependencies. Useful if dependencies do not exist outside of local docker.", "type": "boolean" }, "build_args": { "description": "Docker build-args.", "type": "object", "additionalProperties": { "type": "string" } }, "context": { "description": "Docker context directory, relative to application dir.", "type": "string" }, "dockerfile": { "description": "Dockerfile to use, relative to context path. Defaults to 'Dockerfile'.", "type": "string" } } }, "FunctionBuild": { "title": "Build function app", "type": "object", "additionalProperties": false, "properties": { "env": { "description": "Additional environment variables available during build.", "type": "object", "additionalProperties": { "type": "string" } }, "command": { "description": "Command to be run to generate output files.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "dir": { "description": "Output dir to where built files end up.", "type": "string" } } }, "ServiceContainer": { "title": "Service app container definition", "type": "object", "additionalProperties": false, "properties": { "port": { "description": "Docker container port to use.", "type": "integer" }, "command": { "description": "Docker command (CMD) to override.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "entrypoint": { "description": "Docker entrypoint (ENTRYPOINT) to override.", "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] } } } } }
schema-app
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactReusedEvent", "extendsJavaClass": "com.ericsson.eiffel.semantics.events.Event", "properties": { "meta": { "type": "object", "javaType": "com.ericsson.eiffel.semantics.events.EiffelArtifactReusedEventMeta", "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": [ "EiffelArtifactReusedEvent" ] }, "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.EiffelArtifactReusedEventData", "properties": { "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 }
o89728
{ "title": "Schema for JSON-LD", "$schema": "http://json-schema.org/draft-04/schema#", "self": { "vendor": "io.mediachain", "name": "jsonld", "format": "jsonschema", "version": "1-0-0" }, "definitions": { "context": { "additionalProperties": true, "properties": { "@context": { "description": "Used to define the short-hand names that are used throughout a JSON-LD document.", "type": [ "object", "string", "array", "null" ] } } }, "graph": { "additionalProperties": true, "properties": { "@graph": { "description": "Used to express a graph.", "type": [ "array", "object" ], "additionalItems": { "anyOf": [ { "$ref": "#/definitions/common" } ] } } } }, "common": { "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/common" } ] }, "properties": { "@id": { "description": "Used to uniquely identify things that are being described in the document with IRIs or blank node identifiers.", "type": "string", "format": "uri" }, "@value": { "description": "Used to specify the data that is associated with a particular property in the graph.", "type": [ "string", "boolean", "number", "null" ] }, "@language": { "description": "Used to specify the language for a particular string value or the default language of a JSON-LD document.", "type": [ "string", "null" ] }, "@type": { "description": "Used to set the data type of a node or typed value.", "type": [ "string", "null", "array" ] }, "@container": { "description": "Used to set the default container type for a term.", "type": [ "string", "null" ], "enum": [ "@list", "@index", "@set" ] }, "@list": { "description": "Used to express an ordered set of data." }, "@set": { "description": "Used to express an unordered set of data and to ensure that values are always represented as arrays." }, "@reverse": { "description": "Used to express reverse properties.", "type": [ "string", "object", "null" ], "additionalProperties": { "anyOf": [ { "$ref": "#/definitions/common" } ] } }, "@base": { "description": "Used to set the base IRI against which relative IRIs are resolved", "type": [ "string", "null" ], "format": "uri" }, "@vocab": { "description": "Used to expand properties and values in @type with a common prefix IRI", "type": [ "string", "null" ], "format": "uri" } } } }, "allOf": [ { "$ref": "#/definitions/context" }, { "$ref": "#/definitions/graph" }, { "$ref": "#/definitions/common" } ], "type": [ "object", "array" ], "additionalProperties": true }
o60170
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "description": "JSON schema for a user.", "properties": { "$schema": { "default": "https://ils.rero.ch/schemas/patrons/patron-v0.0.1.json", "description": "Schema to validate user records against.", "minLength": 9, "title": "Schema", "type": "string" }, "barcode": { "form": { "expressionProperties": { "templateOptions.required": "model.roles.some(v => v === 'patron')" }, "hideExpression": "!model.roles.some(v => v === 'patron')", "validation": { "messages": { "alreadyTakenMessage": "The barcode is already taken." }, "validators": { "valueAlreadyExists": {} } } }, "minLength": 6, "title": "Patron's barcode or card number", "type": "string" }, "birth_date": { "_format": "date", "form": { "placeholder": "Example: 1985-12-29", "validation": { "messages": { "patternMessage": "Should be in the following format: 2022-12-31 (YYYY-MM-DD)." } } }, "pattern": "\\d{4}-((0[1-9])|(1[0-2]))-(((0[1-9])|[1-2][0-9])|(3[0-1]))$", "title": "Date of birth", "type": "string" }, "blocked": { "description": "A patron with a blocked account cannot request and borrow items, but can still renew and check in items.", "title": "Blocking", "type": "boolean" }, "blocked_note": { "description": "The reason is displayed in the circulation module and is visible by the patron in his account.", "form": { "expressionProperties": { "templateOptions.required": "model.blocked === true" }, "hideExpression": "field.model.blocked !== true" }, "title": "Reason", "type": "string" }, "city": { "minLength": 3, "title": "City", "type": "string" }, "communication_channel": { "enum": [ "email", "mail" ], "form": { "expressionProperties": { "templateOptions.required": "model.roles.some(v => v === 'patron')" }, "hideExpression": "!model.roles.some(v => v === 'patron')", "options": [ { "label": "email", "value": "email" }, { "label": "mail", "value": "mail" } ] }, "title": "Communication channel", "type": "string" }, "communication_language": { "enum": [ "ger", "eng", "fre", "ita" ], "form": { "expressionProperties": { "templateOptions.required": "model.roles.some(v => v === 'patron')" }, "hideExpression": "!model.roles.some(v => v === 'patron')", "options": [ { "label": "French", "value": "fre" }, { "label": "English", "value": "eng" }, { "label": "German", "value": "ger" }, { "label": "Italian", "value": "ita" } ] }, "title": "Communication language", "type": "string" }, "email": { "_format": "email", "form": { "validation": { "messages": { "alreadyTakenMessage": "This email is already taken.", "patternMessage": "Email should have at least one <code>@</code> and one <code>.</code>." }, "validators": { "valueAlreadyExists": { "remoteRecordType": "patrons/count", "term": "email" } } } }, "minLength": 6, "pattern": "^.*@.*\\..*$", "title": "Email", "type": "string" }, "first_name": { "form": { "focus": true }, "minLength": 2, "title": "First name", "type": "string" }, "last_name": { "minLength": 2, "title": "Last name", "type": "string" }, "library": { "description": "Library affiliation.", "form": { "expressionProperties": { "templateOptions.required": "field.parent.model.roles.some(v => (v === 'librarian' || v === 'system_librarian'))" }, "fieldMap": "library", "hideExpression": "!field.parent.model.roles.some(v => (v === 'librarian' || v === 'system_librarian'))" }, "properties": { "$ref": { "form": { "remoteOptions": { "type": "libraries" } }, "pattern": "^https://ils.rero.ch/api/libraries/.*?$", "title": "Library URI", "type": "string" } }, "required": [ "$ref" ], "title": "Library", "type": "object" }, "patron_type": { "description": "Patron type in terms of circulation policy.", "form": { "expressionProperties": { "templateOptions.required": "field.parent.model.roles.some(v => v === 'patron')" }, "hideExpression": "!field.parent.model.roles.some(v => v === 'patron')" }, "properties": { "$ref": { "form": { "remoteOptions": { "type": "patron_types" } }, "pattern": "^https://ils.rero.ch/api/patron_types/.*?$", "title": "Patron Type URI", "type": "string" } }, "required": [ "$ref" ], "title": "Patron Type", "type": "object" }, "phone": { "description": "Phone number with the international prefix, without spaces.", "form": { "placeholder": "Example: +41791231212", "validation": { "messages": { "patternMessage": "Phone number with the international prefix, without spaces, ie +41221234567." } } }, "pattern": "^\\+[0-9]*$", "title": "Phone number", "type": "string" }, "pid": { "title": "User ID", "type": "string" }, "postal_code": { "minLength": 4, "title": "Postal code", "type": "string" }, "roles": { "default": [ "patron" ], "description": "Define the roles of the user.", "form": { "fieldMap": "roles" }, "items": { "enum": [ "patron", "librarian", "system_librarian" ], "form": { "options": [ { "label": "Patron", "value": "patron" }, { "label": "Librarian", "value": "librarian" }, { "label": "System Librarian", "value": "system_librarian" } ] }, "type": "string" }, "maxItems": 3, "minItems": 1, "title": "Role", "type": "array", "_uniqueItems": true }, "street": { "description": "Street and number of the address, separated by a coma.", "minLength": 3, "title": "Street", "type": "string" }, "subscriptions": { "items": { "properties": { "end_date": { "_format": "date", "description": "The subscription end date (selected date excluded).", "pattern": "\\d{4}-((0[1-9])|(1[0-2]))-(((0[1-9])|[1-2][0-9])|(3[0-1]))$", "title": "Subscription end date", "type": "string" }, "patron_transaction": { "properties": { "$ref": { "pattern": "^https://ils.rero.ch/api/patron_transactions/.*?$", "title": "Patron transaction URI", "type": "string" } }, "required": [ "$ref" ], "title": "Patron transaction", "type": "object" }, "patron_type": { "properties": { "$ref": { "pattern": "^https://ils.rero.ch/api/patron_types/.*?$", "title": "Patron Type URI", "type": "string" } }, "required": [ "$ref" ], "title": "Patron type", "type": "object" }, "start_date": { "_format": "date", "description": "The subscription start date (selected date included).", "pattern": "\\d{4}-((0[1-9])|(1[0-2]))-(((0[1-9])|[1-2][0-9])|(3[0-1]))$", "title": "Subscription start date", "type": "string" } }, "required": [ "start_date", "end_date", "patron_type", "patron_transaction" ], "title": "Subscription", "type": "object" }, "minItems": 1, "title": "Subscriptions", "type": "array" } }, "propertiesOrder": [ "first_name", "last_name", "birth_date", "email", "street", "postal_code", "city", "phone", "roles", "barcode", "patron_type", "communication_channel", "communication_language", "library", "blocked", "blocked_note" ], "required": [ "$schema", "pid", "first_name", "last_name", "birth_date", "email", "roles" ], "title": "user", "type": "object" }
o69976