json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"facilitytype": {
"type": "string"
}
},
"required": [
"facilitytype"
]
}
} | o91099 |
{
"additionalProperties": true,
"properties": {
"body": {
"additionalProperties": true,
"properties": {
"push_id": {
"_format": "uuid",
"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": "RICH_DELETE",
"vendor": "com.urbanairship.connect",
"version": "1-0-0"
},
"type": "object"
} | sp_394_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"def": {
"type": "string"
}
},
"type": "object",
"patternProperties": {
"^abc.+$": {
"type": "string"
}
}
} | o27031 |
{
"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 for which area needs to be calculated, e.g. circle, rectangle",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_aaae03ed |
{
"$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",
"description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist or auto."
},
"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
},
"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\"."
},
"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."
},
"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"
}
}
}
} | o43018 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": {
"description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace",
"properties": {
"name": {
"description": "Name is unique within a namespace to reference a secret resource.",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within which the secret name must be unique.",
"type": "string"
}
},
"type": "object"
}
},
"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",
"null"
]
},
"image": {
"description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": [
"string",
"null"
]
},
"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",
"null"
]
},
"monitors": {
"description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"secretRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference",
"description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it"
},
"user": {
"description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
"type": [
"string",
"null"
]
}
},
"required": [
"monitors",
"image"
],
"type": "object"
} | kb_791_Normalized |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference": {
"description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.",
"properties": {
"apiVersion": {
"description": "API version of the referent",
"type": "string"
},
"kind": {
"description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"",
"type": "string"
},
"name": {
"description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource": {
"description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus": {
"description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy": {
"description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.",
"properties": {
"periodSeconds": {
"_format": "int32",
"description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).",
"type": "integer"
},
"type": {
"description": "Type is used to specify the scaling policy.",
"type": "string"
},
"value": {
"_format": "int32",
"description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero",
"type": "integer"
}
},
"required": [
"type",
"value",
"periodSeconds"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules": {
"description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.",
"properties": {
"policies": {
"description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy"
},
"type": "array"
},
"selectPolicy": {
"description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.",
"type": "string"
},
"stabilizationWindowSeconds": {
"_format": "int32",
"description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).",
"type": "integer"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": {
"description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).",
"properties": {
"scaleDown": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)."
},
"scaleUp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HPAScalingRules",
"description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": {
"description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastTransitionTime is the last time the condition transitioned from one status to another"
},
"message": {
"description": "message is a human-readable explanation containing details about the transition",
"type": "string"
},
"reason": {
"description": "reason is the reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "status is the status of the condition (True, False, Unknown)",
"type": "string"
},
"type": {
"description": "type describes the current condition",
"type": "string"
}
},
"required": [
"type",
"status"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": {
"description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.",
"properties": {
"behavior": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior",
"description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used."
},
"maxReplicas": {
"_format": "int32",
"description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.",
"type": "integer"
},
"metrics": {
"description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec"
},
"type": "array"
},
"minReplicas": {
"_format": "int32",
"description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.",
"type": "integer"
},
"scaleTargetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference",
"description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
}
},
"required": [
"scaleTargetRef",
"maxReplicas"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": {
"description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.",
"properties": {
"conditions": {
"description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition"
},
"type": "array"
},
"currentMetrics": {
"description": "currentMetrics is the last read state of the metrics used by this autoscaler.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricStatus"
},
"type": "array"
},
"currentReplicas": {
"_format": "int32",
"description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
"type": "integer"
},
"desiredReplicas": {
"_format": "int32",
"description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
"type": "integer"
},
"lastScaleTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed."
},
"observedGeneration": {
"_format": "int64",
"description": "observedGeneration is the most recent generation observed by this autoscaler.",
"type": "integer"
}
},
"required": [
"currentReplicas",
"desiredReplicas",
"conditions"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier": {
"description": "MetricIdentifier defines the name and optionally selector for a metric",
"properties": {
"name": {
"description": "name is the name of the given metric",
"type": "string"
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics."
}
},
"required": [
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricSpec": {
"description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricSource",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricStatus": {
"description": "MetricStatus describes the last-read state of a single metric.",
"properties": {
"external": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus",
"description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)."
},
"object": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus",
"description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)."
},
"pods": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricStatus",
"description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value."
},
"resource": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus",
"description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source."
},
"type": {
"description": "type is the type of metric source. It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget": {
"description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
"properties": {
"averageUtilization": {
"_format": "int32",
"description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type",
"type": "integer"
},
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)"
},
"type": {
"description": "type represents whether the metric type is Utilization, Value, or AverageValue",
"type": "string"
},
"value": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "value is the target value of the metric (as a quantity)."
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus": {
"description": "MetricValueStatus holds the current value for a metric",
"properties": {
"averageUtilization": {
"_format": "int32",
"description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"type": "integer"
},
"averageValue": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)"
},
"value": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity",
"description": "value is the current value of the metric (as a quantity)."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricSource": {
"description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"describedObject": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"describedObject",
"target",
"metric"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus": {
"description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"describedObject": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current",
"describedObject"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricSource": {
"description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
"properties": {
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"metric",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_PodsMetricStatus": {
"description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"metric": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier",
"description": "metric identifies the target metric by name and selector"
}
},
"required": [
"metric",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricSource": {
"description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.",
"properties": {
"name": {
"description": "name is the name of the resource in question.",
"type": "string"
},
"target": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget",
"description": "target specifies the target value for the given metric"
}
},
"required": [
"name",
"target"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus": {
"description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.",
"properties": {
"current": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus",
"description": "current contains the current value for the given metric"
},
"name": {
"description": "Name is the name of the resource in question.",
"type": "string"
}
},
"required": [
"name",
"current"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"HorizontalPodAutoscaler"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec",
"description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status."
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus",
"description": "status is the current information about the autoscaler."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "autoscaling",
"kind": "HorizontalPodAutoscaler",
"version": "v2beta2"
}
]
} | kb_392_Normalized |
{
"properties": {
"active": {
"type": "boolean"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"downloaded_at": {
"format": "date-time",
"type": "string"
},
"external_id": {
"type": "string"
},
"id": {
"type": "integer"
},
"locked_at": {
"format": "date-time",
"type": "string"
},
"name": {
"maxLength": 255,
"type": "string"
},
"ready_to_assess_at": {
"format": "date-time",
"type": "string"
},
"still_assessing_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"id",
"name"
],
"title": "DirectAwardProject",
"type": "object"
} | o21089 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base length of a triangle",
"type": "number"
},
"height": {
"description": "The height of a triangle",
"type": "number"
},
"radius": {
"description": "The radius of a circle",
"type": "number"
},
"side": {
"description": "The side length of a square",
"type": "number"
}
},
"required": [
"radius",
"side",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_e73f4e16 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"compilationOptions": {
"type": "object",
"properties": {
"define": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"warningsAsErrors": {
"type": "boolean",
"default": false
},
"allowUnsafe": {
"type": "boolean",
"default": false
},
"optimize": {
"type": "boolean",
"default": false
},
"languageVersion": {
"type": "string",
"enum": [
"csharp1",
"csharp2",
"csharp3",
"csharp4",
"csharp5",
"csharp6",
"experimental"
]
},
"keyFile": {
"type": "string"
},
"delaySign": {
"type": "boolean",
"default": false
},
"strongName": {
"type": "boolean",
"default": false
}
}
},
"configType": {
"type": "object",
"properties": {
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"frameworkAssemblies": {
"$ref": "#/definitions/dependencies"
}
}
},
"dependencies": {
"type": "object",
"additionalProperties": {
"type": ["string", "object"],
"properties": {
"version": {
"type": "string"
},
"type": {
"type": "string",
"default": "default",
"enum": ["default", "build"]
}
}
}
},
"script": {
"type": ["string", "array"],
"items": {
"type": "string"
},
"description": "A command line script or scripts.\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - The project version"
}
},
"id": "https://json.schemastore.org/project-1.0.0-beta6.json",
"properties": {
"authors": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"bundleExclude": {
"description": "List of files to exclude from publish output (kpm bundle).",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ""
},
"code": {
"description": "Glob pattern to specify all the code files that needs to be compiled. (data type: string or array with glob pattern(s)). Example: [ \"Folder1\\*.cs\", \"Folder2\\*.cs\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "**\\*.cs"
},
"commands": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
},
"configurations": {
"type": "object",
"description": "Configurations are named groups of compilation settings. There are 2 defaults built into the runtime namely 'Debug' and 'Release'.",
"additionalProperties": {
"type": "object",
"properties": {
"compilationOptions": {
"$ref": "#/definitions/compilationOptions"
}
}
}
},
"dependencies": {
"$ref": "#/definitions/dependencies"
},
"copyright": {
"description": "Copyright details for the package",
"type": "string"
},
"iconUrl": {
"description": "A URL for the image to use as the icon for the package. This should be a 32x32-pixel .png file that has a transparent background.",
"type": "string"
},
"licenseUrl": {
"description": "A link to the license that the package is under",
"type": "string"
},
"requireLicenseAcceptance": {
"description": "A Boolean value that specifies whether the client needs to ensure that the package license (described by licenseUrl) is accepted before the package is installed.",
"type": "boolean",
"default": false
},
"owners": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"projectUrl": {
"description": "A URL for the home page of the package",
"type": "string"
},
"summary": {
"description": "A short description of the package",
"type": "string"
},
"tags": {
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"title": {
"description": "The human-friendly title of the package",
"type": "string"
},
"releaseNotes": {
"description": "A description of the changes made in each release of the package.",
"type": "string"
},
"language": {
"description": "The locale ID for the package, such as en-us.",
"type": "string"
},
"description": {
"description": "The description of the application",
"type": "string"
},
"exclude": {
"description": "Glob pattern to indicate all the code files to be excluded from compilation. (data type: string or array with glob pattern(s)).",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": ["bin/**/*.*", "obj/**/*.*"]
},
"frameworks": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/configType"
}
},
"namedResource": {
"type": "object",
"description": "Overrides the generated resource names with custom ones.",
"additionalProperties": {
"type": "string"
}
},
"preprocess": {
"description": "Glob pattern to indicate all the code files to be preprocessed. (data type: string with glob pattern).",
"type": "string",
"default": "Compiler\\Preprocess\\**\\*.cs"
},
"repository": {
"type": "object",
"description": "Contains information about the repository where the project is stored.",
"properties": {
"type": {
"type": "string",
"enum": ["git"],
"default": "git"
}
},
"additionalProperties": {
"type": "string"
}
},
"resources": {
"description": "Glob pattern to indicate all the files that need to be compiled as resources.",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "Compiler\\Resources\\**\\*.cs"
},
"scripts": {
"type": "object",
"description": "Scripts to execute during the various stages.",
"properties": {
"prepack": {
"$ref": "#/definitions/script"
},
"postpack": {
"$ref": "#/definitions/script"
},
"prebundle": {
"$ref": "#/definitions/script"
},
"postbundle": {
"$ref": "#/definitions/script"
},
"prerestore": {
"$ref": "#/definitions/script"
},
"postrestore": {
"$ref": "#/definitions/script"
},
"prepare": {
"$ref": "#/definitions/script"
}
}
},
"shared": {
"description": "Glob pattern to specify the code files to share with dependent projects. Example: [ \"Folder1\\*.cs\", \"Folder2\\*.cs\" ]",
"type": ["string", "array"],
"items": {
"type": "string"
},
"default": "Compiler\\Shared\\**\\*.cs"
},
"version": {
"description": "The version of the project/package. Examples: 1.2.3, 1.2.3-beta, 1.2.3-*",
"type": "string"
},
"webroot": {
"description": "Specifying the webroot property in the project.json file specifies the web server root (aka public folder). In visual studio, this folder will be used to root IIS. Static files should be put in here.",
"type": "string"
}
},
"title": "JSON schema for ASP.NET project.json files",
"type": "object"
}
| project-1 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body_html_and_govspeak": {
"anyOf": [
{
"type": "string"
}
],
"description": "The main content provided as HTML with the govspeak markdown it's rendered from"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"external_related_links": {
"$ref": "#/definitions/external_related_links"
},
"nodes": {
"description": "List of nodes consisting of questions and answers",
"items": {
"additionalProperties": false,
"description": "A node represents either a question or an answer and results in a renderable page",
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"kind": {
"enum": [
"question",
"outcome"
]
},
"options": {
"description": "Contains references to other nodes",
"items": {
"additionalProperties": false,
"description": "An option represents a possible answer a user can select which links to another node",
"properties": {
"label": {
"type": "string"
},
"next_node": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"label",
"slug",
"next_node"
],
"type": "object"
},
"type": "array"
},
"slug": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"kind",
"slug",
"title"
],
"type": "object"
},
"type": "array"
},
"start_button_text": {
"$ref": "#/definitions/start_button_text"
}
},
"required": [
"start_button_text"
],
"type": "object"
},
"external_link": {
"additionalProperties": false,
"properties": {
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"title",
"url"
],
"type": "object"
},
"external_related_links": {
"items": {
"$ref": "#/definitions/external_link"
},
"type": "array"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"start_button_text": {
"description": "Custom text to be displayed on the green button that takes you to another page",
"type": "string"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"simple_smart_answer"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"simple_smart_answer"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21367 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": {
"description": "ObjectReference contains enough information to let you inspect or modify the referred object.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"fieldPath": {
"description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.",
"type": "string"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
"type": "string"
},
"namespace": {
"description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/",
"type": "string"
},
"resourceVersion": {
"description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_Endpoint": {
"description": "Endpoint represents a single logical \"backend\" implementing a service.",
"properties": {
"addresses": {
"description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-list-type": "set"
},
"conditions": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointConditions",
"description": "conditions contains information about the current status of the endpoint."
},
"hostname": {
"description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must pass DNS Label (RFC 1123) validation.",
"type": "string"
},
"targetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
},
"topology": {
"additionalProperties": {
"type": "string"
},
"description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n where the endpoint is located. This should match the corresponding\n node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n endpoint is located. This should match the corresponding node label.",
"type": "object"
}
},
"required": [
"addresses"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointConditions": {
"description": "EndpointConditions represents the current condition of an endpoint.",
"properties": {
"ready": {
"description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready.",
"type": "boolean"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointPort": {
"description": "EndpointPort represents a Port used by an EndpointSlice",
"properties": {
"appProtocol": {
"description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.",
"type": "string"
},
"name": {
"description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.",
"type": "integer"
},
"protocol": {
"description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointSlice": {
"description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
"properties": {
"addressType": {
"description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.",
"type": "string"
},
"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"
},
"endpoints": {
"description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_Endpoint"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"enum": [
"EndpointSlice"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta",
"description": "Standard object's metadata."
},
"ports": {
"description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointPort"
},
"type": "array",
"x-kubernetes-list-type": "atomic"
}
},
"required": [
"addressType",
"endpoints"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "discovery.k8s.io",
"kind": "EndpointSlice",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"description": "EndpointSliceList represents a list of endpoint slices",
"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": [
"discovery.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"description": "List of endpoint slices",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_discovery_v1beta1_EndpointSlice"
},
"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": [
"EndpointSliceList"
],
"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."
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "discovery.k8s.io",
"kind": "EndpointSliceList",
"version": "v1beta1"
}
]
} | kb_310_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
},
"type": {
"type": "string",
"enum": [
"EiffelIssueDefinedEvent"
]
},
"version": {
"type": "string",
"enum": [
"1.0.0"
],
"default": "1.0.0"
},
"time": {
"type": "integer"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"source": {
"type": "object",
"properties": {
"domainId": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"serializer": {
"type": "object",
"properties": {
"groupId": {
"type": "string"
},
"artifactId": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"groupId",
"artifactId",
"version"
],
"additionalProperties": false
},
"uri": {
"type": "string"
}
},
"additionalProperties": false
},
"security": {
"type": "object",
"properties": {
"sdm": {
"type": "object",
"properties": {
"authorIdentity": {
"type": "string"
},
"encryptedDigest": {
"type": "string"
}
},
"required": [
"authorIdentity",
"encryptedDigest"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"BUG",
"IMPROVEMENT",
"FEATURE",
"WORK_ITEM",
"REQUIREMENT",
"OTHER"
]
},
"tracker": {
"type": "string"
},
"id": {
"type": "string"
},
"uri": {
"type": "string"
},
"title": {
"type": "string"
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"required": [
"type",
"tracker",
"id",
"uri"
],
"additionalProperties": false
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"target": {
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
}
},
"required": [
"type",
"target"
],
"additionalProperties": false
}
}
}
} | o5375 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items on the invoice",
"items": {
"properties": {
"price": {
"description": "The price of the product",
"type": "number"
},
"product": {
"description": "The name of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | create_invoice_326ab00f |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudget": {
"description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection 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"
},
"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": [
"PodDisruptionBudget"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec",
"description": "Specification of the desired behavior of the PodDisruptionBudget."
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus",
"description": "Most recently observed status of the PodDisruptionBudget."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "policy",
"kind": "PodDisruptionBudget",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec": {
"description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
"properties": {
"maxUnavailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"."
},
"minAvailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"."
},
"selector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "Label query over pods whose evictions are managed by the disruption budget."
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus": {
"description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.",
"properties": {
"currentHealthy": {
"_format": "int32",
"description": "current number of healthy pods",
"type": "integer"
},
"desiredHealthy": {
"_format": "int32",
"description": "minimum desired number of healthy pods",
"type": "integer"
},
"disruptedPods": {
"additionalProperties": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time"
},
"description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.",
"type": "object"
},
"disruptionsAllowed": {
"_format": "int32",
"description": "Number of pod disruptions that are currently allowed.",
"type": "integer"
},
"expectedPods": {
"_format": "int32",
"description": "total number of pods counted by this disruption budget",
"type": "integer"
},
"observedGeneration": {
"_format": "int64",
"description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.",
"type": "integer"
}
},
"required": [
"disruptionsAllowed",
"currentHealthy",
"desiredHealthy",
"expectedPods"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.",
"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": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_PodDisruptionBudget"
},
"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": [
"PodDisruptionBudgetList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "policy",
"kind": "PodDisruptionBudgetList",
"version": "v1beta1"
}
]
} | kb_696_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {},
"properties": {
"category": {
"description": "Category of licence",
"enum": [
"Financial",
"Business"
],
"type": "string"
},
"company_jurisdiction": {
"description": "Jurisdiction where company is based",
"minLength": 1,
"type": "string"
},
"company_name": {
"description": "Name of the company holding the licence",
"minLength": 1,
"type": "string"
},
"confidence": {
"description": "Confidence in accuracy of data",
"enum": [
"HIGH",
"MEDIUM",
"LOW"
],
"type": "string"
},
"end_date": {
"_format": "date",
"type": "string"
},
"jurisdiction_classification": {
"description": "Description of how regulator classifies licence",
"type": [
"string",
"array"
]
},
"licence_jurisdiction": {
"description": "Jurisdiction for which licence is issued",
"minLength": 1,
"type": "string"
},
"licence_number": {
"description": "Licence number or code",
"type": "string"
},
"regulator": {
"description": "The regulating body that issued the licence",
"type": "string"
},
"retrieved_at": {
"_format": "date",
"type": "string"
},
"sample_date": {
"_format": "date",
"description": "Date on which this fact was known to be true",
"type": "string"
},
"source_url": {
"description": "Place where this fact can be verified",
"minLength": 1,
"type": "string"
},
"start_date": {
"_format": "date",
"type": "string"
},
"status": {
"description": "Status of the licence",
"type": "string"
}
},
"required": [
"source_url",
"sample_date",
"company_name",
"company_jurisdiction"
],
"type": "object"
} | o65427 |
{
"properties": {
"items": {
"items": {
"properties": {
"discount": {
"description": "The percentage of discount for the item",
"type": "number"
},
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
}
},
"required": [
"name",
"price",
"discount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
} | calculate_discounted_total_8ebaa9f0 |
{
"$comment": "https://probot.github.io/apps/stale/",
"$ref": "#/definitions/configuration",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"configuration": {
"properties": {
"daysUntilStale": {
"title": "Days Until Stale",
"description": "Number of days of inactivity before an Issue or Pull Request becomes stale.",
"type": "number",
"default": 60
},
"daysUntilClose": {
"title": "Days Until Close",
"description": "Number of days of inactivity before an Issue or Pull Request with the stale label is closed.",
"type": ["integer", "boolean"],
"default": 7
},
"onlyLabels": {
"title": "Only Labels",
"description": "Only issues or pull requests with all of these labels are check if stale.",
"type": "array",
"items": {
"title": "Label",
"type": "string"
},
"default": []
},
"exemptLabels": {
"title": "Exempt Labels",
"description": "Issues or Pull Requests with these labels will never be considered stale.",
"type": "array",
"items": {
"title": "Label",
"type": "string"
},
"default": []
},
"exemptProjects": {
"title": "Exempt Projects",
"description": "Set to true to ignore issues in a milestone.",
"type": "boolean",
"default": false
},
"exemptAssignees": {
"title": "Exempt Assignees",
"description": "Set to true to ignore issues with an assignee.",
"type": "boolean",
"default": false
},
"staleLabel": {
"title": "Stale Label",
"description": "Label to use when marking as stale.",
"type": "string",
"default": "wontfix"
},
"markComment": {
"title": "Mark Comment",
"description": "Comment to post when marking as stale.",
"type": ["string", "boolean"],
"default": "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
},
"unmarkComment": {
"title": "Unmark Comment",
"description": "Comment to post when removing the stale label.",
"type": ["string", "boolean"]
},
"closeComment": {
"title": "Closed Comment",
"description": "Comment to post when closing a stale issue or pull request.",
"type": ["string", "boolean"]
},
"limitPerRun": {
"title": "Limit Per Run",
"description": "Limit the number of actions per hour.",
"type": "number",
"minimum": 1,
"maximum": 30,
"default": 30
},
"only": {
"title": "Only",
"description": "Limit to only issues or pulls requests.",
"enum": ["issues", "pulls"]
}
}
}
},
"description": "A GitHub app that closes abandoned issues and pull requests",
"id": "https://json.schemastore.org/stale.json",
"properties": {
"pulls": {
"title": "Pulls",
"description": "Specify configuration settings that are specific to pull requests.",
"$ref": "#/definitions/configuration"
},
"issues": {
"title": "Issues",
"description": "Specify configuration settings that are specific to issues.",
"$ref": "#/definitions/configuration"
}
},
"type": "object"
}
| stale |
{
"description": "description 1",
"properties": {
"inlineTemplate": {
"alias": "t",
"default": false,
"description": "When true, includes template inline in the component.ts file. By default, an external template file is created and referenced in the component.ts file.",
"type": "boolean"
},
"module": {
"alias": "m",
"description": "The declaring NgModule.",
"type": "string"
},
"name": {
"$default": {
"$source": "argv",
"index": 0
},
"description": "The name of the component.",
"type": "string",
"x-prompt": "What name would you like to use for the component?"
},
"path": {
"description": "The path at which to create the component file, relative to the current workspace. Default is a folder with the same name as the component in the project root.",
"format": "path",
"type": "string",
"visible": false
},
"project": {
"$default": {
"$source": "projectName"
},
"description": "The name of the project.",
"type": "string"
}
},
"required": [
"name"
],
"title": "title 1",
"type": "object"
} | o83771 |
{
"properties": {
"customer_id": {
"description": "The ID of the customer",
"type": "string"
},
"items": {
"description": "The items purchased by the customer",
"items": {
"properties": {
"product_id": {
"description": "The ID of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product_id",
"quantity"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_id",
"items"
],
"type": "object"
} | generate_invoice_ba3ceb96 |
{
"properties": {
"destination": {
"description": "The destination of the package",
"type": "string"
},
"dimensions": {
"properties": {
"height": {
"description": "The height of the package in inches",
"type": "number"
},
"length": {
"description": "The length of the package in inches",
"type": "number"
},
"width": {
"description": "The width of the package in inches",
"type": "number"
}
},
"required": [
"length",
"width",
"height"
],
"type": "object"
},
"weight": {
"description": "The weight of the package in pounds",
"type": "number"
}
},
"required": [
"weight",
"dimensions",
"destination"
],
"type": "object"
} | calculate_shipping_cost_30c6da0b |
{
"properties": {
"DatasetsUUID": {
"items": {
"type": "string"
},
"type": "array"
},
"NewDatasetID": {
"type": "number"
},
"version": {
"type": "string"
}
},
"type": "object",
"version": "0.01"
} | o48513 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://schemas.digitallinguistics.io/Transcription-2.1.0.json",
"title": "Transcription",
"type": "object",
"description": "A transcription of a piece of data in a language, optionally in multiple orthographies. For example, a transcription might be written in both a practical orthography and IPA. Each key must be the abbreviation for an orthography (see the [Abbreviation](https://spec.digitallinguistics.github.io/schemas/Abbreviation.html) schema), and the value for that key is the transcription of the data in that particular orthography. **Note:** The Transcription does not have a `type` property.",
"additionalProperties": false,
"patternProperties": {
"^[(a-z)|(A-Z)|(0-9)]+$": {
"title": "Text",
"type": "string",
"description": "The transcription for the specified orthography"
}
},
"examples": [
{
"APA": "wetks\u030c",
"IPA": "wetk\u0283",
"Mod": "wetkx",
"Swad": "wetks\u030c"
}
]
} | o36272 |
{
"properties": {
"date_range": {
"description": "The date range for the news articles",
"properties": {
"end_date": {
"description": "The end date for the news articles",
"type": "string"
},
"start_date": {
"description": "The start date for the news articles",
"type": "string"
}
},
"type": "object"
},
"keywords": {
"description": "The keywords to search for in news articles",
"items": {
"type": "string"
},
"type": "array"
},
"topic": {
"description": "The topic of news articles to search for",
"type": "string"
}
},
"required": [
"keywords"
],
"type": "object"
} | search_news_7a302342 |
{
"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",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The shape to calculate the area",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_3d4b35ef |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"SettingsLanguage": {
"enum": [
"cs-CZ",
"de-DE",
"en-US",
"es-ES",
"fr-FR",
"it-IT",
"ja-JP",
"ko-KR",
"pl-PL",
"pt-BR",
"ro-RO",
"ru-RU",
"sr-SP",
"uk-UA",
"vi-VN",
"zh-CN"
],
"type": "string"
},
"SettingsTheme": {
"enum": [
"dark",
"dracula",
"light",
"system"
],
"type": "string"
}
},
"properties": {
"addQueryDepthLimit": {
"description": "Specifies how deep the 'Add query' functionality would go",
"type": "number"
},
"alert.disableWarnings": {
"description": "Specifies if warning alerts should be disabled",
"type": "boolean"
},
"disablePushNotification": {
"description": "Specifies if the push notifications should be disabled",
"type": "boolean"
},
"enableExperimental": {
"description": "Enable experimental features in Altair.\nNote: The features might be unstable.",
"type": "boolean"
},
"historyDepth": {
"description": "Specifies the number of items allowed in the history pane",
"type": "number"
},
"language": {
"$ref": "#/definitions/SettingsLanguage",
"description": "Specifies the language e.g. 'en-US', 'fr-FR', 'ru-RU', etc"
},
"plugin.list": {
"description": "Specifies a list of enabled plugins (requires enableExperimental to be true)",
"items": {
"type": "string"
},
"type": "array"
},
"request.withCredentials": {
"description": "Specifies if requests should be sent with credentials (with cookies) or not",
"type": "boolean"
},
"schema.reloadOnStart": {
"description": "Specifies if the schema should be reloaded when the app starts",
"type": "boolean"
},
"tabSize": {
"description": "Specifies the tab size in the editor",
"type": "number"
},
"theme": {
"$ref": "#/definitions/SettingsTheme",
"description": "Specifies the theme\nOptions: 'light', 'dark', 'dracula'"
},
"theme.editorFontFamily": {
"description": "Specifies the font family for the editors",
"type": "string"
},
"theme.editorFontSize": {
"description": "Specifies the font size for the editors",
"type": "number"
},
"theme.fontsize": {
"description": "Specifies the base font size\n(Default size - 24)",
"type": "number"
}
},
"type": "object"
} | o47261 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "cloud-init plugin manifest",
"type": "object",
"properties": {
"system": {
"type": "object",
"properties": {
"release": {
"type": "string",
"enum": [
"wheezy",
"stable",
"jessie",
"testing",
"sid",
"unstable"
]
}
}
},
"plugins": {
"type": "object",
"properties": {
"cloud_init": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"disable_modules": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"metadata_sources": {
"type": "string"
}
},
"required": [
"username"
]
},
"packages": {
"type": "object"
}
},
"required": [
"cloud_init"
]
}
}
} | o27351 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "This schema represents a JSON Schema identifier.",
"type": "object",
"properties": {
"namespace": {
"description": "The namespace of the schema. A namespace serves to disambiguate schemas with conflicting names.",
"type": "string"
},
"name": {
"description": "The name of the schema.",
"type": "string"
},
"version": {
"description": "The version of the schema, e.g. 1.0.",
"type": "string"
},
"url": {
"description": "A URL to retrieve the schema. If a URL is not specified, it is assumed that the schema can be located using other means.",
"type": "string",
"format": "uri"
}
},
"required": [
"namespace",
"name",
"version"
]
} | o65635 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"dog": {
"type": "string",
"enum": [
"Border Collie",
"Golden Retriever"
]
}
},
"properties": {
"dog": {
"$ref": "#/definitions/dog"
}
},
"required": [
"dog"
]
} | o41655 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"type": "object",
"properties": {
"settings": {
"type": "object",
"properties": {
"printInEndpoint": {
"type": "boolean"
}
},
"required": [
"printInEndpoint"
],
"additionalProperties": false
}
},
"required": [
"settings"
]
} | o10008 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A Register Entry represents an entry in an official register, such as a charity/nonprofit register, or register of lobbyists, for example. Some registers -- such as the Charity Register for England & Wales have a statutory purpose, and act as a record of effectively licensing an entity to operate as a charity (as do, for example, some banking registers). Others, such as the UK's voluntary lobbying register, or the Canadian register of exporters, are more collections of entities and their activities. In general we are using register entries for those registers where there is no good normalised useful model; but where we have something such as the FCA's register of financial advisers etc, which is essentially a record of licences issued to operate in financial markets, we recommend modelling as licences.",
"properties": {
"subject_entity": {
"$ref": "#/definitions/entity"
},
"register": {
"$ref": "#/definitions/register"
},
"identifier": {
"description": "A unique identifier used by the register to identifier the register entry. In some cases \u2013 e.g. Charity Register for England & Wales, these identifiers (in this case known as the 'charity number') are used outside of the context of the register",
"type": "string"
},
"identifier_system_code": {
"type": "string",
"description": "A code representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System). Not all registers have identifier_systems, and some registers may use identifiers from other identifiers systems (e.g. the EBA is planning on using LEI in its bank register)"
},
"start_date": {
"description": "The date the register entry started, e.g. the date the entity was registered from, or appeared on the register the first time",
"type": "string",
"format": "date"
},
"end_date": {
"description": "The date the register entry ended, e.g. the date the charity was deregistered from",
"type": "string",
"format": "date"
},
"source_url": {
"description": "Source of the data \u2013 this may be the url of the entity on the register, the URL of an open data dump, or if there is no permanent URLs, the main URL for the register",
"type": "string",
"minLength": 8
},
"register_url": {
"description": "URL of the entity on the register, if there is a permanent URL",
"type": "string",
"minLength": 8
},
"confidence": {
"description": "Confidence in accuracy of data",
"type": "string",
"enum": [
"HIGH",
"MEDIUM",
"LOW"
]
},
"sample_date": {
"description": "Date on which we know this to be true (usually date this information was retrieved from the source)",
"type": "string",
"format": "date"
},
"retrieved_at": {
"description": "The time or date at which the source URL was requested",
"type": "string",
"format": "date"
},
"status": {
"type": "string",
"description": "The status of the register entry"
},
"category": {
"description": "Category of register entry (NB some registers may have more than one type of entry, so we record at the register entry level, rather than the register level)",
"type": "string",
"enum": [
"Charity-NonProfit",
"Lobbying",
"LegalEntity",
"Other"
]
},
"other_attributes": {
"description": "Use for other licence attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"additionalProperties": false,
"required": [
"source_url",
"sample_date",
"subject_entity",
"register",
"category",
"retrieved_at"
],
"definitions": {
"organisation": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity which is a distinct organisation, but is not a company nor an individual. Examples include governments and governmental entities (e.g. Multilateral Development Banks, Government Departments, municipalities, etc), and also membership organisations",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled (use global for global entities, e.g. UN)"
},
"legal_form": {
"type": "string",
"description": "legal form of organisation, e.g. municipality, government department, trust, etc"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"identifier": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An identifier for an entity (possibly other things, e.g. securities in the future). Examples are tax IDs, non-profit IDs, SEC CIK numbers, Federal Reserve RSSD id. The main requirements for an identifier is that they should be well-defined, and issued by a government or have statutory standing",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "The unique identifier given by the identifier system \u2013 it should be unique in the context of the identifier_system",
"minLength": 1
},
"identifier_system_code": {
"type": "string",
"description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)"
}
},
"required": [
"uid",
"identifier_system_code"
]
},
"address": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"minLength": 2
},
{
"name": "Address",
"description": "An address object",
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country": {
"type": "string"
},
"country_code": {
"description": "ISO 3166-2 code for country",
"type": "string"
}
},
"anyOf": [
{
"required": [
"street_address"
]
},
{
"required": [
"postal_code"
]
},
{
"required": [
"locality",
"country"
]
}
]
}
]
},
"address-with-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An address with a type",
"type": "object",
"properties": {
"address": {
"$ref": "#/definitions/address"
},
"type": {
"enum": [
"registered",
"headquarters",
"mailing",
"trading",
"unknown"
]
}
},
"additionalProperties": false,
"required": [
"address",
"type"
]
},
"industry-code": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An industry code from a standard code list (e.g. NAICS 2007 or NACE 2). This schema is a sub-schema of Classification.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"code": {
"type": "string"
},
"code_scheme_id": {
"type": "string",
"description": "An identifier representing industry code scheme. At the moment these are eu_nace_2, uk_sic_2003, uk_sic_2007, us_naics_2002, us_naics_2007, be_nace_2008, dk_db_2007, nz_bic_2006, no_sic_2007, anz_sic_2006, nz_bic_2006, in_nic_2004_mca, ca_qc_cae, lu_nace_2. For other code schemes, or details of these, contact [email protected]"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
}
},
"required": [
"code",
"code_scheme_id"
]
},
"previous-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "PreviousName",
"description": "A previous name of a company",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"con_date": {
"type": "string",
"format": "date",
"description": "The end (conversion) date of the name"
},
"start_date": {
"type": "string",
"format": "date"
}
},
"required": [
"company_name"
]
},
"alternative-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An alternative name of a company, e.g. abbreviation, trading (including dba or doing business as), legal. As well as trading names etc, it can be used for storing alternative language representations of the legal name, in which case the language should be represented as two-letter ISO-639 code",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"language": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"type": {
"type": "string",
"enum": [
"trading",
"abbreviation",
"legal",
"unknown",
"alias"
]
}
},
"required": [
"company_name",
"type"
]
},
"register": {
"title": "Register",
"description": "The official register of which this entry is a part",
"type": "object",
"properties": {
"registrar": {
"description": "The publisher/maintainer of the register",
"$ref": "#/definitions/organisation"
},
"jurisdiction": {
"description": "The jurisdiction covered by the register",
"type": "string"
},
"title": {
"description": "The title of the register",
"type": "string"
},
"url": {
"description": "The URL of the register",
"type": "string",
"format": "uri"
}
},
"additionalProperties": false,
"required": [
"title"
]
},
"entity": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"entity_type",
"entity_properties"
],
"oneOf": [
{
"properties": {
"entity_type": {
"enum": [
"company"
]
},
"entity_properties": {
"$ref": "#/definitions/company-for-nesting"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"person"
]
},
"entity_properties": {
"$ref": "#/definitions/person"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"organisation"
]
},
"entity_properties": {
"$ref": "#/definitions/organisation"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"unknown"
]
},
"entity_properties": {
"$ref": "#/definitions/unknown-entity-type"
}
}
}
]
},
"company-for-nesting": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A company in OpenCorporates",
"type": "object",
"properties": {
"company_number": {
"type": "string",
"description": "unique identifier given by the corporate register with which it is incorporated",
"minLength": 1
},
"name": {
"type": "string",
"description": "Legal name of the company",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "A free text field for the jurisdiction where the company is registered \u2013 this can be either the ISO 3166-2 code, the underscored version, or the standard name for the jurisdiction, e.g. France"
},
"jurisdiction_code": {
"type": "string",
"description": "Code representing the jurisdiction/company register which is the canonical record of the company\u2019s existence. Uses underscored ISO 3166-2 to represent it, e.g. es for Spain, us_de for Delaware",
"minLength": 2,
"maxLength": 5
},
"incorporation_date": {
"type": "string",
"format": "date"
},
"dissolution_date": {
"type": "string",
"format": "date"
},
"retrieved_at": {
"type": "string",
"format": "date"
},
"current_status": {
"type": [
"string",
"null"
]
},
"company_type": {
"type": [
"string",
"null"
]
},
"registry_url": {
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"officers": {
"type": "array",
"items": {
"$ref": "#/definitions/officer"
}
},
"share_parcels": {
"type": "array",
"items": {
"$ref": "#/definitions/share-parcel"
}
},
"total_shares": {
"$ref": "#/definitions/total-shares"
},
"filings": {
"type": "array",
"items": {
"$ref": "#/definitions/filing"
}
},
"identifiers": {
"type": "array",
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"branch": {
"type": [
"string",
"null"
],
"description": "A flag to denote whether a company is a branch entity. This should only be set if the company is a type of branch (otherwise should be null). In general the only option here is 'F' for a 'Foreign' branch, i.e. an out-of-jurisdiction entity that has registered as having a presence in the jurisdiction. In the US this is sometimes called a Foreign Corporation",
"enum": [
"F",
"L",
null
]
},
"all_attributes": {
"type": "object",
"description": "Other arbitrary attributes for a given company",
"properties": {
"jurisdiction_of_origin": {
"type": [
"string",
"null"
],
"description": "The jurisdiction of the 'home' company if this is a branch",
"minLength": 1
},
"home_company_number": {
"type": [
"string",
"null"
],
"description": "If the entity is a 'branch', this is the company_number of the 'home' company in the home company's jurisdiction",
"minLength": 1
},
"home_legal_name": {
"type": [
"string",
"null"
],
"description": "The legal name of the 'home' company in its jurisdiction if this is a branch, and the name is different from the legal name of the branch",
"minLength": 1
},
"registered_agent_address": {
"type": [
"string",
"null"
],
"description": "The address of the 'Agent', a public address to which legal papers can be served",
"minLength": 1
},
"registered_agent_name": {
"type": [
"string",
"null"
],
"description": "The 'Agent' of the company \u2013 a person or entity that is empowered to accept service for the company",
"minLength": 1
},
"number_of_employees": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "number",
"minimum": 0
}
],
"description": "The number of employees"
},
"merged_into": {
"type": "object",
"description": "Information on the merger of this company into a 'survivor' company",
"properties": {
"surviving_company": {
"type": [
"object"
],
"description": "the surviving_company that this has been merged into",
"properties": {
"name": {
"type": "string",
"description": "The legal name of the surviving company",
"minLength": 1
},
"company_number": {
"type": "string",
"description": "The company_number of the surviving company, if known",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "The jurisdiction of incorporation of the surviving company",
"minLength": 2
}
},
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"effective_date": {
"description": "The date of the merger",
"type": "string",
"format": "date"
}
},
"additionalProperties": false,
"required": [
"surviving_company"
]
}
}
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"officer": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An officer (director, senior executive) of a company",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"not": {
"pattern": "^[\\.\\,\\*\\\\\\-\\s\\{\\}\\(\\)]+$"
}
},
"start_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"end_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"position": {
"type": "string"
},
"uid": {
"type": "string",
"description": "a unique identifier given to the officership"
},
"other_attributes": {
"type": "object",
"properties": {
"date_of_birth": {
"type": "string",
"format": "date"
},
"nationality": {
"type": "string"
},
"person_uid": {
"type": "string",
"description": "a unique identifier given to the individual (as opposed to the officership)"
},
"address": {
"$ref": "#/definitions/address"
},
"type": {
"type": "string",
"enum": [
"Person",
"Company"
],
"description": "The type of entity that is the officer (either 'Person' or 'Company')"
}
}
}
},
"required": [
"name"
]
},
"share-parcel": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "A parcel of shares in a company",
"properties": {
"number_of_shares": {
"description": "Number of shares, if known",
"type": "integer"
},
"percentage_of_shares": {
"description": "Percentage of shares, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_min": {
"description": "Minimum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_max": {
"description": "Maximum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage": {
"description": "Percentage of votes, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"voting_percentage_min": {
"description": "Minimum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage_max": {
"description": "Maximum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"share_class": {
"description": "Share class or classes, if known",
"type": "string"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"sample_date": {
"type": "string",
"format": "date"
},
"shareholders": {
"description": "Legal persons who own this share parcel",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"name": "shareholder",
"required": [
"name"
],
"properties": {
"name": {
"description": "Name of natural person or company",
"type": "string",
"minLength": 1
},
"jurisdiction": {
"description": "Jurisdiction of registration, if company",
"type": "string"
},
"company_number": {
"description": "Company number, if company and known",
"type": "string"
},
"identifier": {
"description": "Unique identifier of person",
"type": "string"
},
"type": {
"description": "Type of person if known (company or natural person)",
"enum": [
"Company",
"Person"
]
},
"address": {
"description": "Address given for shareholder",
"$ref": "#/definitions/address"
},
"address_country": {
"description": "Country part of owner's address (for example if address not given)",
"type": "string"
}
}
}
}
}
},
"total-shares": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The total number of shares a company has issued",
"type": "object",
"properties": {
"number": {
"type": "integer"
},
"share_class": {
"type": "string",
"minLength": 1
}
},
"required": [
"number"
]
},
"filing": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A statutory filing",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
},
"description": {
"type": "string"
},
"uid": {
"type": "string"
},
"url": {
"type": "string"
},
"filing_type_code": {
"type": "string"
},
"filing_type_name": {
"type": "string"
},
"other_attributes": {
"type": "object"
}
},
"required": [
"date"
],
"anyOf": [
{
"required": [
"title"
]
},
{
"required": [
"description"
]
},
{
"required": [
"filing_type_name"
]
}
]
},
"person": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A person, for example, referenced in some other context, e.g. director of a company, shareholder, licence-holder, lobbyist. This should be used only if the person is the subject of the datum",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/definitions/person-name"
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is based"
},
"company": {
"description": "Company the person is representing. NB If the licence holder is a company, and the individual is a just a contact, then use the company-schema for the entity. This is where the individual themselves are the subject entity (e.g. licence holder, disqualified director)",
"$ref": "#/definitions/company-for-nesting"
},
"relationship_with_company": {
"enum": [
"employee",
"director",
"shareholder",
null
]
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"uid": {
"description": "Unique id of the person. Note: the unique id is not expected to be globally unique, but only unique with reference to the source from which it is derived. No check is made for uniqueness",
"type": "string",
"minLength": 1
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"description": "address for service (or address given in the context of legal requirement)",
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"date_of_birth": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"$ref": "#/definitions/date"
}
]
},
"nationality": {
"description": "The person's nationality",
"type": "string",
"format": "non-blank"
},
"country_of_residence": {
"description": "The normal country of residence for the person",
"type": "string",
"format": "non-blank"
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"person-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"format": "non-blank"
},
{
"description": "The name of a person as an object",
"type": "object",
"properties": {
"given_name": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "The given name(s) (often first name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to first_name"
},
"family_name": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "The family name (often last name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to last_name"
},
"first_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"middle_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"last_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"title": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "Title such as Mr, Ms, Dr etc"
},
"suffixes": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "Any suffixes, including degrees, honours (OBE), ordinals (John Smith Jr, Bill Jones II) etc"
}
}
}
]
},
"date": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A parsed date object. This allows us to represent not just normal dates, but also partial dates too",
"type": "object",
"properties": {
"year": {
"type": "number",
"description": "year part as YYYY"
},
"month": {
"type": "number",
"description": "month part of date in numbers e.g. 11 for November, 4 for April"
},
"day": {
"type": [
"number",
"null"
],
"description": "day part of date in numbers"
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"year",
"month"
]
},
{
"required": [
"month",
"day"
]
}
]
},
"unknown-entity-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity of unknown type - potentially a company, a person, government entity, or some unincorporated organisation",
"additionalProperties": false,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled"
},
"uid": {
"description": "Unique id for the entity if it has one",
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
}
}
} | o65423 |
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "",
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"bookmarkThumbHeight": {
"type": "number"
},
"bookmarkThumbWidth": {
"type": "number"
},
"dropEnabled": {
"type": "boolean"
},
"footerPanelEnabled": {
"type": "boolean"
},
"headerPanelEnabled": {
"type": "boolean"
},
"limitLocales": {
"type": "boolean"
},
"openTemplate": {
"type": "string",
"minLength": 1
},
"pessimisticAccessControl": {
"type": "boolean"
},
"rightPanelEnabled": {
"type": "boolean"
},
"theme": {
"type": "string",
"minLength": 1
}
},
"required": [
"bookmarkThumbHeight",
"bookmarkThumbWidth",
"dropEnabled",
"footerPanelEnabled",
"headerPanelEnabled",
"limitLocales",
"openTemplate",
"pessimisticAccessControl",
"rightPanelEnabled",
"theme"
]
},
"modules": {
"type": "object",
"properties": {
"shareDialogue": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"embedTemplate": {
"type": "string",
"minLength": 1
}
},
"required": [
"embedTemplate"
]
},
"content": {
"type": "object",
"properties": {
"customSize": {
"type": "string",
"minLength": 1
},
"embed": {
"type": "string",
"minLength": 1
},
"embedInstructions": {
"type": "string",
"minLength": 1
},
"height": {
"type": "string",
"minLength": 1
},
"iiif": {
"type": "string",
"minLength": 1
},
"share": {
"type": "string",
"minLength": 1
},
"shareInstructions": {
"type": "string",
"minLength": 1
},
"size": {
"type": "string",
"minLength": 1
},
"width": {
"type": "string",
"minLength": 1
}
},
"required": [
"customSize",
"embed",
"embedInstructions",
"height",
"iiif",
"share",
"shareInstructions",
"size",
"width"
]
}
},
"required": [
"options",
"content"
]
},
"footerPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"bookmarkEnabled": {
"type": "boolean"
},
"embedEnabled": {
"type": "boolean"
},
"feedbackEnabled": {
"type": "boolean"
},
"minimiseButtons": {
"type": "boolean"
},
"openEnabled": {
"type": "boolean"
},
"shareEnabled": {
"type": "boolean"
}
},
"required": [
"bookmarkEnabled",
"embedEnabled",
"feedbackEnabled",
"minimiseButtons",
"openEnabled",
"shareEnabled"
]
},
"content": {
"type": "object",
"properties": {
"bookmark": {
"type": "string",
"minLength": 1
},
"download": {
"type": "string",
"minLength": 1
},
"embed": {
"type": "string",
"minLength": 1
},
"exitFullScreen": {
"type": "string",
"minLength": 1
},
"fullScreen": {
"type": "string",
"minLength": 1
},
"open": {
"type": "string",
"minLength": 1
}
},
"required": [
"bookmark",
"download",
"embed",
"exitFullScreen",
"fullScreen",
"open"
]
}
},
"required": [
"options",
"content"
]
},
"genericDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"ok": {
"type": "string",
"minLength": 1
}
},
"required": [
"ok"
]
}
},
"required": [
"content"
]
},
"headerPanel": {
"type": "object",
"properties": {},
"required": []
},
"helpDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": [
"text",
"title"
]
}
},
"required": [
"content"
]
},
"moreInfoRightPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"canvasDisplayOrder": {
"type": "string"
},
"canvasExclude": {
"type": "string"
},
"copyToClipboardEnabled": {
"type": "boolean"
},
"manifestDisplayOrder": {
"type": "string"
},
"manifestExclude": {
"type": "string"
},
"panelAnimationDuration": {
"type": "number"
},
"panelCollapsedWidth": {
"type": "number"
},
"panelExpandedWidth": {
"type": "number"
},
"panelOpen": {
"type": "boolean"
},
"rtlLanguageCodes": {
"type": "string",
"minLength": 1
},
"showAllLanguages": {
"type": "boolean"
},
"textLimit": {
"type": "number"
},
"textLimitType": {
"type": "string",
"minLength": 1
}
},
"required": [
"canvasDisplayOrder",
"canvasExclude",
"copyToClipboardEnabled",
"manifestDisplayOrder",
"manifestExclude",
"panelAnimationDuration",
"panelCollapsedWidth",
"panelExpandedWidth",
"panelOpen",
"rtlLanguageCodes",
"showAllLanguages",
"textLimit",
"textLimitType"
]
},
"content": {
"type": "object",
"properties": {
"attribution": {
"type": "string",
"minLength": 1
},
"collapse": {
"type": "string",
"minLength": 1
},
"collapseFull": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"expand": {
"type": "string",
"minLength": 1
},
"expandFull": {
"type": "string",
"minLength": 1
},
"holdingText": {
"type": "string",
"minLength": 1
},
"less": {
"type": "string",
"minLength": 1
},
"license": {
"type": "string",
"minLength": 1
},
"logo": {
"type": "string",
"minLength": 1
},
"more": {
"type": "string",
"minLength": 1
},
"noData": {
"type": "string",
"minLength": 1
},
"page": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"manifestHeader": {
"type": "string",
"minLength": 1
},
"canvasHeader": {
"type": "string",
"minLength": 1
},
"copyToClipboard": {
"type": "string",
"minLength": 1
},
"copiedToClipboard": {
"type": "string",
"minLength": 1
}
},
"required": [
"attribution",
"collapse",
"collapseFull",
"description",
"expand",
"expandFull",
"holdingText",
"less",
"license",
"logo",
"more",
"noData",
"page",
"title",
"manifestHeader",
"canvasHeader",
"copyToClipboard",
"copiedToClipboard"
]
}
},
"required": [
"options",
"content"
]
},
"pdfCenterPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"titleEnabled": {
"type": "boolean"
},
"usePdfJs": {
"type": "boolean"
}
},
"required": [
"titleEnabled",
"usePdfJs"
]
}
},
"required": [
"options"
]
},
"resourcesLeftPanel": {
"type": "object",
"properties": {
"options": {
"type": "object",
"properties": {
"elideCount": {
"type": "number"
},
"galleryThumbHeight": {
"type": "number"
},
"galleryThumbWidth": {
"type": "number"
},
"oneColThumbHeight": {
"type": "number"
},
"oneColThumbWidth": {
"type": "number"
},
"pageModeEnabled": {
"type": "boolean"
},
"panelAnimationDuration": {
"type": "number"
},
"panelCollapsedWidth": {
"type": "number"
},
"panelExpandedWidth": {
"type": "number"
},
"panelOpen": {
"type": "boolean"
},
"thumbsEnabled": {
"type": "boolean"
},
"thumbsExtraHeight": {
"type": "number"
},
"thumbsImageFadeInDuration": {
"type": "number"
},
"thumbsLoadRange": {
"type": "number"
},
"treeEnabled": {
"type": "boolean"
},
"twoColThumbHeight": {
"type": "number"
},
"twoColThumbWidth": {
"type": "number"
}
},
"required": [
"elideCount",
"galleryThumbHeight",
"galleryThumbWidth",
"oneColThumbHeight",
"oneColThumbWidth",
"pageModeEnabled",
"panelAnimationDuration",
"panelCollapsedWidth",
"panelExpandedWidth",
"panelOpen",
"thumbsEnabled",
"thumbsExtraHeight",
"thumbsImageFadeInDuration",
"thumbsLoadRange",
"treeEnabled",
"twoColThumbHeight",
"twoColThumbWidth"
]
}
},
"required": [
"options"
]
},
"dialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"close": {
"type": "string",
"minLength": 1
}
},
"required": [
"close"
]
}
},
"required": [
"content"
]
},
"downloadDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"download": {
"type": "string",
"minLength": 1
},
"entireFileAsOriginal": {
"type": "string",
"minLength": 1
},
"noneAvailable": {
"type": "string",
"minLength": 1
},
"preview": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": [
"download",
"entireFileAsOriginal",
"noneAvailable",
"preview",
"title"
]
}
},
"required": [
"content"
]
},
"loginDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"login": {
"type": "string",
"minLength": 1
},
"cancel": {
"type": "string",
"minLength": 1
}
},
"required": [
"login",
"cancel"
]
}
},
"required": [
"content"
]
},
"settingsDialogue": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"locale": {
"type": "string",
"minLength": 1
},
"pagingEnabled": {
"type": "string",
"minLength": 1
},
"preserveViewport": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"website": {
"type": "string",
"minLength": 1
}
},
"required": [
"locale",
"pagingEnabled",
"preserveViewport",
"title",
"website"
]
}
},
"required": [
"content"
]
},
"contentLeftPanel": {
"type": "object",
"properties": {
"content": {
"type": "object",
"properties": {
"collapse": {
"type": "string",
"minLength": 1
},
"collapseFull": {
"type": "string",
"minLength": 1
},
"expand": {
"type": "string",
"minLength": 1
},
"expandFull": {
"type": "string",
"minLength": 1
},
"index": {
"type": "string",
"minLength": 1
},
"thumbnails": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
}
},
"required": [
"collapse",
"collapseFull",
"expand",
"expandFull",
"index",
"thumbnails",
"title"
]
}
},
"required": [
"content"
]
}
},
"required": [
"shareDialogue",
"footerPanel",
"genericDialogue",
"headerPanel",
"helpDialogue",
"moreInfoRightPanel",
"pdfCenterPanel",
"resourcesLeftPanel",
"dialogue",
"downloadDialogue",
"loginDialogue",
"settingsDialogue",
"contentLeftPanel"
]
},
"localisation": {
"type": "object",
"properties": {
"label": {
"type": "string",
"minLength": 1
},
"locales": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"required": [
"name",
"label"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"label": {
"type": "string",
"minLength": 1
}
}
}
}
},
"required": [
"label",
"locales"
]
},
"content": {
"type": "object",
"properties": {
"authCORSError": {
"type": "string",
"minLength": 1
},
"authorisationFailedMessage": {
"type": "string",
"minLength": 1
},
"degradedResourceMessage": {
"type": "string",
"minLength": 1
},
"degradedResourceLogin": {
"type": "string",
"minLength": 1
},
"forbiddenResourceMessage": {
"type": "string",
"minLength": 1
}
},
"required": [
"authCORSError",
"authorisationFailedMessage",
"degradedResourceMessage",
"degradedResourceLogin",
"forbiddenResourceMessage"
]
}
},
"required": [
"options",
"modules",
"localisation",
"content"
]
} | o16059 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequest": {
"description": "Describes a certificate signing request",
"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": [
"CertificateSigningRequest"
],
"type": "string"
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta"
},
"spec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec",
"description": "The certificate request itself and any additional information."
},
"status": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus",
"description": "Derived information about the request."
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "certificates.k8s.io",
"kind": "CertificateSigningRequest",
"version": "v1beta1"
}
]
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition": {
"properties": {
"lastUpdateTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "timestamp for the last update to this condition"
},
"message": {
"description": "human readable message with details about the request state",
"type": "string"
},
"reason": {
"description": "brief reason for the request state",
"type": "string"
},
"type": {
"description": "request approval state, currently Approved or Denied.",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec": {
"description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.",
"properties": {
"extra": {
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"description": "Extra information about the requesting user. See user.Info interface for details.",
"type": "object"
},
"groups": {
"description": "Group information about the requesting user. See user.Info interface for details.",
"items": {
"type": "string"
},
"type": "array"
},
"request": {
"_format": "byte",
"description": "Base64-encoded PKCS#10 CSR data",
"type": "string"
},
"signerName": {
"description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.",
"type": "string"
},
"uid": {
"description": "UID information about the requesting user. See user.Info interface for details.",
"type": "string"
},
"usages": {
"description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12",
"items": {
"type": "string"
},
"type": "array"
},
"username": {
"description": "Information about the requesting user. See user.Info interface for details.",
"type": "string"
}
},
"required": [
"request"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus": {
"properties": {
"certificate": {
"_format": "byte",
"description": "If request was approved, the controller will place the issued certificate here.",
"type": "string"
},
"conditions": {
"description": "Conditions applied to the request, such as approval or denial.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": {
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": {
"description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
"properties": {
"continue": {
"description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
"type": "string"
},
"remainingItemCount": {
"_format": "int64",
"description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
"type": "integer"
},
"resourceVersion": {
"description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": {
"description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
"type": "string"
},
"fieldsType": {
"description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
"type": "string"
},
"fieldsV1": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1",
"description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
},
"manager": {
"description": "Manager is an identifier of the workflow managing these fields.",
"type": "string"
},
"operation": {
"description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
"type": "string"
},
"time": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": {
"description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations",
"type": "object"
},
"clusterName": {
"description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.",
"type": "string"
},
"creationTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"deletionGracePeriodSeconds": {
"_format": "int64",
"description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
"type": "integer"
},
"deletionTimestamp": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
},
"finalizers": {
"description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
"items": {
"type": "string"
},
"type": "array",
"x-kubernetes-patch-strategy": "merge"
},
"generateName": {
"description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
"type": "string"
},
"generation": {
"_format": "int64",
"description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
"type": "integer"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels",
"type": "object"
},
"managedFields": {
"description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry"
},
"type": "array"
},
"name": {
"description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"namespace": {
"description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces",
"type": "string"
},
"ownerReferences": {
"description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference"
},
"type": "array",
"x-kubernetes-patch-merge-key": "uid",
"x-kubernetes-patch-strategy": "merge"
},
"resourceVersion": {
"description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
"type": "string"
},
"selfLink": {
"description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.",
"type": "string"
},
"uid": {
"description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": {
"description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
"properties": {
"apiVersion": {
"description": "API version of the referent.",
"type": "string"
},
"blockOwnerDeletion": {
"description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
"type": "boolean"
},
"controller": {
"description": "If true, this reference points to the managing controller.",
"type": "boolean"
},
"kind": {
"description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"name": {
"description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names",
"type": "string"
},
"uid": {
"description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids",
"type": "string"
}
},
"required": [
"apiVersion",
"kind",
"name",
"uid"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": {
"_format": "date-time",
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"type": "string"
}
},
"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": [
"certificates.k8s.io/v1beta1"
],
"type": [
"string",
"null"
]
},
"items": {
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_certificates_v1beta1_CertificateSigningRequest"
},
"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": [
"CertificateSigningRequestList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "certificates.k8s.io",
"kind": "CertificateSigningRequestList",
"version": "v1beta1"
}
]
} | kb_71_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Schema for Vega-lite specification",
"type": "object",
"required": [
"marktype",
"encoding"
],
"properties": {
"data": {
"type": "object",
"properties": {
"formatType": {
"type": "string",
"enum": [
"json",
"csv",
"tsv"
],
"default": "json"
},
"url": {
"type": "string"
},
"values": {
"type": "array",
"description": "Pass array of objects instead of a url to a file.",
"items": {
"type": "object",
"additionalProperties": true
}
},
"filter": {
"type": "string",
"description": "A string containing the filter Vega expression. Use `datum` to refer to the current data object."
},
"calculate": {
"type": "array",
"description": "Calculate new field(s) using the provided expresssion(s). Calculation are applied before filter.",
"items": {
"type": "object",
"properties": {
"field": {
"type": "string",
"description": "The field in which to store the computed formula value."
},
"expr": {
"type": "string",
"description": "A string containing an expression for the formula. Use the variable `datum` to to refer to the current data object."
}
}
}
}
}
},
"marktype": {
"type": "string",
"enum": [
"point",
"tick",
"bar",
"line",
"area",
"circle",
"square",
"text"
]
},
"encoding": {
"type": "object",
"properties": {
"x": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"supportedEnums": {
"quantitative": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"ordinal": [
"median",
"min",
"max"
],
"nominal": [],
"temporal": [
"mean",
"median",
"min",
"max"
],
"": [
"count"
]
},
"supportedTypes": {
"quantitative": 1,
"nominal": 1,
"ordinal": 1,
"temporal": 1,
"": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
},
"clamp": {
"type": "boolean",
"default": true,
"description": "If true, values that exceed the data domain are clamped to either the minimum or maximum range value"
},
"nice": {
"oneOf": [
{
"type": "boolean",
"description": "If true, modifies the scale domain to use a more human-friendly number range (e.g., 7 instead of 6.96)."
},
{
"type": "string",
"enum": [
"second",
"minute",
"hour",
"day",
"week",
"month",
"year"
],
"description": "If specified, modifies the scale domain to use a more human-friendly value range. For time and utc scale types only, the nice value should be a string indicating the desired time interval; legal values are \"second\", \"minute\", \"hour\", \"day\", \"week\", \"month\", or \"year\"."
}
],
"supportedTypes": {
"quantitative": 1,
"temporal": 1
},
"description": ""
},
"exponent": {
"type": "number",
"description": "Sets the exponent of the scale transformation. For pow scale types only, otherwise ignored."
},
"zero": {
"type": "boolean",
"description": "If true, ensures that a zero baseline value is included in the scale domain. This option is ignored for non-quantitative scales.",
"supportedTypes": {
"quantitative": 1,
"temporal": 1
}
},
"useRawDomain": {
"type": "boolean",
"description": "Uses the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
}
}
},
"axis": {
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "The formatting pattern for axis labels. If not undefined, this will be determined by the max value of the field."
},
"grid": {
"type": "boolean",
"description": "A flag indicate if gridlines should be created in addition to ticks. If `grid` is unspecified, the default value is `true` for ROW and COL. For X and Y, the default value is `true` for quantitative and time fields and `false` otherwise."
},
"layer": {
"type": "string",
"description": "A string indicating if the axis (and any gridlines) should be placed above or below the data marks."
},
"orient": {
"type": "string",
"enum": [
"top",
"right",
"left",
"bottom"
],
"description": "The orientation of the axis. One of top, bottom, left or right. The orientation can be used to further specialize the axis type (e.g., a y axis oriented for the right edge of the chart)."
},
"ticks": {
"type": "integer",
"minimum": 0,
"description": "A desired number of ticks, for axes visualizing quantitative scales. The resulting number may be different so that values are \"nice\" (multiples of 2, 5, 10) and lie within the underlying scale's range."
},
"title": {
"type": "string",
"description": "A title for the axis. (Shows field name and its function by default.)"
},
"labelMaxLength": {
"type": "integer",
"default": 25,
"minimum": 0,
"description": "Truncate labels that are too long."
},
"titleMaxLength": {
"type": "integer",
"minimum": 0,
"description": "Max length for axis title if the title is automatically generated from the field's description"
},
"titleOffset": {
"type": "integer",
"description": "A title offset value for the axis."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom axis styling."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
}
},
"required": [
"field",
"type"
],
"supportedMarktypes": {
"point": true,
"tick": true,
"bar": true,
"line": true,
"area": true,
"circle": true,
"square": true
}
},
"y": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"supportedEnums": {
"quantitative": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"ordinal": [
"median",
"min",
"max"
],
"nominal": [],
"temporal": [
"mean",
"median",
"min",
"max"
],
"": [
"count"
]
},
"supportedTypes": {
"quantitative": 1,
"nominal": 1,
"ordinal": 1,
"temporal": 1,
"": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
},
"clamp": {
"type": "boolean",
"default": true,
"description": "If true, values that exceed the data domain are clamped to either the minimum or maximum range value"
},
"nice": {
"oneOf": [
{
"type": "boolean",
"description": "If true, modifies the scale domain to use a more human-friendly number range (e.g., 7 instead of 6.96)."
},
{
"type": "string",
"enum": [
"second",
"minute",
"hour",
"day",
"week",
"month",
"year"
],
"description": "If specified, modifies the scale domain to use a more human-friendly value range. For time and utc scale types only, the nice value should be a string indicating the desired time interval; legal values are \"second\", \"minute\", \"hour\", \"day\", \"week\", \"month\", or \"year\"."
}
],
"supportedTypes": {
"quantitative": 1,
"temporal": 1
},
"description": ""
},
"exponent": {
"type": "number",
"description": "Sets the exponent of the scale transformation. For pow scale types only, otherwise ignored."
},
"zero": {
"type": "boolean",
"description": "If true, ensures that a zero baseline value is included in the scale domain. This option is ignored for non-quantitative scales.",
"supportedTypes": {
"quantitative": 1,
"temporal": 1
}
},
"useRawDomain": {
"type": "boolean",
"description": "Uses the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
}
}
},
"axis": {
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "The formatting pattern for axis labels. If not undefined, this will be determined by the max value of the field."
},
"grid": {
"type": "boolean",
"description": "A flag indicate if gridlines should be created in addition to ticks. If `grid` is unspecified, the default value is `true` for ROW and COL. For X and Y, the default value is `true` for quantitative and time fields and `false` otherwise."
},
"layer": {
"type": "string",
"description": "A string indicating if the axis (and any gridlines) should be placed above or below the data marks."
},
"orient": {
"type": "string",
"enum": [
"top",
"right",
"left",
"bottom"
],
"description": "The orientation of the axis. One of top, bottom, left or right. The orientation can be used to further specialize the axis type (e.g., a y axis oriented for the right edge of the chart)."
},
"ticks": {
"type": "integer",
"minimum": 0,
"description": "A desired number of ticks, for axes visualizing quantitative scales. The resulting number may be different so that values are \"nice\" (multiples of 2, 5, 10) and lie within the underlying scale's range."
},
"title": {
"type": "string",
"description": "A title for the axis. (Shows field name and its function by default.)"
},
"labelMaxLength": {
"type": "integer",
"default": 25,
"minimum": 0,
"description": "Truncate labels that are too long."
},
"titleMaxLength": {
"type": "integer",
"minimum": 0,
"description": "Max length for axis title if the title is automatically generated from the field's description"
},
"titleOffset": {
"type": "integer",
"description": "A title offset value for the axis."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom axis styling."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
}
},
"required": [
"field",
"type"
],
"supportedMarktypes": {
"point": true,
"tick": true,
"bar": true,
"line": true,
"area": true,
"circle": true,
"square": true
}
},
"row": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"count"
],
"supportedTypes": {
"nominal": 1,
"ordinal": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
}
}
},
"axis": {
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "The formatting pattern for axis labels. If not undefined, this will be determined by the max value of the field."
},
"grid": {
"type": "boolean",
"description": "A flag indicate if gridlines should be created in addition to ticks. If `grid` is unspecified, the default value is `true` for ROW and COL. For X and Y, the default value is `true` for quantitative and time fields and `false` otherwise."
},
"layer": {
"type": "string",
"description": "A string indicating if the axis (and any gridlines) should be placed above or below the data marks."
},
"orient": {
"type": "string",
"enum": [
"top",
"right",
"left",
"bottom"
],
"description": "The orientation of the axis. One of top, bottom, left or right. The orientation can be used to further specialize the axis type (e.g., a y axis oriented for the right edge of the chart)."
},
"ticks": {
"type": "integer",
"minimum": 0,
"description": "A desired number of ticks, for axes visualizing quantitative scales. The resulting number may be different so that values are \"nice\" (multiples of 2, 5, 10) and lie within the underlying scale's range."
},
"title": {
"type": "string",
"description": "A title for the axis. (Shows field name and its function by default.)"
},
"labelMaxLength": {
"type": "integer",
"default": 25,
"minimum": 0,
"description": "Truncate labels that are too long."
},
"titleMaxLength": {
"type": "integer",
"minimum": 0,
"description": "Max length for axis title if the title is automatically generated from the field's description"
},
"titleOffset": {
"type": "integer",
"description": "A title offset value for the axis."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom axis styling."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"height": {
"type": "number",
"minimum": 0,
"default": 150
}
},
"required": [
"field",
"type"
],
"supportedMarktypes": {
"point": true,
"tick": true,
"bar": true,
"line": true,
"area": true,
"circle": true,
"square": true,
"text": true
}
},
"column": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"count"
],
"supportedTypes": {
"nominal": 1,
"ordinal": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
}
}
},
"axis": {
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "The formatting pattern for axis labels. If not undefined, this will be determined by the max value of the field."
},
"grid": {
"type": "boolean",
"description": "A flag indicate if gridlines should be created in addition to ticks. If `grid` is unspecified, the default value is `true` for ROW and COL. For X and Y, the default value is `true` for quantitative and time fields and `false` otherwise."
},
"layer": {
"type": "string",
"description": "A string indicating if the axis (and any gridlines) should be placed above or below the data marks."
},
"orient": {
"type": "string",
"enum": [
"top",
"right",
"left",
"bottom"
],
"description": "The orientation of the axis. One of top, bottom, left or right. The orientation can be used to further specialize the axis type (e.g., a y axis oriented for the right edge of the chart)."
},
"ticks": {
"type": "integer",
"minimum": 0,
"description": "A desired number of ticks, for axes visualizing quantitative scales. The resulting number may be different so that values are \"nice\" (multiples of 2, 5, 10) and lie within the underlying scale's range."
},
"title": {
"type": "string",
"description": "A title for the axis. (Shows field name and its function by default.)"
},
"labelMaxLength": {
"type": "integer",
"default": 25,
"minimum": 0,
"description": "Truncate labels that are too long."
},
"titleMaxLength": {
"type": "integer",
"minimum": 0,
"description": "Max length for axis title if the title is automatically generated from the field's description"
},
"titleOffset": {
"type": "integer",
"description": "A title offset value for the axis."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom axis styling."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"width": {
"type": "number",
"minimum": 0,
"default": 150
}
},
"required": [
"field",
"type"
],
"supportedMarktypes": {
"point": true,
"tick": true,
"bar": true,
"line": true,
"area": true,
"circle": true,
"square": true,
"text": true
}
},
"size": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"supportedEnums": {
"quantitative": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"ordinal": [
"median",
"min",
"max"
],
"nominal": [],
"temporal": [
"mean",
"median",
"min",
"max"
],
"": [
"count"
]
},
"supportedTypes": {
"quantitative": 1,
"nominal": 1,
"ordinal": 1,
"temporal": 1,
"": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
},
"clamp": {
"type": "boolean",
"default": true,
"description": "If true, values that exceed the data domain are clamped to either the minimum or maximum range value"
},
"nice": {
"oneOf": [
{
"type": "boolean",
"description": "If true, modifies the scale domain to use a more human-friendly number range (e.g., 7 instead of 6.96)."
},
{
"type": "string",
"enum": [
"second",
"minute",
"hour",
"day",
"week",
"month",
"year"
],
"description": "If specified, modifies the scale domain to use a more human-friendly value range. For time and utc scale types only, the nice value should be a string indicating the desired time interval; legal values are \"second\", \"minute\", \"hour\", \"day\", \"week\", \"month\", or \"year\"."
}
],
"supportedTypes": {
"quantitative": 1,
"temporal": 1
},
"description": ""
},
"exponent": {
"type": "number",
"description": "Sets the exponent of the scale transformation. For pow scale types only, otherwise ignored."
},
"zero": {
"type": "boolean",
"description": "If true, ensures that a zero baseline value is included in the scale domain. This option is ignored for non-quantitative scales.",
"supportedTypes": {
"quantitative": 1,
"temporal": 1
}
},
"useRawDomain": {
"type": "boolean",
"description": "Uses the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
}
}
},
"legend": {
"default": true,
"description": "Properties of a legend or boolean flag for determining whether to show it.",
"oneOf": [
{
"type": "object",
"properties": {
"orient": {
"type": "string",
"description": "The orientation of the legend. One of \"left\" or \"right\". This determines how the legend is positioned within the scene. The default is \"right\"."
},
"title": {
"type": "string",
"description": "A title for the legend. (Shows field name and its function by default.)"
},
"format": {
"type": "string",
"description": "An optional formatting pattern for legend labels. Vega uses D3's format pattern."
},
"values": {
"type": "array",
"description": "Explicitly set the visible legend values."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom legend styling. "
}
}
},
{
"type": "boolean"
}
]
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"value": {
"type": "integer",
"default": 30,
"minimum": 0,
"description": "Size of marks."
}
},
"supportedMarktypes": {
"point": true,
"bar": true,
"circle": true,
"square": true,
"text": true
}
},
"color": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"supportedEnums": {
"quantitative": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"ordinal": [
"median",
"min",
"max"
],
"nominal": [],
"temporal": [
"mean",
"median",
"min",
"max"
],
"": [
"count"
]
},
"supportedTypes": {
"quantitative": 1,
"nominal": 1,
"ordinal": 1,
"temporal": 1,
"": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"string",
"array"
],
"description": "Color palette, if undefined vega-lite will use data propertyto pick one from c10palette, c20palette, or ordinalPalette."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
},
"clamp": {
"type": "boolean",
"default": true,
"description": "If true, values that exceed the data domain are clamped to either the minimum or maximum range value"
},
"nice": {
"oneOf": [
{
"type": "boolean",
"description": "If true, modifies the scale domain to use a more human-friendly number range (e.g., 7 instead of 6.96)."
},
{
"type": "string",
"enum": [
"second",
"minute",
"hour",
"day",
"week",
"month",
"year"
],
"description": "If specified, modifies the scale domain to use a more human-friendly value range. For time and utc scale types only, the nice value should be a string indicating the desired time interval; legal values are \"second\", \"minute\", \"hour\", \"day\", \"week\", \"month\", or \"year\"."
}
],
"supportedTypes": {
"quantitative": 1,
"temporal": 1
},
"description": ""
},
"exponent": {
"type": "number",
"description": "Sets the exponent of the scale transformation. For pow scale types only, otherwise ignored."
},
"zero": {
"type": "boolean",
"description": "If true, ensures that a zero baseline value is included in the scale domain. This option is ignored for non-quantitative scales.",
"supportedTypes": {
"quantitative": 1,
"temporal": 1
}
},
"useRawDomain": {
"type": "boolean",
"description": "Uses the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
},
"c10palette": {
"type": "string",
"default": "category10",
"enum": [
"category10",
"category10k",
"Pastel1",
"Pastel2",
"Set1",
"Set2",
"Set3"
]
},
"c20palette": {
"type": "string",
"default": "category20",
"enum": [
"category20",
"category20b",
"category20c"
]
},
"ordinalPalette": {
"type": "string",
"description": "Color palette to encode ordinal variables.",
"enum": [
"YlGn",
"YlGnBu",
"GnBu",
"BuGn",
"PuBuGn",
"PuBu",
"BuPu",
"RdPu",
"PuRd",
"OrRd",
"YlOrRd",
"YlOrBr",
"Purples",
"Blues",
"Greens",
"Oranges",
"Reds",
"Greys",
"PuOr",
"BrBG",
"PRGn",
"PiYG",
"RdBu",
"RdGy",
"RdYlBu",
"Spectral",
"RdYlGn",
"Accent",
"Dark2",
"Paired",
"Pastel1",
"Pastel2",
"Set1",
"Set2",
"Set3"
]
},
"quantitativeRange": {
"type": "array",
"default": [
"#AFC6A3",
"#09622A"
],
"description": "Color range to encode quantitative variables.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string",
"role": "color"
}
}
}
},
"legend": {
"default": true,
"description": "Properties of a legend or boolean flag for determining whether to show it.",
"oneOf": [
{
"type": "object",
"properties": {
"orient": {
"type": "string",
"description": "The orientation of the legend. One of \"left\" or \"right\". This determines how the legend is positioned within the scene. The default is \"right\"."
},
"title": {
"type": "string",
"description": "A title for the legend. (Shows field name and its function by default.)"
},
"format": {
"type": "string",
"description": "An optional formatting pattern for legend labels. Vega uses D3's format pattern."
},
"values": {
"type": "array",
"description": "Explicitly set the visible legend values."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom legend styling. "
}
}
},
{
"type": "boolean"
}
]
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"value": {
"type": "string",
"role": "color",
"default": "#4682b4",
"description": "Color to be used for marks."
},
"opacity": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"supportedMarktypes": {
"point": true,
"tick": true,
"bar": true,
"line": true,
"area": true,
"circle": true,
"square": true,
"text": true
}
},
"shape": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"count"
],
"supportedTypes": {
"nominal": 1,
"ordinal": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
}
}
},
"legend": {
"default": true,
"description": "Properties of a legend or boolean flag for determining whether to show it.",
"oneOf": [
{
"type": "object",
"properties": {
"orient": {
"type": "string",
"description": "The orientation of the legend. One of \"left\" or \"right\". This determines how the legend is positioned within the scene. The default is \"right\"."
},
"title": {
"type": "string",
"description": "A title for the legend. (Shows field name and its function by default.)"
},
"format": {
"type": "string",
"description": "An optional formatting pattern for legend labels. Vega uses D3's format pattern."
},
"values": {
"type": "array",
"description": "Explicitly set the visible legend values."
},
"properties": {
"type": "object",
"description": "Optional mark property definitions for custom legend styling. "
}
}
},
{
"type": "boolean"
}
]
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"value": {
"type": "string",
"enum": [
"circle",
"square",
"cross",
"diamond",
"triangle-up",
"triangle-down"
],
"default": "circle",
"description": "Mark to be used."
},
"filled": {
"type": "boolean",
"default": false,
"description": "Whether the shape's color should be used as fill color instead of stroke color."
}
},
"supportedMarktypes": {
"point": true,
"circle": true,
"square": true
}
},
"text": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"supportedEnums": {
"quantitative": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"ordinal": [
"median",
"min",
"max"
],
"nominal": [],
"temporal": [
"mean",
"median",
"min",
"max"
],
"": [
"count"
]
},
"supportedTypes": {
"quantitative": 1,
"nominal": 1,
"ordinal": 1,
"temporal": 1,
"": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
},
"clamp": {
"type": "boolean",
"default": true,
"description": "If true, values that exceed the data domain are clamped to either the minimum or maximum range value"
},
"nice": {
"oneOf": [
{
"type": "boolean",
"description": "If true, modifies the scale domain to use a more human-friendly number range (e.g., 7 instead of 6.96)."
},
{
"type": "string",
"enum": [
"second",
"minute",
"hour",
"day",
"week",
"month",
"year"
],
"description": "If specified, modifies the scale domain to use a more human-friendly value range. For time and utc scale types only, the nice value should be a string indicating the desired time interval; legal values are \"second\", \"minute\", \"hour\", \"day\", \"week\", \"month\", or \"year\"."
}
],
"supportedTypes": {
"quantitative": 1,
"temporal": 1
},
"description": ""
},
"exponent": {
"type": "number",
"description": "Sets the exponent of the scale transformation. For pow scale types only, otherwise ignored."
},
"zero": {
"type": "boolean",
"description": "If true, ensures that a zero baseline value is included in the scale domain. This option is ignored for non-quantitative scales.",
"supportedTypes": {
"quantitative": 1,
"temporal": 1
}
},
"useRawDomain": {
"type": "boolean",
"description": "Uses the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
},
"align": {
"type": "string",
"default": "right"
},
"baseline": {
"type": "string",
"default": "middle"
},
"color": {
"type": "string",
"role": "color",
"default": "#000000"
},
"margin": {
"type": "integer",
"default": 4,
"minimum": 0
},
"placeholder": {
"type": "string",
"default": "Abc"
},
"font": {
"type": "object",
"properties": {
"weight": {
"type": "string",
"enum": [
"normal",
"bold"
],
"default": "normal"
},
"size": {
"type": "integer",
"default": 10,
"minimum": 0
},
"family": {
"type": "string",
"default": "Helvetica Neue"
},
"style": {
"type": "string",
"default": "normal",
"enum": [
"normal",
"italic"
]
}
}
},
"format": {
"type": "string",
"default": "",
"description": "The formatting pattern for text value.If not defined, this will be determined automatically"
}
},
"supportedMarktypes": {
"text": true
}
},
"detail": {
"type": "object",
"properties": {
"field": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"nominal",
"ordinal",
"quantitative",
"temporal"
]
},
"timeUnit": {
"type": "string",
"enum": [
"year",
"month",
"day",
"date",
"hours",
"minutes",
"seconds"
],
"supportedTypes": {
"temporal": 1
}
},
"bin": {
"type": [
"boolean",
"object"
],
"default": false,
"properties": {
"maxbins": {
"type": "integer",
"default": 15,
"minimum": 2,
"description": "Maximum number of bins."
}
},
"supportedTypes": {
"quantitative": 1
}
},
"aggregate": {
"type": "string",
"enum": [
"count"
],
"supportedTypes": {
"nominal": 1,
"ordinal": 1
}
},
"scale": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"linear",
"log",
"pow",
"sqrt",
"quantile"
],
"default": "linear",
"supportedTypes": {
"quantitative": 1
}
},
"domain": {
"type": [
"array",
"object"
],
"description": "The domain of the scale, representing the set of data values. For quantitative data, this can take the form of a two-element array with minimum and maximum values. For ordinal/categorical data, this may be an array of valid input values. The domain may also be specified by a reference to a data source."
},
"range": {
"type": [
"array",
"object"
],
"description": "The range of the scale, representing the set of visual values. For numeric values, the range can take the form of a two-element array with minimum and maximum values. For ordinal or quantized data, the range may by an array of desired output values, which are mapped to elements in the specified domain. For ordinal scales only, the range can be defined using a DataRef: the range values are then drawn dynamically from a backing data set."
},
"round": {
"type": "boolean",
"description": "If true, rounds numeric output values to integers. This can be helpful for snapping to the pixel grid."
},
"bandWidth": {
"type": "integer",
"minimum": 0
},
"outerPadding": {
"type": "number"
},
"padding": {
"type": "number",
"description": "Applies spacing among ordinal elements in the scale range. The actual effect depends on how the scale is configured. If the __points__ parameter is `true`, the padding value is interpreted as a multiple of the spacing between points. A reasonable value is 1.0, such that the first and last point will be offset from the minimum and maximum value by half the distance between points. Otherwise, padding is typically in the range [0, 1] and corresponds to the fraction of space in the range interval to allocate to padding. A value of 0.5 means that the range band width will be equal to the padding width. For more, see the [D3 ordinal scale documentation](https://github.com/mbostock/d3/wiki/Ordinal-Scales)."
},
"points": {
"type": "boolean",
"description": "If true, distributes the ordinal values over a quantitative range at uniformly spaced points. The spacing of the points can be adjusted using the padding property. If false, the ordinal scale will construct evenly-spaced bands, rather than points."
}
}
},
"sort": {
"default": "ascending",
"supportedTypes": {
"quantitative": 1,
"ordinal": 1
},
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending",
"unsorted"
]
},
{
"type": "object",
"required": [
"field",
"op"
],
"properties": {
"field": {
"type": "string",
"description": "The field name to aggregate over."
},
"op": {
"type": "string",
"enum": [
"values",
"count",
"valid",
"missing",
"distinct",
"sum",
"mean",
"average",
"variance",
"variancep",
"stdev",
"stdevp",
"median",
"q1",
"q3",
"modeskew",
"min",
"max",
"argmin",
"argmax"
],
"description": "The field name to aggregate over."
},
"order": {
"type": "string",
"enum": [
"ascending",
"descending"
]
}
}
}
]
}
},
"supportedMarktypes": {
"point": true,
"tick": true,
"line": true,
"circle": true,
"square": true
}
}
}
},
"config": {
"type": "object",
"properties": {
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"viewport": {
"type": "array",
"items": {
"type": "integer"
}
},
"gridColor": {
"type": "string",
"role": "color",
"default": "#000000"
},
"gridOpacity": {
"type": "number",
"minimum": 0,
"maximum": 1,
"default": 0.08
},
"filterNull": {
"type": "object",
"properties": {
"nominal": {
"type": "boolean",
"default": false
},
"ordinal": {
"type": "boolean",
"default": false
},
"quantitative": {
"type": "boolean",
"default": true
},
"temporal": {
"type": "boolean",
"default": true
}
}
},
"autoSortLine": {
"type": "boolean",
"default": true
},
"singleHeight": {
"type": "integer",
"default": 200,
"minimum": 0
},
"singleWidth": {
"type": "integer",
"default": 200,
"minimum": 0
},
"largeBandWidth": {
"type": "integer",
"default": 21,
"minimum": 0
},
"smallBandWidth": {
"type": "integer",
"default": 12,
"minimum": 0
},
"largeBandMaxCardinality": {
"type": "integer",
"default": 10
},
"padding": {
"type": "number",
"default": 1,
"description": "default scale padding for ordinal x/y scales."
},
"cellPadding": {
"type": "number",
"default": 0.1,
"description": "default scale padding for row/column scales."
},
"cellGridColor": {
"type": "string",
"role": "color",
"default": "#000000"
},
"cellGridOpacity": {
"type": "number",
"minimum": 0,
"maximum": 1,
"default": 0.25
},
"cellGridOffset": {
"type": "number",
"default": 6
},
"cellBackgroundColor": {
"type": "string",
"role": "color",
"default": "rgba(0,0,0,0)"
},
"textCellWidth": {
"type": "integer",
"default": 90,
"minimum": 0
},
"stack": {
"type": [
"boolean",
"object"
],
"default": {},
"description": "Enable stacking (for bar and area marks only).",
"properties": {
"sort": {
"oneOf": [
{
"type": "string",
"enum": [
"ascending",
"descending"
]
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Order of the stack. This can be either a string (either \"descending\" or \"ascending\")or a list of fields to determine the order of stack layers.By default, stack uses descending order."
},
"offset": {
"type": "string",
"enum": [
"zero",
"center",
"normalize"
]
}
}
},
"strokeWidth": {
"type": "integer",
"default": 2,
"minimum": 0
},
"singleBarOffset": {
"type": "integer",
"default": 5,
"minimum": 0
},
"timeScaleLabelLength": {
"type": "integer",
"default": 3,
"minimum": 0,
"description": "Max length for values in dayScaleLabel and monthScaleLabel. Zero means using full names in dayScaleLabel/monthScaleLabel."
},
"dayScaleLabel": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"description": "Axis labels for day of week, starting from Sunday.(Consistent with Javascript -- See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay."
},
"monthScaleLabel": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"description": "Axis labels for month."
},
"characterWidth": {
"type": "integer",
"default": 6
},
"numberFormat": {
"type": "string",
"default": "s",
"description": "D3 Number format for axis labels and text tables."
},
"timeFormat": {
"type": "string",
"default": "%Y-%m-%d",
"description": "Date format for axis labels."
},
"useRawDomain": {
"type": "boolean",
"default": false,
"description": "Use the source data range as scale domain instead of aggregated data for aggregate axis. This option does not work with sum or count aggregateas they might have a substantially larger scale range.By default, use value from config.useRawDomain."
}
}
}
}
} | o81125 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"measuredParameter": {
"description": "recorded parameter value",
"properties": {
"date": {
"_format": "date-time",
"type": "string"
},
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"date",
"unit",
"value"
],
"type": "object"
}
},
"description": "QISKit device backend parameters",
"id": "http://qiskit.org/device-file/parameters-01/schema#",
"properties": {
"fridgeParameters": {
"cooldownDate": {
"_format": "date-time",
"type": "string"
},
"properties": {
"Temperature": {
"$ref": "#/definitions/measuredParameter"
}
},
"required": [
"Temperature",
"cooldownDate"
],
"type": "object"
},
"lastUpdateData": {
"_format": "date-time",
"type": "string"
},
"qubits": {
"items": {
"properties": {
"T1": {
"$ref": "#/definitions/measuredParameter"
},
"T2": {
"$ref": "#/definitions/measuredParameter"
},
"buffer": {
"$ref": "#/definitions/measuredParameter"
},
"frequency": {
"$ref": "#/definitions/measuredParameter"
},
"gateTime": {
"$ref": "#/definitions/measuredParameter"
},
"name": {
"type": "string"
}
},
"required": [
"T1",
"T2",
"buffer",
"frequency",
"gateTime",
"name"
],
"type": "object"
},
"minItems": 1,
"title": "System qubit parameters",
"type": "array"
}
},
"required": [
"fridgeParameters",
"lastUpdateDate",
"qubits"
],
"type": "object"
} | o24464 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"timeOfService": {
"_format": "date-time",
"description": "Date/time of services to be rendered (in UTC ISO time format)",
"minLength": 1,
"type": "string"
}
},
"required": [
"timeOfService"
],
"title": "Services Eligibility Get Request",
"type": "object"
} | o53623 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape type (e.g. rectangle, triangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_5067df9e |
{
"additionalProperties": false,
"description": "Schema for Zendesk users",
"properties": {
"details": {
"type": [
"string",
"null"
]
},
"email": {
"type": [
"string",
"null"
]
},
"extendedRole": {
"type": [
"string",
"null"
]
},
"externalId": {
"type": [
"string",
"null"
]
},
"firstName": {
"type": [
"string",
"null"
]
},
"language": {
"type": [
"string",
"null"
]
},
"lastName": {
"type": [
"string",
"null"
]
},
"locale": {
"type": [
"string",
"null"
]
},
"notes": {
"type": [
"string",
"null"
]
},
"organization": {
"type": [
"string",
"null"
]
},
"phone": {
"type": [
"string",
"null"
]
},
"role": {
"type": [
"string",
"null"
]
},
"signature": {
"type": [
"string",
"null"
]
},
"tags": {
"type": [
"string",
"null"
]
},
"ticketId": {
"type": "integer"
},
"timeZone": {
"type": [
"string",
"null"
]
},
"type": {
"type": "string"
},
"updatedAt": {
"_format": "date-time",
"type": "string"
},
"userId": {
"type": [
"integer",
"null"
]
}
},
"required": [
"ticketId",
"type",
"updatedAt",
"details",
"email",
"extendedRole",
"externalId",
"firstName",
"language",
"lastName",
"locale",
"notes",
"organization",
"phone",
"role",
"signature",
"tags",
"timeZone",
"userId"
],
"self": {
"format": "jsonschema",
"name": "user",
"vendor": "com.zendesk.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_402_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "blinkleds",
"description": "led on or off",
"type": "object",
"properties": {
"leds": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"description": "the identification of the led",
"type": "string"
},
"status": {
"description": "the status of the led",
"enum": [
"on",
"off"
]
}
},
"required": [
"id",
"status"
]
},
"minItems": 1
}
},
"required": [
"leds"
]
} | o57041 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": {
"description": "ExecAction describes a \"run in container\" action.",
"properties": {
"command": {
"description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": {
"description": "HTTPGetAction describes an action based on HTTP Get requests.",
"properties": {
"host": {
"description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.",
"type": "string"
},
"httpHeaders": {
"description": "Custom headers to set in the request. HTTP allows repeated headers.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader"
},
"type": "array"
},
"path": {
"description": "Path to access on the HTTP server.",
"type": "string"
},
"port": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME."
},
"scheme": {
"description": "Scheme to use for connecting to the host. Defaults to HTTP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": {
"description": "HTTPHeader describes a custom header to be used in HTTP probes",
"properties": {
"name": {
"description": "The header field name",
"type": "string"
},
"value": {
"description": "The header field value",
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": {
"description": "Handler defines a specific action that should be taken",
"properties": {
"exec": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction",
"description": "One and only one of the following should be specified. Exec specifies the action to take."
},
"httpGet": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
},
"tcpSocket": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction",
"description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_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_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"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"
} | kb_521_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"anyOf": [
{
"required": [
"date"
]
},
{
"required": [
"end_date"
]
}
],
"description": "A representation of one particular element of an accounts statement (e.g. profit or assets). This should consist of at least a value and end_date",
"properties": {
"currency": {
"description": "ISO 4217 code for the currency",
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"date": {
"_format": "date",
"description": "If this element is an instant element, i.e. relates to a specific point in time (such as balance sheet item), then give the date this relates to, otherwise use start/end dates for element that occured over a period (e.g. Profit/Loss)",
"type": "string"
},
"end_date": {
"_format": "date",
"type": "string"
},
"start_date": {
"_format": "date",
"type": "string"
},
"value": {
"minLength": 1,
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
} | o65440 |
{
"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",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The geometric shape (circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_4cd931e6 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"id": "http://localhost:3000/schemas/token-response.json#",
"properties": {
"access_token": {
"description": "The access token issued by the server.",
"type": "string"
},
"expires_in": {
"description": "The lifetime of the access token, in seconds.",
"type": "number"
},
"id_token": {
"description": "Optional identity token, issued for the code and password grants. Not provided for client credentials grants.",
"type": "string"
},
"refresh_token": {
"description": "Optional refresh token, which can be used to obtain new access tokens. Issued only for long-lived authorisations that permit it.",
"type": "string"
},
"scope": {
"description": "The scope of the access token.",
"type": "string"
},
"token_type": {
"description": "Set to bearer.",
"enum": [
"bearer"
],
"type": "string"
}
},
"required": [
"access_token",
"refresh_token",
"expires_in",
"token_type"
],
"title": "introspect",
"type": "object"
} | o20488 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_RuleWithOperations": {
"description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.",
"properties": {
"apiGroups": {
"description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"apiVersions": {
"description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"operations": {
"description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.",
"items": {
"type": "string"
},
"type": "array"
},
"scope": {
"description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference": {
"description": "ServiceReference holds a reference to Service.legacy.k8s.io",
"properties": {
"name": {
"description": "`name` is the name of the service. Required",
"type": "string"
},
"namespace": {
"description": "`namespace` is the namespace of the service. Required",
"type": "string"
},
"path": {
"description": "`path` is an optional URL path which will be sent in any request to this service.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).",
"type": "integer"
}
},
"required": [
"namespace",
"name"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig": {
"description": "WebhookClientConfig contains the information to make a TLS connection with the webhook",
"properties": {
"caBundle": {
"_format": "byte",
"description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
"type": "string"
},
"service": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_ServiceReference",
"description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`."
},
"url": {
"description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement"
},
"type": "array"
},
"matchLabels": {
"additionalProperties": {
"type": "string"
},
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": "object"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string",
"x-kubernetes-patch-merge-key": "key",
"x-kubernetes-patch-strategy": "merge"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"operator"
],
"type": "object"
}
},
"description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.",
"properties": {
"admissionReviewVersions": {
"description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.",
"items": {
"type": [
"string",
"null"
]
},
"type": [
"array",
"null"
]
},
"clientConfig": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig",
"description": "ClientConfig defines how to communicate with the hook. Required"
},
"failurePolicy": {
"description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.",
"type": [
"string",
"null"
]
},
"matchPolicy": {
"description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"",
"type": [
"string",
"null"
]
},
"name": {
"description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
"type": [
"string",
"null"
]
},
"namespaceSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything."
},
"objectSelector": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector",
"description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything."
},
"rules": {
"description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_admissionregistration_v1beta1_RuleWithOperations"
},
"type": [
"array",
"null"
]
},
"sideEffects": {
"description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.",
"type": [
"string",
"null"
]
},
"timeoutSeconds": {
"description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"name",
"clientConfig"
],
"type": "object"
} | kb_1096_Normalized |
{
"id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/media-list-widget/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"
}
},
"pre_render_code": {
"type": "string",
"minLength": 0,
"maxLength": 65535,
"description": "A string containing HTML that is injected into the application before the widget renders.",
"pbj": {
"type": "text",
"rule": "single"
}
},
"post_render_code": {
"type": "string",
"minLength": 0,
"maxLength": 65535,
"description": "A string containing HTML that is injected into the application after the widget renders.",
"pbj": {
"type": "text",
"rule": "single"
}
},
"show_border": {
"type": "boolean",
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"show_header": {
"type": "boolean",
"default": true,
"pbj": {
"type": "boolean",
"rule": "single"
}
},
"header_text": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"partner_url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
},
"partner_text": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
},
"view_all_url": {
"type": "string",
"pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$",
"pbj": {
"type": "text",
"rule": "single",
"format": "url"
}
},
"view_all_text": {
"type": "string",
"minLength": 0,
"maxLength": 255,
"pbj": {
"type": "string",
"rule": "single"
}
}
},
"required": [
"_id"
],
"additionalProperties": true
} | o82766 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width",
"radius"
],
"type": "object"
},
"shape": {
"description": "The shape (e.g., square, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_22566a70 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"cursor": {
"type": "object",
"properties": {
"row": {
"type": "integer",
"minimum": 1
},
"col": {
"type": "integer",
"minimum": 1
}
},
"required": [
"row",
"col"
]
},
"range": {
"type": "object",
"properties": {
"start": {
"$ref": "#/definitions/cursor"
},
"end": {
"$ref": "#/definitions/cursor"
}
},
"required": [
"start",
"end"
]
},
"token": {
"type": "object",
"properties": {
"lexeme": {
"type": "string"
},
"row": {
"type": "integer",
"minimum": 0
},
"col": {
"type": "integer",
"minimum": 0
},
"tokenClass": {
"type": "string"
},
"parent": {
"type": "null"
},
"children": {
"type": "null"
},
"keyword": {
"type": "boolean"
}
},
"required": [
"lexeme",
"row",
"col",
"tokenClass",
"parent",
"children"
]
},
"name": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"token": {
"$ref": "#/definitions/token"
},
"name_type": {
"type": "string",
"enum": [
"label",
"variable",
"function",
"typedef",
"enum_const",
"member"
]
},
"variable_type": {
"type": "string"
},
"parameter": {
"type": "boolean"
},
"function_type": {
"type": "string",
"enum": [
"regular",
"inline"
]
},
"function_return_type": {
"type": "string"
},
"member_type": {
"type": "string"
}
},
"require": [
"name",
"token",
"name_type"
]
},
"namespace": {
"type": "object",
"properties": {
"labels": {
"type": "array",
"items": {
"$ref": "#/definitions/name"
}
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"token": {
"$ref": "#/definitions/token"
},
"name_type": {
"type": "string",
"enum": [
"structure",
"union",
"enum"
]
},
"members": {
"type": "array",
"items": {
"$ref": "#/definitions/name"
}
}
}
}
},
"ordinary_ids": {
"type": "array",
"items": {
"$ref": "#/definitions/name"
}
}
}
}
},
"properties": {
"scope_name": {
"type": "string",
"enum": [
"file_scope",
"function_scope",
"block_scope"
]
},
"range": {
"$ref": "#/definitions/range"
},
"scopes": {
"type": "array",
"items": {
"$ref": "#"
}
},
"namespace": {
"$ref": "#/definitions/namespace"
}
}
} | o79664 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_631bb363 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"bar": {
"type": "array",
"_uniqueItems": true
},
"baz": {
"type": "array",
"_uniqueItems": false
}
}
} | o25200 |
{
"properties": {
"dimensions": {
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (for circle)",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"required": [
"length",
"width"
],
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. square, rectangle, circle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_d598aab2 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An accounts statement is a set of financials from a given accounts filing. This may be have been derived from something as extensive as an XBRL filing, or just some headline financials. The actual accounts lines are made up of arrays of accounts elements. Some, like profit or turnover are explicitly declared here, but other arbitrary ones may be added in other_attributes, and should follow the same format",
"properties": {
"filing_subject": {
"$ref": "#/definitions/entity"
},
"uid": {
"description": "Unique id/reference for the filing if it has one",
"type": "string"
},
"filing_date": {
"type": "string",
"description": "Date on which the filing was made \u2013 note this is not necessarily the same date as the date on which it was published or the reporting/applicable data on the information contained within it",
"format": "date"
},
"accounts_date": {
"type": "string",
"format": "date"
},
"accounts_type": {
"description": "The type of accounts \u2013 either annual, or quarterly, or null if not known",
"enum": [
"annual",
"quarterly",
null
]
},
"profit": {
"type": "array",
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"revenue": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"current_assets": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"total_assets": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"fixed_assets": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"current_liabilities": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"total_liabilities": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"cash_at_bank": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/accounts-element"
}
},
"documents": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/filing-document"
}
},
"filing_type_name": {
"description": "The filing type in words, if given (e.g. 'Annual Return')",
"type": "string"
},
"filing_type_code": {
"description": "The code for filing type, if given (e.g. 'AR01')",
"type": "string"
},
"title": {
"description": "The title of the filing, if given",
"type": "string"
},
"description": {
"description": "The description or precis of the filing, if given",
"type": "string"
},
"url": {
"description": "Persistent URL for the filing, if there is one",
"type": "string"
},
"source_url": {
"description": "Source of the accounts, e.g. the URL of the XBRL statement, or the download dump",
"type": "string",
"minLength": 11
},
"confidence": {
"description": "Confidence in accuracy of data",
"type": "string",
"enum": [
"HIGH",
"MEDIUM",
"LOW"
]
},
"sample_date": {
"description": "Date on which we know this to be true (usually date this information was retrieved from the source)",
"type": "string",
"format": "date"
},
"retrieved_at": {
"type": "string",
"format": "date"
},
"currency": {
"type": "string",
"description": "Standard ISO 4217 3-letter code for currency, e.g. USD, GBP, EUR"
},
"language": {
"description": "Should be represented as two-letter ISO-639 code",
"type": "string",
"minLength": 2,
"maxLength": 2
},
"source_location": {
"type": "string",
"description": "If the accounts filing has been put on sources.opencorporates.com the path to the filing"
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"additionalProperties": false,
"required": [
"filing_subject",
"source_url",
"sample_date",
"confidence",
"filing_date",
"accounts_type"
],
"definitions": {
"entity": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"entity_type",
"entity_properties"
],
"oneOf": [
{
"properties": {
"entity_type": {
"enum": [
"company"
]
},
"entity_properties": {
"$ref": "#/definitions/company-for-nesting"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"person"
]
},
"entity_properties": {
"$ref": "#/definitions/person"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"organisation"
]
},
"entity_properties": {
"$ref": "#/definitions/organisation"
}
}
},
{
"properties": {
"entity_type": {
"enum": [
"unknown"
]
},
"entity_properties": {
"$ref": "#/definitions/unknown-entity-type"
}
}
}
]
},
"company-for-nesting": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A company in OpenCorporates",
"type": "object",
"properties": {
"company_number": {
"type": "string",
"description": "unique identifier given by the corporate register with which it is incorporated",
"minLength": 1
},
"name": {
"type": "string",
"description": "Legal name of the company",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "A free text field for the jurisdiction where the company is registered \u2013 this can be either the ISO 3166-2 code, the underscored version, or the standard name for the jurisdiction, e.g. France"
},
"jurisdiction_code": {
"type": "string",
"description": "Code representing the jurisdiction/company register which is the canonical record of the company\u2019s existence. Uses underscored ISO 3166-2 to represent it, e.g. es for Spain, us_de for Delaware",
"minLength": 2,
"maxLength": 5
},
"incorporation_date": {
"type": "string",
"format": "date"
},
"dissolution_date": {
"type": "string",
"format": "date"
},
"retrieved_at": {
"type": "string",
"format": "date"
},
"current_status": {
"type": [
"string",
"null"
]
},
"company_type": {
"type": [
"string",
"null"
]
},
"registry_url": {
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"officers": {
"type": "array",
"items": {
"$ref": "#/definitions/officer"
}
},
"share_parcels": {
"type": "array",
"items": {
"$ref": "#/definitions/share-parcel"
}
},
"total_shares": {
"$ref": "#/definitions/total-shares"
},
"filings": {
"type": "array",
"items": {
"$ref": "#/definitions/filing"
}
},
"identifiers": {
"type": "array",
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"branch": {
"type": [
"string",
"null"
],
"description": "A flag to denote whether a company is a branch entity. This should only be set if the company is a type of branch (otherwise should be null). In general the only option here is 'F' for a 'Foreign' branch, i.e. an out-of-jurisdiction entity that has registered as having a presence in the jurisdiction. In the US this is sometimes called a Foreign Corporation",
"enum": [
"F",
"L",
null
]
},
"all_attributes": {
"type": "object",
"description": "Other arbitrary attributes for a given company",
"properties": {
"jurisdiction_of_origin": {
"type": [
"string",
"null"
],
"description": "The jurisdiction of the 'home' company if this is a branch",
"minLength": 1
},
"home_company_number": {
"type": [
"string",
"null"
],
"description": "If the entity is a 'branch', this is the company_number of the 'home' company in the home company's jurisdiction",
"minLength": 1
},
"home_legal_name": {
"type": [
"string",
"null"
],
"description": "The legal name of the 'home' company in its jurisdiction if this is a branch, and the name is different from the legal name of the branch",
"minLength": 1
},
"registered_agent_address": {
"type": [
"string",
"null"
],
"description": "The address of the 'Agent', a public address to which legal papers can be served",
"minLength": 1
},
"registered_agent_name": {
"type": [
"string",
"null"
],
"description": "The 'Agent' of the company \u2013 a person or entity that is empowered to accept service for the company",
"minLength": 1
},
"number_of_employees": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "number",
"minimum": 0
}
],
"description": "The number of employees"
},
"merged_into": {
"type": "object",
"description": "Information on the merger of this company into a 'survivor' company",
"properties": {
"surviving_company": {
"type": [
"object"
],
"description": "the surviving_company that this has been merged into",
"properties": {
"name": {
"type": "string",
"description": "The legal name of the surviving company",
"minLength": 1
},
"company_number": {
"type": "string",
"description": "The company_number of the surviving company, if known",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "The jurisdiction of incorporation of the surviving company",
"minLength": 2
}
},
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"effective_date": {
"description": "The date of the merger",
"type": "string",
"format": "date"
}
},
"additionalProperties": false,
"required": [
"surviving_company"
]
}
}
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"name"
]
},
{
"required": [
"company_number"
]
}
]
},
"address": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"minLength": 2
},
{
"name": "Address",
"description": "An address object",
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country": {
"type": "string"
},
"country_code": {
"description": "ISO 3166-2 code for country",
"type": "string"
}
},
"anyOf": [
{
"required": [
"street_address"
]
},
{
"required": [
"postal_code"
]
},
{
"required": [
"locality",
"country"
]
}
]
}
]
},
"address-with-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An address with a type",
"type": "object",
"properties": {
"address": {
"$ref": "#/definitions/address"
},
"type": {
"enum": [
"registered",
"headquarters",
"mailing",
"trading",
"unknown"
]
}
},
"additionalProperties": false,
"required": [
"address",
"type"
]
},
"officer": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An officer (director, senior executive) of a company",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"not": {
"pattern": "^[\\.\\,\\*\\\\\\-\\s\\{\\}\\(\\)]+$"
}
},
"start_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"end_date": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"type": "null"
}
]
},
"position": {
"type": "string"
},
"uid": {
"type": "string",
"description": "a unique identifier given to the officership"
},
"other_attributes": {
"type": "object",
"properties": {
"date_of_birth": {
"type": "string",
"format": "date"
},
"nationality": {
"type": "string"
},
"person_uid": {
"type": "string",
"description": "a unique identifier given to the individual (as opposed to the officership)"
},
"address": {
"$ref": "#/definitions/address"
},
"type": {
"type": "string",
"enum": [
"Person",
"Company"
],
"description": "The type of entity that is the officer (either 'Person' or 'Company')"
}
}
}
},
"required": [
"name"
]
},
"share-parcel": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "A parcel of shares in a company",
"properties": {
"number_of_shares": {
"description": "Number of shares, if known",
"type": "integer"
},
"percentage_of_shares": {
"description": "Percentage of shares, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_min": {
"description": "Minimum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"percentage_of_shares_max": {
"description": "Maximum percentage of shares (if for example a band of percentage is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage": {
"description": "Percentage of votes, if known",
"type": "number",
"maximum": 100,
"minimum": 0
},
"voting_percentage_min": {
"description": "Minimum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"voting_percentage_max": {
"description": "Maximum percentage of votes (if for example a band of votes is given)",
"type": [
"number",
"null"
],
"maximum": 100,
"minimum": 0
},
"share_class": {
"description": "Share class or classes, if known",
"type": "string"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"sample_date": {
"type": "string",
"format": "date"
},
"shareholders": {
"description": "Legal persons who own this share parcel",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"name": "shareholder",
"required": [
"name"
],
"properties": {
"name": {
"description": "Name of natural person or company",
"type": "string",
"minLength": 1
},
"jurisdiction": {
"description": "Jurisdiction of registration, if company",
"type": "string"
},
"company_number": {
"description": "Company number, if company and known",
"type": "string"
},
"identifier": {
"description": "Unique identifier of person",
"type": "string"
},
"type": {
"description": "Type of person if known (company or natural person)",
"enum": [
"Company",
"Person"
]
},
"address": {
"description": "Address given for shareholder",
"$ref": "#/definitions/address"
},
"address_country": {
"description": "Country part of owner's address (for example if address not given)",
"type": "string"
}
}
}
}
}
},
"total-shares": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "The total number of shares a company has issued",
"type": "object",
"properties": {
"number": {
"type": "integer"
},
"share_class": {
"type": "string",
"minLength": 1
}
},
"required": [
"number"
]
},
"filing": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A statutory filing",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
},
"description": {
"type": "string"
},
"uid": {
"type": "string"
},
"url": {
"type": "string"
},
"filing_type_code": {
"type": "string"
},
"filing_type_name": {
"type": "string"
},
"other_attributes": {
"type": "object"
}
},
"required": [
"date"
],
"anyOf": [
{
"required": [
"title"
]
},
{
"required": [
"description"
]
},
{
"required": [
"filing_type_name"
]
}
]
},
"identifier": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An identifier for an entity (possibly other things, e.g. securities in the future). Examples are tax IDs, non-profit IDs, SEC CIK numbers, Federal Reserve RSSD id. The main requirements for an identifier is that they should be well-defined, and issued by a government or have statutory standing",
"type": "object",
"properties": {
"uid": {
"type": "string",
"description": "The unique identifier given by the identifier system \u2013 it should be unique in the context of the identifier_system",
"minLength": 1
},
"identifier_system_code": {
"type": "string",
"description": "An identifier representing the identifier scheme. Some examples of this are us_fein (US Federal tax number), us_sec_cik (US Securities and Exchange Commission CIK), uk_ew_cc (Charity Commission of England & Wales), lei (Global Legal Entity Identifier System)"
}
},
"required": [
"uid",
"identifier_system_code"
]
},
"industry-code": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An industry code from a standard code list (e.g. NAICS 2007 or NACE 2). This schema is a sub-schema of Classification.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"code": {
"type": "string"
},
"code_scheme_id": {
"type": "string",
"description": "An identifier representing industry code scheme. At the moment these are eu_nace_2, uk_sic_2003, uk_sic_2007, us_naics_2002, us_naics_2007, be_nace_2008, dk_db_2007, nz_bic_2006, no_sic_2007, anz_sic_2006, nz_bic_2006, in_nic_2004_mca, ca_qc_cae, lu_nace_2. For other code schemes, or details of these, contact [email protected]"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
}
},
"required": [
"code",
"code_scheme_id"
]
},
"previous-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "PreviousName",
"description": "A previous name of a company",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"con_date": {
"type": "string",
"format": "date",
"description": "The end (conversion) date of the name"
},
"start_date": {
"type": "string",
"format": "date"
}
},
"required": [
"company_name"
]
},
"alternative-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An alternative name of a company, e.g. abbreviation, trading (including dba or doing business as), legal. As well as trading names etc, it can be used for storing alternative language representations of the legal name, in which case the language should be represented as two-letter ISO-639 code",
"type": "object",
"properties": {
"company_name": {
"type": "string",
"minLength": 1
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"language": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"type": {
"type": "string",
"enum": [
"trading",
"abbreviation",
"legal",
"unknown",
"alias"
]
}
},
"required": [
"company_name",
"type"
]
},
"person": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A person, for example, referenced in some other context, e.g. director of a company, shareholder, licence-holder, lobbyist. This should be used only if the person is the subject of the datum",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/definitions/person-name"
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is based"
},
"company": {
"description": "Company the person is representing. NB If the licence holder is a company, and the individual is a just a contact, then use the company-schema for the entity. This is where the individual themselves are the subject entity (e.g. licence holder, disqualified director)",
"$ref": "#/definitions/company-for-nesting"
},
"relationship_with_company": {
"enum": [
"employee",
"director",
"shareholder",
null
]
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"uid": {
"description": "Unique id of the person. Note: the unique id is not expected to be globally unique, but only unique with reference to the source from which it is derived. No check is made for uniqueness",
"type": "string",
"minLength": 1
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"description": "address for service (or address given in the context of legal requirement)",
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"date_of_birth": {
"anyOf": [
{
"type": "string",
"format": "date"
},
{
"$ref": "#/definitions/date"
}
]
},
"nationality": {
"description": "The person's nationality",
"type": "string",
"format": "non-blank"
},
"country_of_residence": {
"description": "The normal country of residence for the person",
"type": "string",
"format": "non-blank"
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"person-name": {
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"format": "non-blank"
},
{
"description": "The name of a person as an object",
"type": "object",
"properties": {
"given_name": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "The given name(s) (often first name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to first_name"
},
"family_name": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "The family name (often last name) of a person, as opposed to their family name. Following FOAF practice, this is preferred to last_name"
},
"first_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"middle_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"last_name": {
"type": [
"string",
"null"
],
"format": "non-blank"
},
"title": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "Title such as Mr, Ms, Dr etc"
},
"suffixes": {
"type": [
"string",
"null"
],
"format": "non-blank",
"description": "Any suffixes, including degrees, honours (OBE), ordinals (John Smith Jr, Bill Jones II) etc"
}
}
}
]
},
"date": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A parsed date object. This allows us to represent not just normal dates, but also partial dates too",
"type": "object",
"properties": {
"year": {
"type": "number",
"description": "year part as YYYY"
},
"month": {
"type": "number",
"description": "month part of date in numbers e.g. 11 for November, 4 for April"
},
"day": {
"type": [
"number",
"null"
],
"description": "day part of date in numbers"
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"year",
"month"
]
},
{
"required": [
"month",
"day"
]
}
]
},
"organisation": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity which is a distinct organisation, but is not a company nor an individual. Examples include governments and governmental entities (e.g. Multilateral Development Banks, Government Departments, municipalities, etc), and also membership organisations",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled (use global for global entities, e.g. UN)"
},
"legal_form": {
"type": "string",
"description": "legal form of organisation, e.g. municipality, government department, trust, etc"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"unknown-entity-type": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An entity of unknown type - potentially a company, a person, government entity, or some unincorporated organisation",
"additionalProperties": false,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the entity",
"minLength": 1
},
"jurisdiction": {
"type": "string",
"description": "Name of the jurisdiction in which the entity is incorporated/domiciled"
},
"uid": {
"description": "Unique id for the entity if it has one",
"type": "string"
},
"website": {
"oneOf": [
{
"type": "string",
"minLength": 5
},
{
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 5
}
}
]
},
"telephone_number": {
"type": "string",
"minLength": 4
},
"fax_number": {
"type": "string",
"minLength": 4
},
"registered_address": {
"$ref": "#/definitions/address"
},
"headquarters_address": {
"$ref": "#/definitions/address"
},
"mailing_address": {
"$ref": "#/definitions/address"
},
"addresses": {
"type": "array",
"items": {
"$ref": "#/definitions/address-with-type"
}
},
"identifiers": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/identifier"
}
},
"industry_codes": {
"type": "array",
"items": {
"$ref": "#/definitions/industry-code"
}
},
"previous_names": {
"type": "array",
"items": {
"$ref": "#/definitions/previous-name"
}
},
"alternative_names": {
"type": "array",
"items": {
"$ref": "#/definitions/alternative-name"
}
},
"other_attributes": {
"description": "Use for other attributes for which we don't yet have curated schema attributes",
"type": "object"
}
},
"required": [
"name"
]
},
"accounts-element": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A representation of one particular element of an accounts statement (e.g. profit or assets). This should consist of at least a value and end_date",
"type": "object",
"properties": {
"value": {
"type": "string",
"minLength": 1
},
"date": {
"description": "If this element is an instant element, i.e. relates to a specific point in time (such as balance sheet item), then give the date this relates to, otherwise use start/end dates for element that occured over a period (e.g. Profit/Loss)",
"type": "string",
"format": "date"
},
"start_date": {
"type": "string",
"format": "date"
},
"end_date": {
"type": "string",
"format": "date"
},
"currency": {
"description": "ISO 4217 code for the currency",
"type": "string",
"minLength": 3,
"maxLength": 3
}
},
"required": [
"value"
],
"anyOf": [
{
"required": [
"date"
]
},
{
"required": [
"end_date"
]
}
]
},
"filing-document": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A document of some sort (PDF, TIFF, HTML) associated with a filing",
"type": "object",
"properties": {
"uid": {
"description": "Unique id/reference for the filing if it has one",
"type": "string"
},
"file_format": {
"description": "Format of the document, if known",
"enum": [
"xml",
"pdf",
"html",
"doc",
null
]
},
"original_source_url": {
"description": "Persistent URL for the document, if there is one",
"type": "string"
},
"source_url": {
"description": "Source url of the web page for the filing or if there is not persistent URL the page from which it can be found (e.g. search page)",
"type": "string",
"minLength": 11
},
"source_location": {
"type": "string",
"description": "If the accounts filing has been put on sources.opencorporates.com the path to the filing"
},
"language": {
"description": "Should be represented as two-letter ISO-639 code",
"type": "string",
"minLength": 2,
"maxLength": 2
},
"classification": {
"description": "type of document (at the moment only XBRL is the only option here)",
"type": "string",
"enum": [
"xbrl",
null
]
},
"pages": {
"description": "Number of pages, if known",
"type": "integer"
}
},
"additionalProperties": false,
"anyOf": [
{
"required": [
"source_location"
]
},
{
"required": [
"source_url"
]
}
]
}
}
} | o65414 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base length of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (e.g. square, rectangle, triangle, etc.)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_7b538abe |
{
"assertionType": "must",
"description": "True when the Annotation does not have both body key and bodyValue key (Section 3.2.5)",
"errorMessage": "ERROR: body and bodyValue are exclusive keys; a single annotation cannot have both.",
"expectedResult": "valid",
"not": {
"required": [
"body",
"bodyValue"
]
},
"onUnexpectedResult": "failAndContinue",
"title": "Annotation has a **_body_ key**, or a **_bodyValue_ key**, or **neither**, but **NEVER both** - [model 3.2.5](https://www.w3.org/TR/annotation-model/#string-body)",
"type": "object"
} | o91408 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"poster_url": {
"_format": "uri",
"description": "URL to the service standard poster (absolute)",
"type": "string"
}
},
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"govuk_request_id": {
"type": [
"string",
"null"
]
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"guid_list": {
"items": {
"$ref": "#/definitions/guid"
},
"type": "array",
"_uniqueItems": true
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"payload_version": {
"description": "Counter to indicate when the payload was generated",
"type": "integer"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"route": {
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
},
"type": {
"enum": [
"prefix",
"exact"
]
}
},
"required": [
"path",
"type"
],
"type": "object"
},
"routes": {
"items": {
"$ref": "#/definitions/route"
},
"minItems": 1,
"type": "array"
},
"title": {
"type": "string"
},
"update_type": {
"enum": [
"major",
"minor",
"republish"
]
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"content_purpose_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_subgroup`.",
"type": "string"
},
"content_purpose_subgroup": {
"description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.",
"type": "string"
},
"content_purpose_supergroup": {
"description": "Document supergroup grouping documents by a purpose",
"type": "string"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"service_manual_service_standard"
],
"type": "string"
},
"email_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"expanded_links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"email_alert_signup": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "References an email alert signup page for the service standard"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"first_published_at": {
"$ref": "#/definitions/first_published_at"
},
"government_document_supertype": {
"description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions",
"type": "string"
},
"govuk_request_id": {
"$ref": "#/definitions/govuk_request_id"
},
"links": {
"additionalProperties": false,
"properties": {
"email_alert_signup": {
"$ref": "#/definitions/guid_list",
"description": "References an email alert signup page for the service standard"
},
"facet_groups": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/guid_list",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/guid_list",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"mainstream_browse_pages": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/guid_list",
"description": "The user needs this piece of content meets."
},
"ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/guid_list",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/guid_list",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/guid_list",
"description": "The parent content item.",
"maxItems": 1
},
"policy_areas": {
"$ref": "#/definitions/guid_list",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/guid_list",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/guid_list",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/guid_list",
"description": "Prototype-stage taxonomy label for this content item"
},
"topics": {
"$ref": "#/definitions/guid_list",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"navigation_document_supertype": {
"description": "Document type grouping powering the new taxonomy-based navigation pages",
"type": "string"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"payload_version": {
"$ref": "#/definitions/payload_version"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"$ref": "#/definitions/public_updated_at"
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"redirects": {
"additionalItems": false,
"items": {},
"type": "array"
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"routes": {
"$ref": "#/definitions/routes"
},
"schema_name": {
"enum": [
"service_manual_service_standard"
],
"type": "string"
},
"search_user_need_document_supertype": {
"description": "Document supertype grouping core and government documents",
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"update_type": {
"$ref": "#/definitions/update_type"
},
"user_journey_document_supertype": {
"description": "Document type grouping powering analytics of user journeys",
"type": "string"
},
"user_need_document_supertype": {
"description": "DEPRECATED. Use `content_purpose_document_supertype`.",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"analytics_identifier",
"base_path",
"content_id",
"description",
"details",
"document_type",
"email_document_supertype",
"expanded_links",
"first_published_at",
"government_document_supertype",
"govuk_request_id",
"links",
"locale",
"navigation_document_supertype",
"payload_version",
"phase",
"public_updated_at",
"publishing_app",
"redirects",
"rendering_app",
"routes",
"schema_name",
"title",
"update_type",
"user_journey_document_supertype"
],
"type": "object"
} | o21352 |
{
"properties": {
"AllowLocalPrinters": {
"description": "Allow printers that connect directly to user's computer",
"type": "boolean"
},
"DefaultPrinter": {
"description": "Default Printer Configuration",
"properties": {
"DeviceURI": {
"description": "The device URI of the Default Printer",
"type": "string"
},
"DisplayName": {
"description": "The display name of the Default Printer",
"type": "string"
}
},
"type": "object"
},
"FooterFontName": {
"default": "Courier",
"description": "The name of the font to use for the footer eg. Courier",
"type": "string"
},
"FooterFontSize": {
"default": "7",
"description": "The font size (in points) of the footer",
"type": "string"
},
"PayloadDescription": {
"default": "Printer Settings",
"description": "Description of the payload",
"type": "string"
},
"PayloadDisplayName": {
"default": "Printer Settings",
"description": "Name of the payload",
"type": "string"
},
"PayloadIdentifier": {
"default": "com.apple.mcxprinting",
"description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier",
"type": "string"
},
"PayloadOrganization": {
"description": "This value describes the issuing organization of the profile, as displayed to the user",
"type": "string"
},
"PayloadType": {
"default": "com.apple.mcxprinting",
"description": "The type of the payload, a reverse dns string",
"type": "string"
},
"PayloadUUID": {
"default": "",
"description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)",
"pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$",
"type": "string"
},
"PayloadVersion": {
"default": 1,
"description": "The version of the whole configuration profile.",
"type": "number"
},
"PrintFooter": {
"description": "Print a page footer including the user name and date",
"type": "boolean"
},
"PrintMACAddress": {
"description": "Include the MAC address of the user's computer in the footer",
"type": "boolean"
},
"RequireAdminToAddPrinters": {
"description": "Only administrators may modify the printer list",
"type": "boolean"
},
"RequireAdminToPrintLocally": {
"description": "Require an administrator password to print to locally connected printers",
"type": "boolean"
},
"ShowOnlyManagedPrinters": {
"description": "Only show printers managed by profiles",
"type": "boolean"
},
"UserPrinterList": {
"description": "A list of printers to manage. The PPD software must already exist on the target",
"properties": {
"QueueName": {
"description": "The queue name of the printer, must not include spaces or special characters. Not shown to the user.",
"properties": {
"DeviceURI": {
"description": "The printer device URI, as would be passed to CUPS eg. lpd://printer.name/queue",
"type": "string"
},
"DisplayName": {
"description": "The display name shown to the user when choosing a printer.",
"type": "string"
},
"Location": {
"description": "The printer location",
"type": "string"
},
"Model": {
"description": "The printer model usually corresponding to the PPD model name eg 2nd column of `lpinfo -m`.",
"type": "string"
},
"Option": {
"default": {},
"description": "Printer Options. A dict of key to value including options normally supplied to lpadmin",
"type": "object"
},
"PPDURL": {
"description": "The path to the PPD file. Local file URLs should be prefixed with file://localhost/",
"type": "string"
},
"PrinterLocked": {
"default": false,
"description": "The printer requires an administrator password",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}
},
"title": "com.apple.mcxprinting",
"type": "object"
} | o61618 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"victory_points": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"skirmishes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
},
"map_scores": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
}
},
"required": [
"type",
"scores"
]
}
}
},
"required": [
"id",
"scores",
"map_scores"
]
}
},
"maps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"type": {
"type": "string"
},
"scores": {
"type": "object",
"properties": {
"red": {
"type": "number"
},
"blue": {
"type": "number"
},
"green": {
"type": "number"
}
}
}
},
"required": [
"id",
"type",
"scores"
]
}
}
},
"required": [
"id",
"scores",
"victory_points",
"skirmishes",
"maps"
]
},
"properties": {},
"additionalProperties": false
} | o45226 |
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"addPanel": { "$ref": "#/$defs/AddPanelConfig" },
"svgLoader": {
"description": "Configures how SVG assets load.\nRefer to https://help.codux.com/kb/en/article/kb17934 for more information.",
"type": "string",
"default": "asset"
},
"boardsPath": {
"description": "Default directory for new boards, relative to the project root.\nRefer to https://help.codux.com/kb/en/article/kb19337 for more information.",
"type": "string",
"default": "src/_codux/boards"
},
"scripts": {
"description": "Configures scripts for project users to run from Codux (triggerable and on demand).\nRefer to https://help.codux.com/kb/en/article/kb30920 for more information.",
"oneOf": [
{
"type": "object",
"additionalProperties": { "$ref": "#/$defs/ConfiguredScript" },
"propertyNames": { "type": "string" }
}
]
},
"conditionalClassnamesConfig": {
"description": "Options for using the classNames utility library, including path to classNames module, and target export.\nRefer to https://help.codux.com/kb/en/article/kb36122 for more information.",
"oneOf": [{ "$ref": "#/$defs/IClassNamesPluginsOptions" }]
},
"boardGlobalSetup": {
"description": "Path to a file that will be evaluated before each board is rendered,\nUseful for importing global stylesheets and initializing global variables.\nCan be absolute or relative to the project root (in which case it needs to start with './')\nRefer to https://help.codux.com/kb/en/article/kb36623 for more information.",
"oneOf": [{ "type": "null" }, { "type": "string" }]
},
"previewConfiguration": { "$ref": "#/$defs/PreviewConfiguration" },
"cssCompilation": { "$ref": "#/$defs/ICompilationConfig" },
"safeRender": { "$ref": "#/$defs/PluggableSafeModeConfig" },
"httpServerPort": {
"description": "Port of HTTP server that is used to serve previews and user project itself.",
"type": "number",
"default": 0
},
"newComponent": { "$ref": "#/$defs/INewComponentConfig" },
"ignoredSubPaths": { "$ref": "#/$defs/IgnoredSubPaths" },
"fileNamingConvention": {
"description": "Configures file-naming convention for new component creation.\nRefer to https://help.codux.com/kb/en/article/kb29627 for more information.\nOptions: \"pascal-case\" | \"camel-case\" | \"kebab-case\"",
"oneOf": [{ "type": "string" }]
},
"resolve": { "$ref": "#/$defs/IResolveConfiguration" },
"sassCompilation": { "$ref": "#/$defs/SassCompilationProjectConfigEntry" },
"serverProxyMap": {
"type": "object",
"additionalProperties": { "type": "string" },
"propertyNames": { "type": "string" },
"description": "Configures proxy servers for Codux to redirect requests to.\nThe key is the path to proxy requests from, and the value is the url to proxy requests to.\nRefer to https://help.codux.com/kb/en/article/kb18137 for more information."
},
"styling": {
"description": "Styling related configuration.\nContains field for styling solution which determines the main styling solution in the user's project.\nRefer to https://help.codux.com/kb/en/article/kb31817 for more information.",
"type": "object",
"properties": {
"solution": {
"description": "Default file extension to use for component style sheets in the project.\nOptions: \"css\" | \"sass\" | \"css modules\" | \"sass modules\" | \"scss\" | \"scss modules\" | \"stylable\"",
"oneOf": [{ "type": "string" }]
}
}
},
"styleFilesConfig": { "$ref": "#/$defs/IStyleFilesConfig" },
"tailwindcssConfig": { "oneOf": [{ "type": "string" }] },
"formatting": {
"description": "Formats code styling in Codux code drawer.\nRefer to https://help.codux.com/kb/en/article/kb21416 for more information.",
"oneOf": [
{ "type": "null" },
{ "type": "string" },
{ "type": "number" },
{ "type": "array", "items": { "$ref": "#/$defs/Json" } },
{ "type": "object" },
{ "type": "boolean" }
]
},
"componentsDiscovery": { "$ref": "#/$defs/ComponentsDiscoveryConfig" }
},
"$defs": {
"AddPanelConfig": {
"description": "Add Panel config.\nCan contain list of libraries installed in the project which provide boards for Codux.",
"type": "object",
"properties": {
"assets": {
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
}
}
},
"ConfiguredScript": {
"description": "The type of configured script users will define in the `codux.config.json`.",
"oneOf": [
{ "$ref": "#/$defs/ScriptFromConfig" },
{ "$ref": "#/$defs/BatchFromConfig" }
]
},
"ScriptFromConfig": {
"description": "Scripts have a `commmand` but not an array of scripts to `run`.",
"type": "object",
"properties": {
"command": {
"description": "This is the command that the script runs when executed.",
"type": "string"
},
"title": {
"description": "Script title in the UI.\nWill be available to use from Codux.",
"oneOf": [{ "type": "string" }]
},
"description": {
"description": "Script description in the UI.",
"oneOf": [{ "type": "string" }]
},
"trigger": {
"description": "Initiate Git commands in Codux before running the rest of the scripts.\nThe array of triggers may include \"setup\" for when the user opens the project for the first time,\n\"pull\" for when branch commits sync, and \"checkout\" for when switching branches.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
}
},
"required": ["command"]
},
"BatchFromConfig": {
"description": "Batches have a `run` array but not a `commmand`.",
"type": "object",
"properties": {
"run": {
"description": "The value of this parameter is an array of script objects to include in the batch.",
"type": "array",
"items": { "type": "string" }
},
"title": {
"description": "Script title in the UI.\nWill be available to use from Codux.",
"oneOf": [{ "type": "string" }]
},
"description": {
"description": "Script description in the UI.",
"oneOf": [{ "type": "string" }]
},
"trigger": {
"description": "Initiate Git commands in Codux before running the rest of the scripts.\nThe array of triggers may include \"setup\" for when the user opens the project for the first time,\n\"pull\" for when branch commits sync, and \"checkout\" for when switching branches.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
}
},
"required": ["run"]
},
"IClassNamesPluginsOptions": {
"type": "object",
"properties": {
"classnamesPath": { "type": "string" },
"classnamesTarget": { "type": "string" }
},
"required": ["classnamesPath", "classnamesTarget"]
},
"PreviewConfiguration": {
"description": "Specifies environment variables to use globally across the project.\nRefer to https://help.codux.com/kb/en/article/kb37722 for more information.",
"type": "object",
"properties": {
"environmentVariables": {
"type": "object",
"additionalProperties": { "type": "string" },
"propertyNames": { "type": "string" },
"description": "variables that are being accessed from process.env"
}
},
"required": ["environmentVariables"]
},
"ICompilationConfig": {
"description": "Enables CSS modules in your project.\nRefer to https://help.codux.com/kb/en/article/kb25813 for more information.",
"type": "object",
"properties": {
"activateCssModules": {
"description": "Enables or disables the use of CSS modules.",
"type": "boolean"
},
"cssModulesExt": {
"description": "The extension types for files to load as modules.",
"type": "array",
"items": { "type": "string" }
}
},
"required": ["activateCssModules", "cssModulesExt"]
},
"PluggableSafeModeConfig": {
"description": "Configures maximum rendered elements.\nRefer to https://help.codux.com/kb/en/article/kb18414 for more information.",
"type": "object",
"properties": {
"maxInstancesPerComponent": { "oneOf": [{ "type": "number" }] }
}
},
"INewComponentConfig": {
"description": "Configures default paths for new component and template files.\nRefer to https://help.codux.com/kb/en/article/kb16522 for more information.",
"type": "object",
"properties": {
"componentsPath": {
"description": "Path where new components and related files will save to.",
"oneOf": [{ "type": "string" }]
},
"templatesPath": {
"description": "Path where project templates are stored.",
"oneOf": [{ "type": "string" }]
}
}
},
"IgnoredSubPaths": {
"description": "Specifies project folders to exclude from component search.\nRefer to https://help.codux.com/kb/en/article/kb14730 for more information.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
},
"IResolveConfiguration": {
"description": "Includes package assets from additional sources, and creates aliases and fallbacks.\nRefer to https://help.codux.com/kb/en/article/kb18719 for more information.",
"type": "object",
"properties": {
"alias": {
"description": "Aliases for package requests.\nRecord key is the request to be mapped, value is the new target.\nAlias is attempted before original request.",
"oneOf": [
{
"type": "object",
"additionalProperties": {
"oneOf": [{ "type": "string" }, { "type": "boolean" }]
},
"propertyNames": { "type": "string" }
}
]
},
"fallback": {
"description": "Fallback for package requests.\nRecord key is the request to be mapped, value is the new target.\nOriginal request is attempted before fallback.",
"oneOf": [
{
"type": "object",
"additionalProperties": {
"oneOf": [{ "type": "string" }, { "type": "boolean" }]
},
"propertyNames": { "type": "string" }
}
]
},
"packageRoots": {
"description": "Folders to use when searching for packages.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
},
"workspaceAlias": {
"description": "Aliases for all package requests in a monorepo.\nRecord key is the request to be mapped, value is the new target.",
"oneOf": [
{
"type": "object",
"additionalProperties": { "type": "string" },
"propertyNames": { "type": "string" }
}
]
}
}
},
"SassCompilationProjectConfigEntry": {
"description": "Adds Sass support to compilations.\nRefer to https://help.codux.com/kb/en/article/kb19315 for more information.",
"type": "object",
"properties": {
"modules": {
"description": "Defines path and module extensions for Sass modules to include and/or ignore.\nInput as an array of glob patterns.",
"type": "object",
"properties": {
"include": {
"description": "Array of glob patterns to include.",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
},
"ignore": {
"description": "Array of glob patterns to ignore.",
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
}
},
"required": ["include"]
},
"resolveUrls": {
"description": "Determines whether URLs in Sass files should resolve to absolute file paths before compiling them.",
"type": "boolean"
},
"includePaths": {
"description": "Array of paths to resolve Sass files from.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
}
},
"required": ["modules", "resolveUrls"]
},
"IStyleFilesConfig": {
"description": "Style files config",
"type": "object",
"properties": {
"commonStyleFilePattern": {
"description": "ext glob pattern of common style files that are used by other components. Defines common rules category.",
"oneOf": [{ "type": "string" }]
}
}
},
"Json": {
"oneOf": [
{ "type": "null" },
{ "type": "string" },
{ "type": "number" },
{ "type": "array", "items": { "$ref": "#/$defs/Json" } },
{ "type": "object" },
{ "type": "boolean" }
]
},
"ComponentsDiscoveryConfig": {
"description": "Scopes component discovery in your project.\nRefer to https://help.codux.com/kb/en/article/kb37113 for more information.",
"type": "object",
"properties": {
"include": {
"description": "Array of glob patterns to include.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
},
"exclude": {
"description": "Array of glob patterns to exclude.",
"oneOf": [{ "type": "array", "items": { "type": "string" } }]
}
}
}
}
}
| codux |
{
"description": "An individual log message",
"properties": {
"args": {},
"created": {},
"exc_info": {},
"exc_text": {},
"filename": {},
"funcName": {},
"levelname": {},
"levelno": {},
"lineno": {},
"message": {
"type": "string"
},
"module": {},
"msecs": {},
"name": {},
"pathname": {},
"process": {},
"processName": {},
"relativeCreated": {},
"thread": {},
"threadName": {}
},
"required": [
"message"
],
"title": "Record",
"type": "object"
} | o68826 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A state for the scenario",
"type": "object",
"properties": {
"parameters": {
"description": "The values for the parameters",
"type": "object",
"properties": {
"userDefined": {
"type": "object",
"properties": {
"independent": {
"type": "object",
"patternProperties": {
"^p([0-9]+)|t$": {}
},
"additionalProperties": false,
"example": {
"p1": false,
"p2": 0,
"p3": "A string"
}
},
"perCharacter": {
"type": "object",
"additionalProperties": {
"type": "object"
}
}
},
"required": [
"independent",
"perCharacter"
]
},
"fixed": {
"type": "object",
"properties": {
"independent": {
"type": "object"
},
"perCharacter": {
"type": "object",
"additionalProperties": {
"type": "object"
}
}
},
"required": [
"independent",
"perCharacter"
]
}
}
},
"statement": {
"type": [
"object",
"null"
],
"description": "Statement will be present in output, but is not required in input",
"properties": {
"type": {
"description": "The statement type: whether it is for a computer or a player",
"type": "string",
"enum": [
"player",
"computer",
"situation"
]
},
"text": {
"description": "The actual text for the statement",
"type": "string"
},
"character": {
"description": "The character this statement belongs to, if any",
"type": "string"
},
"propertyValues": {
"description": "The property values belonging to this statement",
"type": "object",
"properties": {
"independent": {
"type": "object"
},
"perCharacter": {
"type": "object",
"additionalProperties": {
"type": "object"
}
}
},
"required": [
"independent",
"perCharacter"
]
}
},
"additionalProperties": false,
"required": [
"type",
"text",
"propertyValues"
]
},
"internal": {
"type": "object",
"description": "This property contains internal data for the ScenarioReasoner and must not be removed from the state. Internal is not always present in output; when it is, it must be sent back in input"
}
},
"required": [
"parameters"
]
} | o16047 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Babbage Model",
"type": "object",
"format": "valid_hierarchies",
"properties": {
"fact_table": {
"$ref": "#/definitions/table"
},
"measures": {
"$ref": "#/definitions/measures"
},
"dimensions": {
"$ref": "#/definitions/dimensions"
},
"hierarchies": {
"$ref": "#/definitions/hierarchies"
},
"joins": {
"type": "array"
}
},
"required": [
"measures",
"dimensions",
"fact_table"
],
"definitions": {
"label": {
"type": "string",
"minLength": 2,
"maxLength": 500
},
"description": {
"type": "string",
"minLength": 0,
"maxLength": 1000,
"default": ""
},
"column": {
"type": "string",
"minLength": 2,
"maxLength": 250
},
"table": {
"type": "string",
"minLength": 2,
"maxLength": 250,
"pattern": "^[a-zA-Z][a-zA-Z0-9_\\-]*[a-zA-Z0-9]$"
},
"dimensions": {
"type": "object",
"patternProperties": {
"^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$": {
"$ref": "#/definitions/dimension"
}
},
"additionalProperties": false
},
"dimension": {
"type": "object",
"format": "attribute_exists",
"properties": {
"label": {
"$ref": "#/definitions/label"
},
"description": {
"$ref": "#/definitions/description"
},
"label_attribute": {
"type": "string",
"pattern": "^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$"
},
"key_attribute": {
"type": "string",
"pattern": "^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$"
},
"attributes": {
"$ref": "#/definitions/attributes"
}
},
"required": [
"label",
"attributes",
"key_attribute"
]
},
"attributes": {
"type": "object",
"minProperties": 1,
"patternProperties": {
"^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$": {
"$ref": "#/definitions/attribute"
}
},
"additionalProperties": false
},
"attribute": {
"type": "object",
"properties": {
"label": {
"$ref": "#/definitions/label"
},
"description": {
"$ref": "#/definitions/description"
},
"column": {
"$ref": "#/definitions/column"
}
},
"required": [
"label",
"column"
]
},
"measures": {
"type": "object",
"minProperties": 1,
"patternProperties": {
"^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$": {
"$ref": "#/definitions/measure"
}
},
"additionalProperties": false
},
"aggregates": {
"type": "array",
"items": {
"type": "string",
"enum": [
"sum",
"max",
"min",
"avg",
"count"
]
},
"default": [
"sum"
],
"minItems": 1,
"_uniqueItems": true
},
"measure": {
"type": "object",
"properties": {
"label": {
"$ref": "#/definitions/label"
},
"description": {
"$ref": "#/definitions/description"
},
"aggregates": {
"$ref": "#/definitions/aggregates"
},
"column": {
"$ref": "#/definitions/column"
}
},
"required": [
"label",
"column"
]
},
"hierarchies": {
"type": "object",
"patternProperties": {
"^[a-zA-Z][a-zA-Z0-9_]*[a-zA-Z0-9]$": {
"$ref": "#/definitions/hierarchy"
}
},
"additionalProperties": false
},
"hierarchy": {
"type": "object",
"properties": {
"label": {
"$ref": "#/definitions/label"
},
"levels": {
"$ref": "#/definitions/levels"
}
},
"required": [
"levels"
]
},
"levels": {
"type": "array",
"items": {
"$ref": "#/definitions/level"
},
"minItems": 1,
"_uniqueItems": true
},
"level": {
"type": "string"
}
}
} | o77405 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress": {
"description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.",
"properties": {
"hostname": {
"description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
"type": "string"
},
"ip": {
"description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)",
"type": "string"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus": {
"description": "LoadBalancerStatus represents the status of a load-balancer.",
"properties": {
"ingress": {
"description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerIngress"
},
"type": "array"
}
},
"type": "object"
}
},
"description": "ServiceStatus represents the current status of a service.",
"properties": {
"loadBalancer": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LoadBalancerStatus",
"description": "LoadBalancer contains the current status of the load-balancer, if one is present."
}
},
"type": "object"
} | kb_993_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Savings account source of income",
"type": "object",
"properties": {
"accountName": {
"title": "Account name",
"description": "Friendly account name. Each account name added must be unique for that National Insurance number. The account name must be between 1 and 32 characters in length. Allowed characters, including spaces are: mixed case alphanumeric characters and the characters; &'()*,-./@\u00a3",
"type": "string",
"pattern": "^[A-Za-z0-9 &'\\(\\)\\*,\\-\\./@\u00a3]{1,32}$"
}
},
"required": [
"accountName"
],
"additionalProperties": false
} | o46406 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "statement",
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "A value from the enumeration for this statement"
},
"extended_value": {
"properties": {
"vocab_id": {
"type": "string",
"description": "A URI identifying the vocabulary that the extended value is defined in"
},
"value": {
"type": "string",
"description": "The value in the extended vocabulary"
}
},
"required": [
"value"
]
},
"description": {
"type": "string",
"description": "A textual description of this statement"
},
"credibility": {
"type": "integer",
"minimum": 0,
"maximum": 6,
"description": "The credibility of this statement, using the Admirality scale"
}
},
"required": [
"value",
"credibility"
]
} | o51223 |
{
"properties": {
"dimensions": {
"properties": {
"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",
"height",
"radius"
],
"type": "object"
},
"shape": {
"description": "The 3D shape for which the area and volume needs to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_volume_2f1888fb |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "10/EPMP get metadata keys response: a set of endpoint metadata keys",
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-zA-Z0-9_]+$",
"description": "Endpoint metadata key name"
},
"_uniqueItems": true
} | o53906 |
{
"definitions": {
"post": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"created_at": {
"description": "when post was created",
"example": "2012-01-01T12:00:00Z",
"format": "date-time",
"type": [
"string"
]
},
"id": {
"description": "unique identifier of post",
"example": "01234567-89ab-cdef-0123-456789abcdef",
"format": "uuid",
"type": [
"string"
]
},
"identity": {
"$ref": "#/definitions/post/definitions/id"
},
"updated_at": {
"description": "when post was updated",
"example": "2012-01-01T12:00:00Z",
"format": "date-time",
"type": [
"string"
]
}
},
"description": "FIXME",
"links": [
{
"description": "Create a new post.",
"href": "/posts",
"method": "POST",
"rel": "create",
"schema": {
"properties": {},
"type": [
"object"
]
},
"title": "Create"
},
{
"description": "Delete an existing post.",
"href": "/posts/{(%23%2Fdefinitions%2Fpost%2Fdefinitions%2Fidentity)}",
"method": "DELETE",
"rel": "destroy",
"title": "Delete"
},
{
"description": "Info for existing post.",
"href": "/posts/{(%23%2Fdefinitions%2Fpost%2Fdefinitions%2Fidentity)}",
"method": "GET",
"rel": "self",
"title": "Info"
},
{
"description": "List existing posts.",
"href": "/posts",
"method": "GET",
"rel": "instances",
"title": "List"
},
{
"description": "Update an existing post.",
"href": "/posts/{(%23%2Fdefinitions%2Fpost%2Fdefinitions%2Fidentity)}",
"method": "PATCH",
"rel": "update",
"schema": {
"properties": {},
"type": [
"object"
]
},
"title": "Update"
}
],
"properties": {
"created_at": {
"$ref": "#/definitions/post/definitions/created_at"
},
"id": {
"$ref": "#/definitions/post/definitions/id"
},
"updated_at": {
"$ref": "#/definitions/post/definitions/updated_at"
}
},
"title": "Post",
"type": [
"object"
]
},
"user": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"created_at": {
"description": "when user was created",
"example": "2012-01-01T12:00:00Z",
"format": "date-time",
"type": [
"string"
]
},
"id": {
"description": "unique identifier of user",
"example": "01234567-89ab-cdef-0123-456789abcdef",
"format": "uuid",
"type": [
"string"
]
},
"identity": {
"$ref": "#/definitions/user/definitions/id"
},
"updated_at": {
"description": "when user was updated",
"example": "2012-01-01T12:00:00Z",
"format": "date-time",
"type": [
"string"
]
}
},
"description": "FIXME",
"links": [
{
"description": "Create a new user.",
"href": "/users",
"method": "POST",
"rel": "create",
"schema": {
"properties": {},
"type": [
"object"
]
},
"title": "Create"
},
{
"description": "Delete an existing user.",
"href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}",
"method": "DELETE",
"rel": "destroy",
"title": "Delete"
},
{
"description": "Info for existing user.",
"href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}",
"method": "GET",
"rel": "self",
"title": "Info"
},
{
"description": "List existing users.",
"href": "/users",
"method": "GET",
"rel": "instances",
"title": "List"
},
{
"description": "Update an existing user.",
"href": "/users/{(%23%2Fdefinitions%2Fuser%2Fdefinitions%2Fidentity)}",
"method": "PATCH",
"rel": "update",
"schema": {
"properties": {},
"type": [
"object"
]
},
"title": "Update"
}
],
"properties": {
"created_at": {
"$ref": "#/definitions/user/definitions/created_at"
},
"id": {
"$ref": "#/definitions/user/definitions/id"
},
"updated_at": {
"$ref": "#/definitions/user/definitions/updated_at"
}
},
"title": "User",
"type": [
"object"
]
}
},
"description": "Testing schema for Prmd RakeTasks",
"links": [
{
"href": "https://prmd.rake_task_test.io",
"rel": "self"
}
],
"properties": {
"post": {
"$ref": "#/definitions/post"
},
"user": {
"$ref": "#/definitions/user"
}
},
"title": "Rake Task Test",
"type": [
"object"
]
} | o83312 |
{
"definitions": {
"book": {
"properties": {
"authors": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"coverFilename": {
"type": "string"
},
"id": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"_uniqueItems": true
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"id",
"title",
"authors",
"url",
"tags",
"coverFilename"
],
"type": "object"
}
},
"properties": {
"lastBookId": {
"minimum": -1,
"type": "integer"
},
"list": {
"items": {
"$ref": "#/definitions/book"
},
"type": "array",
"_uniqueItems": true
}
},
"required": [
"lastBookId",
"list"
],
"type": "object"
} | o21846 |
{
"description": "Updates version number based on a given increment",
"properties": {
"increment": {
"enum": [
"Patch",
"Minor",
"Major"
],
"type": "string",
"x-prompt": "Which version update would you like to run"
}
},
"required": [
"increment"
],
"title": "Versioning Schematic",
"type": "object"
} | o83326 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"headline": {
"type": "object",
"required": [
"htmlText"
],
"properties": {
"htmlText": {
"type": "string",
"description": "The HTML headline content."
}
}
},
"intro": {
"type": "object",
"properties": {
"htmlText": {
"type": "string",
"description": "Additional introductory HTML text to be shown below the headline."
}
}
}
}
} | o9404 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/transcend-io/cli/main/transcend-yml-schema-v4.json",
"title": "transcend.yml",
"description": "Define personal data schema in code using Transcend.",
"type": "object",
"properties": {
"api-keys": {
"type": "array",
"items": {
"type": "object",
"required": ["title"],
"properties": {
"title": {
"type": "string"
}
}
}
},
"templates": {
"type": "array",
"items": {
"type": "object",
"required": ["title"],
"properties": {
"title": {
"type": "string"
}
}
}
},
"enrichers": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["title", "output-identifiers"],
"properties": {
"title": {
"type": "string"
},
"output-identifiers": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
{
"type": "object",
"properties": {
"description": {
"type": "string"
},
"url": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"SOMBRA",
"email",
"phone",
"SERVER",
"PERSON",
"LEGAL_HOLD",
"AUTO_APPROVE",
"REGEX_MATCH",
"REGION_MATCH",
"DATABASE",
"LOOKER",
"WAIT_PERIOD"
]
},
"input-identifier": {
"type": "string"
},
"testRegex": {
"type": "string"
},
"lookerQueryTitle": {
"type": "string"
},
"expirationDuration": {
"type": "number"
},
"transitionRequestStatus": {
"type": "string",
"enum": ["CANCELED", "ON_HOLD"]
},
"phoneNumbers": {
"type": "array",
"items": {
"type": "string"
}
},
"regionList": {
"type": "array",
"items": {
"type": "string",
"enum": [
"EU",
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BA",
"BW",
"BV",
"BR",
"IO",
"VG",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"BQ",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"KP",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"KR",
"SS",
"ES",
"LK",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UM",
"VI",
"UG",
"UA",
"AE",
"GB",
"US",
"UY",
"UZ",
"VU",
"VA",
"VE",
"VN",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"AD-02",
"AD-03",
"AD-04",
"AD-05",
"AD-06",
"AD-07",
"AD-08",
"AE-AJ",
"AE-AZ",
"AE-DU",
"AE-FU",
"AE-RK",
"AE-SH",
"AE-UQ",
"AF-BAL",
"AF-BAM",
"AF-BDG",
"AF-BDS",
"AF-BGL",
"AF-DAY",
"AF-FRA",
"AF-FYB",
"AF-GHA",
"AF-GHO",
"AF-HEL",
"AF-HER",
"AF-JOW",
"AF-KAB",
"AF-KAN",
"AF-KAP",
"AF-KDZ",
"AF-KHO",
"AF-KNR",
"AF-LAG",
"AF-LOG",
"AF-NAN",
"AF-NIM",
"AF-NUR",
"AF-PAN",
"AF-PAR",
"AF-PIA",
"AF-PKA",
"AF-SAM",
"AF-SAR",
"AF-TAK",
"AF-URU",
"AF-WAR",
"AF-ZAB",
"AG-03",
"AG-04",
"AG-05",
"AG-06",
"AG-07",
"AG-08",
"AG-10",
"AG-11",
"AL-01",
"AL-02",
"AL-03",
"AL-04",
"AL-05",
"AL-06",
"AL-07",
"AL-08",
"AL-09",
"AL-10",
"AL-11",
"AL-12",
"AM-AG",
"AM-AR",
"AM-AV",
"AM-ER",
"AM-GR",
"AM-KT",
"AM-LO",
"AM-SH",
"AM-SU",
"AM-TV",
"AM-VD",
"AO-BGO",
"AO-BGU",
"AO-BIE",
"AO-CAB",
"AO-CCU",
"AO-CNN",
"AO-CNO",
"AO-CUS",
"AO-HUA",
"AO-HUI",
"AO-LNO",
"AO-LSU",
"AO-LUA",
"AO-MAL",
"AO-MOX",
"AO-NAM",
"AO-UIG",
"AO-ZAI",
"AR-A",
"AR-B",
"AR-C",
"AR-D",
"AR-E",
"AR-F",
"AR-G",
"AR-H",
"AR-J",
"AR-K",
"AR-L",
"AR-M",
"AR-N",
"AR-P",
"AR-Q",
"AR-R",
"AR-S",
"AR-T",
"AR-U",
"AR-V",
"AR-W",
"AR-X",
"AR-Y",
"AR-Z",
"AT-1",
"AT-2",
"AT-3",
"AT-4",
"AT-5",
"AT-6",
"AT-7",
"AT-8",
"AT-9",
"AU-ACT",
"AU-NSW",
"AU-NT",
"AU-QLD",
"AU-SA",
"AU-TAS",
"AU-VIC",
"AU-WA",
"AZ-ABS",
"AZ-AGA",
"AZ-AGC",
"AZ-AGM",
"AZ-AGS",
"AZ-AGU",
"AZ-AST",
"AZ-BA",
"AZ-BAB",
"AZ-BAL",
"AZ-BAR",
"AZ-BEY",
"AZ-BIL",
"AZ-CAB",
"AZ-CAL",
"AZ-CUL",
"AZ-DAS",
"AZ-FUZ",
"AZ-GA",
"AZ-GAD",
"AZ-GOR",
"AZ-GOY",
"AZ-GYG",
"AZ-HAC",
"AZ-IMI",
"AZ-ISM",
"AZ-KAL",
"AZ-KAN",
"AZ-KUR",
"AZ-LA",
"AZ-LAC",
"AZ-LAN",
"AZ-LER",
"AZ-MAS",
"AZ-MI",
"AZ-NA",
"AZ-NEF",
"AZ-NV",
"AZ-NX",
"AZ-OGU",
"AZ-ORD",
"AZ-QAB",
"AZ-QAX",
"AZ-QAZ",
"AZ-QBA",
"AZ-QBI",
"AZ-QOB",
"AZ-QUS",
"AZ-SA",
"AZ-SAB",
"AZ-SAD",
"AZ-SAH",
"AZ-SAK",
"AZ-SAL",
"AZ-SAR",
"AZ-SAT",
"AZ-SBN",
"AZ-SIY",
"AZ-SKR",
"AZ-SM",
"AZ-SMI",
"AZ-SMX",
"AZ-SR",
"AZ-SUS",
"AZ-TAR",
"AZ-TOV",
"AZ-UCA",
"AZ-XA",
"AZ-XAC",
"AZ-XCI",
"AZ-XIZ",
"AZ-XVD",
"AZ-YAR",
"AZ-YE",
"AZ-YEV",
"AZ-ZAN",
"AZ-ZAQ",
"AZ-ZAR",
"BA-BIH",
"BA-BRC",
"BA-SRP",
"BB-01",
"BB-02",
"BB-03",
"BB-04",
"BB-05",
"BB-06",
"BB-07",
"BB-08",
"BB-09",
"BB-10",
"BB-11",
"BD-01",
"BD-02",
"BD-03",
"BD-04",
"BD-05",
"BD-06",
"BD-07",
"BD-08",
"BD-09",
"BD-10",
"BD-11",
"BD-12",
"BD-13",
"BD-14",
"BD-15",
"BD-16",
"BD-17",
"BD-18",
"BD-19",
"BD-20",
"BD-21",
"BD-22",
"BD-23",
"BD-24",
"BD-25",
"BD-26",
"BD-27",
"BD-28",
"BD-29",
"BD-30",
"BD-31",
"BD-32",
"BD-33",
"BD-34",
"BD-35",
"BD-36",
"BD-37",
"BD-38",
"BD-39",
"BD-40",
"BD-41",
"BD-42",
"BD-43",
"BD-44",
"BD-45",
"BD-46",
"BD-47",
"BD-48",
"BD-49",
"BD-50",
"BD-51",
"BD-52",
"BD-53",
"BD-54",
"BD-55",
"BD-56",
"BD-57",
"BD-58",
"BD-59",
"BD-60",
"BD-61",
"BD-62",
"BD-63",
"BD-64",
"BD-A",
"BD-B",
"BD-C",
"BD-D",
"BD-E",
"BD-F",
"BD-G",
"BD-H",
"BE-BRU",
"BE-VAN",
"BE-VBR",
"BE-VLG",
"BE-VLI",
"BE-VOV",
"BE-VWV",
"BE-WAL",
"BE-WBR",
"BE-WHT",
"BE-WLG",
"BE-WLX",
"BE-WNA",
"BF-01",
"BF-02",
"BF-03",
"BF-04",
"BF-05",
"BF-06",
"BF-07",
"BF-08",
"BF-09",
"BF-10",
"BF-11",
"BF-12",
"BF-13",
"BF-BAL",
"BF-BAM",
"BF-BAN",
"BF-BAZ",
"BF-BGR",
"BF-BLG",
"BF-BLK",
"BF-COM",
"BF-GAN",
"BF-GNA",
"BF-GOU",
"BF-HOU",
"BF-IOB",
"BF-KAD",
"BF-KEN",
"BF-KMD",
"BF-KMP",
"BF-KOP",
"BF-KOS",
"BF-KOT",
"BF-KOW",
"BF-LER",
"BF-LOR",
"BF-MOU",
"BF-NAM",
"BF-NAO",
"BF-NAY",
"BF-NOU",
"BF-OUB",
"BF-OUD",
"BF-PAS",
"BF-PON",
"BF-SEN",
"BF-SIS",
"BF-SMT",
"BF-SNG",
"BF-SOM",
"BF-SOR",
"BF-TAP",
"BF-TUI",
"BF-YAG",
"BF-YAT",
"BF-ZIR",
"BF-ZON",
"BF-ZOU",
"BG-01",
"BG-02",
"BG-03",
"BG-04",
"BG-05",
"BG-06",
"BG-07",
"BG-08",
"BG-09",
"BG-10",
"BG-11",
"BG-12",
"BG-13",
"BG-14",
"BG-15",
"BG-16",
"BG-17",
"BG-18",
"BG-19",
"BG-20",
"BG-21",
"BG-22",
"BG-23",
"BG-24",
"BG-25",
"BG-26",
"BG-27",
"BG-28",
"BH-13",
"BH-14",
"BH-15",
"BH-17",
"BI-BB",
"BI-BL",
"BI-BM",
"BI-BR",
"BI-CA",
"BI-CI",
"BI-GI",
"BI-KI",
"BI-KR",
"BI-KY",
"BI-MA",
"BI-MU",
"BI-MW",
"BI-MY",
"BI-NG",
"BI-RM",
"BI-RT",
"BI-RY",
"BJ-AK",
"BJ-AL",
"BJ-AQ",
"BJ-BO",
"BJ-CO",
"BJ-DO",
"BJ-KO",
"BJ-LI",
"BJ-MO",
"BJ-OU",
"BJ-PL",
"BJ-ZO",
"BN-BE",
"BN-BM",
"BN-TE",
"BN-TU",
"BO-B",
"BO-C",
"BO-H",
"BO-L",
"BO-N",
"BO-O",
"BO-P",
"BO-S",
"BO-T",
"BQ-BO",
"BQ-SA",
"BQ-SE",
"BR-AC",
"BR-AL",
"BR-AM",
"BR-AP",
"BR-BA",
"BR-CE",
"BR-DF",
"BR-ES",
"BR-GO",
"BR-MA",
"BR-MG",
"BR-MS",
"BR-MT",
"BR-PA",
"BR-PB",
"BR-PE",
"BR-PI",
"BR-PR",
"BR-RJ",
"BR-RN",
"BR-RO",
"BR-RR",
"BR-RS",
"BR-SC",
"BR-SE",
"BR-SP",
"BR-TO",
"BS-AK",
"BS-BI",
"BS-BP",
"BS-BY",
"BS-CE",
"BS-CI",
"BS-CK",
"BS-CO",
"BS-CS",
"BS-EG",
"BS-EX",
"BS-FP",
"BS-GC",
"BS-HI",
"BS-HT",
"BS-IN",
"BS-LI",
"BS-MC",
"BS-MG",
"BS-MI",
"BS-NE",
"BS-NO",
"BS-NP",
"BS-NS",
"BS-RC",
"BS-RI",
"BS-SA",
"BS-SE",
"BS-SO",
"BS-SS",
"BS-SW",
"BS-WG",
"BT-11",
"BT-12",
"BT-13",
"BT-14",
"BT-15",
"BT-21",
"BT-22",
"BT-23",
"BT-24",
"BT-31",
"BT-32",
"BT-33",
"BT-34",
"BT-41",
"BT-42",
"BT-43",
"BT-44",
"BT-45",
"BT-GA",
"BT-TY",
"BW-CE",
"BW-CH",
"BW-FR",
"BW-GA",
"BW-GH",
"BW-JW",
"BW-KG",
"BW-KL",
"BW-KW",
"BW-LO",
"BW-NE",
"BW-NW",
"BW-SE",
"BW-SO",
"BW-SP",
"BW-ST",
"BY-BR",
"BY-HM",
"BY-HO",
"BY-HR",
"BY-MA",
"BY-MI",
"BY-VI",
"BZ-BZ",
"BZ-CY",
"BZ-CZL",
"BZ-OW",
"BZ-SC",
"BZ-TOL",
"CA-AB",
"CA-BC",
"CA-MB",
"CA-NB",
"CA-NL",
"CA-NS",
"CA-NT",
"CA-NU",
"CA-ON",
"CA-PE",
"CA-QC",
"CA-SK",
"CA-YT",
"CD-BC",
"CD-BU",
"CD-EQ",
"CD-HK",
"CD-HL",
"CD-HU",
"CD-IT",
"CD-KC",
"CD-KE",
"CD-KG",
"CD-KL",
"CD-KN",
"CD-KS",
"CD-LO",
"CD-LU",
"CD-MA",
"CD-MN",
"CD-MO",
"CD-NK",
"CD-NU",
"CD-SA",
"CD-SK",
"CD-SU",
"CD-TA",
"CD-TO",
"CD-TU",
"CF-AC",
"CF-BB",
"CF-BGF",
"CF-BK",
"CF-HK",
"CF-HM",
"CF-HS",
"CF-KB",
"CF-KG",
"CF-LB",
"CF-MB",
"CF-MP",
"CF-NM",
"CF-OP",
"CF-SE",
"CF-UK",
"CF-VK",
"CG-11",
"CG-12",
"CG-13",
"CG-14",
"CG-15",
"CG-16",
"CG-2",
"CG-5",
"CG-7",
"CG-8",
"CG-9",
"CG-BZV",
"CH-AG",
"CH-AI",
"CH-AR",
"CH-BE",
"CH-BL",
"CH-BS",
"CH-FR",
"CH-GE",
"CH-GL",
"CH-GR",
"CH-JU",
"CH-LU",
"CH-NE",
"CH-NW",
"CH-OW",
"CH-SG",
"CH-SH",
"CH-SO",
"CH-SZ",
"CH-TG",
"CH-TI",
"CH-UR",
"CH-VD",
"CH-VS",
"CH-ZG",
"CH-ZH",
"CI-AB",
"CI-BS",
"CI-CM",
"CI-DN",
"CI-GD",
"CI-LC",
"CI-LG",
"CI-MG",
"CI-SM",
"CI-SV",
"CI-VB",
"CI-WR",
"CI-YM",
"CI-ZZ",
"CL-AI",
"CL-AN",
"CL-AP",
"CL-AR",
"CL-AT",
"CL-BI",
"CL-CO",
"CL-LI",
"CL-LL",
"CL-LR",
"CL-MA",
"CL-ML",
"CL-NB",
"CL-RM",
"CL-TA",
"CL-VS",
"CM-AD",
"CM-CE",
"CM-EN",
"CM-ES",
"CM-LT",
"CM-NO",
"CM-NW",
"CM-OU",
"CM-SU",
"CM-SW",
"CN-AH",
"CN-BJ",
"CN-CQ",
"CN-FJ",
"CN-GD",
"CN-GS",
"CN-GX",
"CN-GZ",
"CN-HA",
"CN-HB",
"CN-HE",
"CN-HI",
"CN-HK",
"CN-HL",
"CN-HN",
"CN-JL",
"CN-JS",
"CN-JX",
"CN-LN",
"CN-MO",
"CN-NM",
"CN-NX",
"CN-QH",
"CN-SC",
"CN-SD",
"CN-SH",
"CN-SN",
"CN-SX",
"CN-TJ",
"CN-TW",
"CN-XJ",
"CN-XZ",
"CN-YN",
"CN-ZJ",
"CO-AMA",
"CO-ANT",
"CO-ARA",
"CO-ATL",
"CO-BOL",
"CO-BOY",
"CO-CAL",
"CO-CAQ",
"CO-CAS",
"CO-CAU",
"CO-CES",
"CO-CHO",
"CO-COR",
"CO-CUN",
"CO-DC",
"CO-GUA",
"CO-GUV",
"CO-HUI",
"CO-LAG",
"CO-MAG",
"CO-MET",
"CO-NAR",
"CO-NSA",
"CO-PUT",
"CO-QUI",
"CO-RIS",
"CO-SAN",
"CO-SAP",
"CO-SUC",
"CO-TOL",
"CO-VAC",
"CO-VAU",
"CO-VID",
"CR-A",
"CR-C",
"CR-G",
"CR-H",
"CR-L",
"CR-P",
"CR-SJ",
"CU-01",
"CU-03",
"CU-04",
"CU-05",
"CU-06",
"CU-07",
"CU-08",
"CU-09",
"CU-10",
"CU-11",
"CU-12",
"CU-13",
"CU-14",
"CU-15",
"CU-16",
"CU-99",
"CV-B",
"CV-BR",
"CV-BV",
"CV-CA",
"CV-CF",
"CV-CR",
"CV-MA",
"CV-MO",
"CV-PA",
"CV-PN",
"CV-PR",
"CV-RB",
"CV-RG",
"CV-RS",
"CV-S",
"CV-SD",
"CV-SF",
"CV-SL",
"CV-SM",
"CV-SO",
"CV-SS",
"CV-SV",
"CV-TA",
"CV-TS",
"CY-01",
"CY-02",
"CY-03",
"CY-04",
"CY-05",
"CY-06",
"CZ-10",
"CZ-20",
"CZ-201",
"CZ-202",
"CZ-203",
"CZ-204",
"CZ-205",
"CZ-206",
"CZ-207",
"CZ-208",
"CZ-209",
"CZ-20A",
"CZ-20B",
"CZ-20C",
"CZ-31",
"CZ-311",
"CZ-312",
"CZ-313",
"CZ-314",
"CZ-315",
"CZ-316",
"CZ-317",
"CZ-32",
"CZ-321",
"CZ-322",
"CZ-323",
"CZ-324",
"CZ-325",
"CZ-326",
"CZ-327",
"CZ-41",
"CZ-411",
"CZ-412",
"CZ-413",
"CZ-42",
"CZ-421",
"CZ-422",
"CZ-423",
"CZ-424",
"CZ-425",
"CZ-426",
"CZ-427",
"CZ-51",
"CZ-511",
"CZ-512",
"CZ-513",
"CZ-514",
"CZ-52",
"CZ-521",
"CZ-522",
"CZ-523",
"CZ-524",
"CZ-525",
"CZ-53",
"CZ-531",
"CZ-532",
"CZ-533",
"CZ-534",
"CZ-63",
"CZ-631",
"CZ-632",
"CZ-633",
"CZ-634",
"CZ-635",
"CZ-64",
"CZ-641",
"CZ-642",
"CZ-643",
"CZ-644",
"CZ-645",
"CZ-646",
"CZ-647",
"CZ-71",
"CZ-711",
"CZ-712",
"CZ-713",
"CZ-714",
"CZ-715",
"CZ-72",
"CZ-721",
"CZ-722",
"CZ-723",
"CZ-724",
"CZ-80",
"CZ-801",
"CZ-802",
"CZ-803",
"CZ-804",
"CZ-805",
"CZ-806",
"DE-BB",
"DE-BE",
"DE-BW",
"DE-BY",
"DE-HB",
"DE-HE",
"DE-HH",
"DE-MV",
"DE-NI",
"DE-NW",
"DE-RP",
"DE-SH",
"DE-SL",
"DE-SN",
"DE-ST",
"DE-TH",
"DJ-AR",
"DJ-AS",
"DJ-DI",
"DJ-DJ",
"DJ-OB",
"DJ-TA",
"DK-81",
"DK-82",
"DK-83",
"DK-84",
"DK-85",
"DM-02",
"DM-03",
"DM-04",
"DM-05",
"DM-06",
"DM-07",
"DM-08",
"DM-09",
"DM-10",
"DM-11",
"DO-01",
"DO-02",
"DO-03",
"DO-04",
"DO-05",
"DO-06",
"DO-07",
"DO-08",
"DO-09",
"DO-10",
"DO-11",
"DO-12",
"DO-13",
"DO-14",
"DO-15",
"DO-16",
"DO-17",
"DO-18",
"DO-19",
"DO-20",
"DO-21",
"DO-22",
"DO-23",
"DO-24",
"DO-25",
"DO-26",
"DO-27",
"DO-28",
"DO-29",
"DO-30",
"DO-31",
"DO-32",
"DO-33",
"DO-34",
"DO-35",
"DO-36",
"DO-37",
"DO-38",
"DO-39",
"DO-40",
"DO-41",
"DO-42",
"DZ-01",
"DZ-02",
"DZ-03",
"DZ-04",
"DZ-05",
"DZ-06",
"DZ-07",
"DZ-08",
"DZ-09",
"DZ-10",
"DZ-11",
"DZ-12",
"DZ-13",
"DZ-14",
"DZ-15",
"DZ-16",
"DZ-17",
"DZ-18",
"DZ-19",
"DZ-20",
"DZ-21",
"DZ-22",
"DZ-23",
"DZ-24",
"DZ-25",
"DZ-26",
"DZ-27",
"DZ-28",
"DZ-29",
"DZ-30",
"DZ-31",
"DZ-32",
"DZ-33",
"DZ-34",
"DZ-35",
"DZ-36",
"DZ-37",
"DZ-38",
"DZ-39",
"DZ-40",
"DZ-41",
"DZ-42",
"DZ-43",
"DZ-44",
"DZ-45",
"DZ-46",
"DZ-47",
"DZ-48",
"EC-A",
"EC-B",
"EC-C",
"EC-D",
"EC-E",
"EC-F",
"EC-G",
"EC-H",
"EC-I",
"EC-L",
"EC-M",
"EC-N",
"EC-O",
"EC-P",
"EC-R",
"EC-S",
"EC-SD",
"EC-SE",
"EC-T",
"EC-U",
"EC-W",
"EC-X",
"EC-Y",
"EC-Z",
"EE-130",
"EE-141",
"EE-142",
"EE-171",
"EE-184",
"EE-191",
"EE-198",
"EE-205",
"EE-214",
"EE-245",
"EE-247",
"EE-251",
"EE-255",
"EE-272",
"EE-283",
"EE-284",
"EE-291",
"EE-293",
"EE-296",
"EE-303",
"EE-305",
"EE-317",
"EE-321",
"EE-338",
"EE-353",
"EE-37",
"EE-39",
"EE-424",
"EE-430",
"EE-431",
"EE-432",
"EE-441",
"EE-442",
"EE-446",
"EE-45",
"EE-478",
"EE-480",
"EE-486",
"EE-50",
"EE-503",
"EE-511",
"EE-514",
"EE-52",
"EE-528",
"EE-557",
"EE-56",
"EE-567",
"EE-586",
"EE-60",
"EE-615",
"EE-618",
"EE-622",
"EE-624",
"EE-638",
"EE-64",
"EE-651",
"EE-653",
"EE-661",
"EE-663",
"EE-668",
"EE-68",
"EE-689",
"EE-698",
"EE-708",
"EE-71",
"EE-712",
"EE-714",
"EE-719",
"EE-726",
"EE-732",
"EE-735",
"EE-74",
"EE-784",
"EE-79",
"EE-792",
"EE-793",
"EE-796",
"EE-803",
"EE-809",
"EE-81",
"EE-824",
"EE-834",
"EE-84",
"EE-855",
"EE-87",
"EE-890",
"EE-897",
"EE-899",
"EE-901",
"EE-903",
"EE-907",
"EE-917",
"EE-919",
"EE-928",
"EG-ALX",
"EG-ASN",
"EG-AST",
"EG-BA",
"EG-BH",
"EG-BNS",
"EG-C",
"EG-DK",
"EG-DT",
"EG-FYM",
"EG-GH",
"EG-GZ",
"EG-IS",
"EG-JS",
"EG-KB",
"EG-KFS",
"EG-KN",
"EG-LX",
"EG-MN",
"EG-MNF",
"EG-MT",
"EG-PTS",
"EG-SHG",
"EG-SHR",
"EG-SIN",
"EG-SUZ",
"EG-WAD",
"ER-AN",
"ER-DK",
"ER-DU",
"ER-GB",
"ER-MA",
"ER-SK",
"ES-A",
"ES-AB",
"ES-AL",
"ES-AN",
"ES-AR",
"ES-AS",
"ES-AV",
"ES-B",
"ES-BA",
"ES-BI",
"ES-BU",
"ES-C",
"ES-CA",
"ES-CB",
"ES-CC",
"ES-CE",
"ES-CL",
"ES-CM",
"ES-CN",
"ES-CO",
"ES-CR",
"ES-CS",
"ES-CT",
"ES-CU",
"ES-EX",
"ES-GA",
"ES-GC",
"ES-GI",
"ES-GR",
"ES-GU",
"ES-H",
"ES-HU",
"ES-IB",
"ES-J",
"ES-L",
"ES-LE",
"ES-LO",
"ES-LU",
"ES-M",
"ES-MA",
"ES-MC",
"ES-MD",
"ES-ML",
"ES-MU",
"ES-NA",
"ES-NC",
"ES-O",
"ES-OR",
"ES-P",
"ES-PM",
"ES-PO",
"ES-PV",
"ES-RI",
"ES-S",
"ES-SA",
"ES-SE",
"ES-SG",
"ES-SO",
"ES-SS",
"ES-T",
"ES-TE",
"ES-TF",
"ES-TO",
"ES-V",
"ES-VA",
"ES-VC",
"ES-VI",
"ES-Z",
"ES-ZA",
"ET-AA",
"ET-AF",
"ET-AM",
"ET-BE",
"ET-DD",
"ET-GA",
"ET-HA",
"ET-OR",
"ET-SN",
"ET-SO",
"ET-TI",
"FI-01",
"FI-02",
"FI-03",
"FI-04",
"FI-05",
"FI-06",
"FI-07",
"FI-08",
"FI-09",
"FI-10",
"FI-11",
"FI-12",
"FI-13",
"FI-14",
"FI-15",
"FI-16",
"FI-17",
"FI-18",
"FI-19",
"FJ-01",
"FJ-02",
"FJ-03",
"FJ-04",
"FJ-05",
"FJ-06",
"FJ-07",
"FJ-08",
"FJ-09",
"FJ-10",
"FJ-11",
"FJ-12",
"FJ-13",
"FJ-14",
"FJ-C",
"FJ-E",
"FJ-N",
"FJ-R",
"FJ-W",
"FM-KSA",
"FM-PNI",
"FM-TRK",
"FM-YAP",
"FR-01",
"FR-02",
"FR-03",
"FR-04",
"FR-05",
"FR-06",
"FR-07",
"FR-08",
"FR-09",
"FR-10",
"FR-11",
"FR-12",
"FR-13",
"FR-14",
"FR-15",
"FR-16",
"FR-17",
"FR-18",
"FR-19",
"FR-20R",
"FR-21",
"FR-22",
"FR-23",
"FR-24",
"FR-25",
"FR-26",
"FR-27",
"FR-28",
"FR-29",
"FR-2A",
"FR-2B",
"FR-30",
"FR-31",
"FR-32",
"FR-33",
"FR-34",
"FR-35",
"FR-36",
"FR-37",
"FR-38",
"FR-39",
"FR-40",
"FR-41",
"FR-42",
"FR-43",
"FR-44",
"FR-45",
"FR-46",
"FR-47",
"FR-48",
"FR-49",
"FR-50",
"FR-51",
"FR-52",
"FR-53",
"FR-54",
"FR-55",
"FR-56",
"FR-57",
"FR-58",
"FR-59",
"FR-60",
"FR-61",
"FR-62",
"FR-63",
"FR-64",
"FR-65",
"FR-66",
"FR-67",
"FR-68",
"FR-69",
"FR-70",
"FR-71",
"FR-72",
"FR-73",
"FR-74",
"FR-75",
"FR-76",
"FR-77",
"FR-78",
"FR-79",
"FR-80",
"FR-81",
"FR-82",
"FR-83",
"FR-84",
"FR-85",
"FR-86",
"FR-87",
"FR-88",
"FR-89",
"FR-90",
"FR-91",
"FR-92",
"FR-93",
"FR-94",
"FR-95",
"FR-971",
"FR-972",
"FR-973",
"FR-974",
"FR-976",
"FR-ARA",
"FR-BFC",
"FR-BL",
"FR-BRE",
"FR-CP",
"FR-CVL",
"FR-GES",
"FR-GF",
"FR-GP",
"FR-HDF",
"FR-IDF",
"FR-MF",
"FR-MQ",
"FR-NAQ",
"FR-NC",
"FR-NOR",
"FR-OCC",
"FR-PAC",
"FR-PDL",
"FR-PF",
"FR-PM",
"FR-RE",
"FR-TF",
"FR-WF",
"FR-YT",
"GA-1",
"GA-2",
"GA-3",
"GA-4",
"GA-5",
"GA-6",
"GA-7",
"GA-8",
"GA-9",
"GB-ABC",
"GB-ABD",
"GB-ABE",
"GB-AGB",
"GB-AGY",
"GB-AND",
"GB-ANN",
"GB-ANS",
"GB-BAS",
"GB-BBD",
"GB-BCP",
"GB-BDF",
"GB-BDG",
"GB-BEN",
"GB-BEX",
"GB-BFS",
"GB-BGE",
"GB-BGW",
"GB-BIR",
"GB-BKM",
"GB-BNE",
"GB-BNH",
"GB-BNS",
"GB-BOL",
"GB-BPL",
"GB-BRC",
"GB-BRD",
"GB-BRY",
"GB-BST",
"GB-BUR",
"GB-CAM",
"GB-CAY",
"GB-CBF",
"GB-CCG",
"GB-CGN",
"GB-CHE",
"GB-CHW",
"GB-CLD",
"GB-CLK",
"GB-CMA",
"GB-CMD",
"GB-CMN",
"GB-CON",
"GB-COV",
"GB-CRF",
"GB-CRY",
"GB-CWY",
"GB-DAL",
"GB-DBY",
"GB-DEN",
"GB-DER",
"GB-DEV",
"GB-DGY",
"GB-DNC",
"GB-DND",
"GB-DOR",
"GB-DRS",
"GB-DUD",
"GB-DUR",
"GB-EAL",
"GB-EAW",
"GB-EAY",
"GB-EDH",
"GB-EDU",
"GB-ELN",
"GB-ELS",
"GB-ENF",
"GB-ENG",
"GB-ERW",
"GB-ERY",
"GB-ESS",
"GB-ESX",
"GB-FAL",
"GB-FIF",
"GB-FLN",
"GB-FMO",
"GB-GAT",
"GB-GBN",
"GB-GLG",
"GB-GLS",
"GB-GRE",
"GB-GWN",
"GB-HAL",
"GB-HAM",
"GB-HAV",
"GB-HCK",
"GB-HEF",
"GB-HIL",
"GB-HLD",
"GB-HMF",
"GB-HNS",
"GB-HPL",
"GB-HRT",
"GB-HRW",
"GB-HRY",
"GB-IOS",
"GB-IOW",
"GB-ISL",
"GB-IVC",
"GB-KEC",
"GB-KEN",
"GB-KHL",
"GB-KIR",
"GB-KTT",
"GB-KWL",
"GB-LAN",
"GB-LBC",
"GB-LBH",
"GB-LCE",
"GB-LDS",
"GB-LEC",
"GB-LEW",
"GB-LIN",
"GB-LIV",
"GB-LND",
"GB-LUT",
"GB-MAN",
"GB-MDB",
"GB-MDW",
"GB-MEA",
"GB-MIK",
"GB-MLN",
"GB-MON",
"GB-MRT",
"GB-MRY",
"GB-MTY",
"GB-MUL",
"GB-NAY",
"GB-NBL",
"GB-NEL",
"GB-NET",
"GB-NFK",
"GB-NGM",
"GB-NIR",
"GB-NLK",
"GB-NLN",
"GB-NMD",
"GB-NSM",
"GB-NTH",
"GB-NTL",
"GB-NTT",
"GB-NTY",
"GB-NWM",
"GB-NWP",
"GB-NYK",
"GB-OLD",
"GB-ORK",
"GB-OXF",
"GB-PEM",
"GB-PKN",
"GB-PLY",
"GB-POR",
"GB-POW",
"GB-PTE",
"GB-RCC",
"GB-RCH",
"GB-RCT",
"GB-RDB",
"GB-RDG",
"GB-RFW",
"GB-RIC",
"GB-ROT",
"GB-RUT",
"GB-SAW",
"GB-SAY",
"GB-SCB",
"GB-SCT",
"GB-SFK",
"GB-SFT",
"GB-SGC",
"GB-SHF",
"GB-SHN",
"GB-SHR",
"GB-SKP",
"GB-SLF",
"GB-SLG",
"GB-SLK",
"GB-SND",
"GB-SOL",
"GB-SOM",
"GB-SOS",
"GB-SRY",
"GB-STE",
"GB-STG",
"GB-STH",
"GB-STN",
"GB-STS",
"GB-STT",
"GB-STY",
"GB-SWA",
"GB-SWD",
"GB-SWK",
"GB-TAM",
"GB-TFW",
"GB-THR",
"GB-TOB",
"GB-TOF",
"GB-TRF",
"GB-TWH",
"GB-UKM",
"GB-VGL",
"GB-WAR",
"GB-WBK",
"GB-WDU",
"GB-WFT",
"GB-WGN",
"GB-WIL",
"GB-WKF",
"GB-WLL",
"GB-WLN",
"GB-WLS",
"GB-WLV",
"GB-WND",
"GB-WNM",
"GB-WOK",
"GB-WOR",
"GB-WRL",
"GB-WRT",
"GB-WRX",
"GB-WSM",
"GB-WSX",
"GB-YOR",
"GB-ZET",
"GD-01",
"GD-02",
"GD-03",
"GD-04",
"GD-05",
"GD-06",
"GD-10",
"GE-AB",
"GE-AJ",
"GE-GU",
"GE-IM",
"GE-KA",
"GE-KK",
"GE-MM",
"GE-RL",
"GE-SJ",
"GE-SK",
"GE-SZ",
"GE-TB",
"GH-AA",
"GH-AF",
"GH-AH",
"GH-BA",
"GH-BE",
"GH-BO",
"GH-CP",
"GH-EP",
"GH-NE",
"GH-NP",
"GH-OT",
"GH-SV",
"GH-TV",
"GH-UE",
"GH-UW",
"GH-WN",
"GH-WP",
"GL-AV",
"GL-KU",
"GL-QE",
"GL-QT",
"GL-SM",
"GM-B",
"GM-L",
"GM-M",
"GM-N",
"GM-U",
"GM-W",
"GN-B",
"GN-BE",
"GN-BF",
"GN-BK",
"GN-C",
"GN-CO",
"GN-D",
"GN-DB",
"GN-DI",
"GN-DL",
"GN-DU",
"GN-F",
"GN-FA",
"GN-FO",
"GN-FR",
"GN-GA",
"GN-GU",
"GN-K",
"GN-KA",
"GN-KB",
"GN-KD",
"GN-KE",
"GN-KN",
"GN-KO",
"GN-KS",
"GN-L",
"GN-LA",
"GN-LE",
"GN-LO",
"GN-M",
"GN-MC",
"GN-MD",
"GN-ML",
"GN-MM",
"GN-N",
"GN-NZ",
"GN-PI",
"GN-SI",
"GN-TE",
"GN-TO",
"GN-YO",
"GQ-AN",
"GQ-BN",
"GQ-BS",
"GQ-C",
"GQ-CS",
"GQ-DJ",
"GQ-I",
"GQ-KN",
"GQ-LI",
"GQ-WN",
"GR-69",
"GR-A",
"GR-B",
"GR-C",
"GR-D",
"GR-E",
"GR-F",
"GR-G",
"GR-H",
"GR-I",
"GR-J",
"GR-K",
"GR-L",
"GR-M",
"GT-AV",
"GT-BV",
"GT-CM",
"GT-CQ",
"GT-ES",
"GT-GU",
"GT-HU",
"GT-IZ",
"GT-JA",
"GT-JU",
"GT-PE",
"GT-PR",
"GT-QC",
"GT-QZ",
"GT-RE",
"GT-SA",
"GT-SM",
"GT-SO",
"GT-SR",
"GT-SU",
"GT-TO",
"GT-ZA",
"GW-BA",
"GW-BL",
"GW-BM",
"GW-BS",
"GW-CA",
"GW-GA",
"GW-L",
"GW-N",
"GW-OI",
"GW-QU",
"GW-S",
"GW-TO",
"GY-BA",
"GY-CU",
"GY-DE",
"GY-EB",
"GY-ES",
"GY-MA",
"GY-PM",
"GY-PT",
"GY-UD",
"GY-UT",
"HN-AT",
"HN-CH",
"HN-CL",
"HN-CM",
"HN-CP",
"HN-CR",
"HN-EP",
"HN-FM",
"HN-GD",
"HN-IB",
"HN-IN",
"HN-LE",
"HN-LP",
"HN-OC",
"HN-OL",
"HN-SB",
"HN-VA",
"HN-YO",
"HR-01",
"HR-02",
"HR-03",
"HR-04",
"HR-05",
"HR-06",
"HR-07",
"HR-08",
"HR-09",
"HR-10",
"HR-11",
"HR-12",
"HR-13",
"HR-14",
"HR-15",
"HR-16",
"HR-17",
"HR-18",
"HR-19",
"HR-20",
"HR-21",
"HT-AR",
"HT-CE",
"HT-GA",
"HT-ND",
"HT-NE",
"HT-NI",
"HT-NO",
"HT-OU",
"HT-SD",
"HT-SE",
"HU-BA",
"HU-BC",
"HU-BE",
"HU-BK",
"HU-BU",
"HU-BZ",
"HU-CS",
"HU-DE",
"HU-DU",
"HU-EG",
"HU-ER",
"HU-FE",
"HU-GS",
"HU-GY",
"HU-HB",
"HU-HE",
"HU-HV",
"HU-JN",
"HU-KE",
"HU-KM",
"HU-KV",
"HU-MI",
"HU-NK",
"HU-NO",
"HU-NY",
"HU-PE",
"HU-PS",
"HU-SD",
"HU-SF",
"HU-SH",
"HU-SK",
"HU-SN",
"HU-SO",
"HU-SS",
"HU-ST",
"HU-SZ",
"HU-TB",
"HU-TO",
"HU-VA",
"HU-VE",
"HU-VM",
"HU-ZA",
"HU-ZE",
"ID-AC",
"ID-BA",
"ID-BB",
"ID-BE",
"ID-BT",
"ID-GO",
"ID-JA",
"ID-JB",
"ID-JI",
"ID-JK",
"ID-JT",
"ID-JW",
"ID-KA",
"ID-KB",
"ID-KI",
"ID-KR",
"ID-KS",
"ID-KT",
"ID-KU",
"ID-LA",
"ID-MA",
"ID-ML",
"ID-MU",
"ID-NB",
"ID-NT",
"ID-NU",
"ID-PA",
"ID-PB",
"ID-PP",
"ID-RI",
"ID-SA",
"ID-SB",
"ID-SG",
"ID-SL",
"ID-SM",
"ID-SN",
"ID-SR",
"ID-SS",
"ID-ST",
"ID-SU",
"ID-YO",
"IE-C",
"IE-CE",
"IE-CN",
"IE-CO",
"IE-CW",
"IE-D",
"IE-DL",
"IE-G",
"IE-KE",
"IE-KK",
"IE-KY",
"IE-L",
"IE-LD",
"IE-LH",
"IE-LK",
"IE-LM",
"IE-LS",
"IE-M",
"IE-MH",
"IE-MN",
"IE-MO",
"IE-OY",
"IE-RN",
"IE-SO",
"IE-TA",
"IE-U",
"IE-WD",
"IE-WH",
"IE-WW",
"IE-WX",
"IL-D",
"IL-HA",
"IL-JM",
"IL-M",
"IL-TA",
"IL-Z",
"IN-AN",
"IN-AP",
"IN-AR",
"IN-AS",
"IN-BR",
"IN-CH",
"IN-CT",
"IN-DH",
"IN-DL",
"IN-GA",
"IN-GJ",
"IN-HP",
"IN-HR",
"IN-JH",
"IN-JK",
"IN-KA",
"IN-KL",
"IN-LA",
"IN-LD",
"IN-MH",
"IN-ML",
"IN-MN",
"IN-MP",
"IN-MZ",
"IN-NL",
"IN-OR",
"IN-PB",
"IN-PY",
"IN-RJ",
"IN-SK",
"IN-TG",
"IN-TN",
"IN-TR",
"IN-UP",
"IN-UT",
"IN-WB",
"IQ-AN",
"IQ-AR",
"IQ-BA",
"IQ-BB",
"IQ-BG",
"IQ-DA",
"IQ-DI",
"IQ-DQ",
"IQ-HA",
"IQ-KA",
"IQ-KI",
"IQ-MA",
"IQ-MU",
"IQ-NA",
"IQ-NI",
"IQ-QA",
"IQ-SD",
"IQ-SU",
"IQ-WA",
"IR-00",
"IR-01",
"IR-02",
"IR-03",
"IR-04",
"IR-05",
"IR-06",
"IR-07",
"IR-08",
"IR-09",
"IR-10",
"IR-11",
"IR-12",
"IR-13",
"IR-14",
"IR-15",
"IR-16",
"IR-17",
"IR-18",
"IR-19",
"IR-20",
"IR-21",
"IR-22",
"IR-23",
"IR-24",
"IR-25",
"IR-26",
"IR-27",
"IR-28",
"IR-29",
"IR-30",
"IS-1",
"IS-2",
"IS-3",
"IS-4",
"IS-5",
"IS-6",
"IS-7",
"IS-8",
"IS-AKH",
"IS-AKN",
"IS-AKU",
"IS-ARN",
"IS-ASA",
"IS-BFJ",
"IS-BLA",
"IS-BLO",
"IS-BOG",
"IS-BOL",
"IS-DAB",
"IS-DAV",
"IS-DJU",
"IS-EOM",
"IS-EYF",
"IS-FJD",
"IS-FJL",
"IS-FLA",
"IS-FLD",
"IS-FLR",
"IS-GAR",
"IS-GOG",
"IS-GRN",
"IS-GRU",
"IS-GRY",
"IS-HAF",
"IS-HEL",
"IS-HRG",
"IS-HRU",
"IS-HUT",
"IS-HUV",
"IS-HVA",
"IS-HVE",
"IS-ISA",
"IS-KAL",
"IS-KJO",
"IS-KOP",
"IS-LAN",
"IS-MOS",
"IS-MYR",
"IS-NOR",
"IS-RGE",
"IS-RGY",
"IS-RHH",
"IS-RKN",
"IS-RKV",
"IS-SBH",
"IS-SBT",
"IS-SDN",
"IS-SDV",
"IS-SEL",
"IS-SEY",
"IS-SFA",
"IS-SHF",
"IS-SKF",
"IS-SKG",
"IS-SKO",
"IS-SKU",
"IS-SNF",
"IS-SOG",
"IS-SOL",
"IS-SSF",
"IS-SSS",
"IS-STR",
"IS-STY",
"IS-SVG",
"IS-TAL",
"IS-THG",
"IS-TJO",
"IS-VEM",
"IS-VER",
"IS-VOP",
"IT-21",
"IT-23",
"IT-25",
"IT-32",
"IT-34",
"IT-36",
"IT-42",
"IT-45",
"IT-52",
"IT-55",
"IT-57",
"IT-62",
"IT-65",
"IT-67",
"IT-72",
"IT-75",
"IT-77",
"IT-78",
"IT-82",
"IT-88",
"IT-AG",
"IT-AL",
"IT-AN",
"IT-AP",
"IT-AQ",
"IT-AR",
"IT-AT",
"IT-AV",
"IT-BA",
"IT-BG",
"IT-BI",
"IT-BL",
"IT-BN",
"IT-BO",
"IT-BR",
"IT-BS",
"IT-BT",
"IT-BZ",
"IT-CA",
"IT-CB",
"IT-CE",
"IT-CH",
"IT-CL",
"IT-CN",
"IT-CO",
"IT-CR",
"IT-CS",
"IT-CT",
"IT-CZ",
"IT-EN",
"IT-FC",
"IT-FE",
"IT-FG",
"IT-FI",
"IT-FM",
"IT-FR",
"IT-GE",
"IT-GO",
"IT-GR",
"IT-IM",
"IT-IS",
"IT-KR",
"IT-LC",
"IT-LE",
"IT-LI",
"IT-LO",
"IT-LT",
"IT-LU",
"IT-MB",
"IT-MC",
"IT-ME",
"IT-MI",
"IT-MN",
"IT-MO",
"IT-MS",
"IT-MT",
"IT-NA",
"IT-NO",
"IT-NU",
"IT-OR",
"IT-PA",
"IT-PC",
"IT-PD",
"IT-PE",
"IT-PG",
"IT-PI",
"IT-PN",
"IT-PO",
"IT-PR",
"IT-PT",
"IT-PU",
"IT-PV",
"IT-PZ",
"IT-RA",
"IT-RC",
"IT-RE",
"IT-RG",
"IT-RI",
"IT-RM",
"IT-RN",
"IT-RO",
"IT-SA",
"IT-SI",
"IT-SO",
"IT-SP",
"IT-SR",
"IT-SS",
"IT-SU",
"IT-SV",
"IT-TA",
"IT-TE",
"IT-TN",
"IT-TO",
"IT-TP",
"IT-TR",
"IT-TS",
"IT-TV",
"IT-UD",
"IT-VA",
"IT-VB",
"IT-VC",
"IT-VE",
"IT-VI",
"IT-VR",
"IT-VT",
"IT-VV",
"JM-01",
"JM-02",
"JM-03",
"JM-04",
"JM-05",
"JM-06",
"JM-07",
"JM-08",
"JM-09",
"JM-10",
"JM-11",
"JM-12",
"JM-13",
"JM-14",
"JO-AJ",
"JO-AM",
"JO-AQ",
"JO-AT",
"JO-AZ",
"JO-BA",
"JO-IR",
"JO-JA",
"JO-KA",
"JO-MA",
"JO-MD",
"JO-MN",
"JP-01",
"JP-02",
"JP-03",
"JP-04",
"JP-05",
"JP-06",
"JP-07",
"JP-08",
"JP-09",
"JP-10",
"JP-11",
"JP-12",
"JP-13",
"JP-14",
"JP-15",
"JP-16",
"JP-17",
"JP-18",
"JP-19",
"JP-20",
"JP-21",
"JP-22",
"JP-23",
"JP-24",
"JP-25",
"JP-26",
"JP-27",
"JP-28",
"JP-29",
"JP-30",
"JP-31",
"JP-32",
"JP-33",
"JP-34",
"JP-35",
"JP-36",
"JP-37",
"JP-38",
"JP-39",
"JP-40",
"JP-41",
"JP-42",
"JP-43",
"JP-44",
"JP-45",
"JP-46",
"JP-47",
"KE-01",
"KE-02",
"KE-03",
"KE-04",
"KE-05",
"KE-06",
"KE-07",
"KE-08",
"KE-09",
"KE-10",
"KE-11",
"KE-12",
"KE-13",
"KE-14",
"KE-15",
"KE-16",
"KE-17",
"KE-18",
"KE-19",
"KE-20",
"KE-21",
"KE-22",
"KE-23",
"KE-24",
"KE-25",
"KE-26",
"KE-27",
"KE-28",
"KE-29",
"KE-30",
"KE-31",
"KE-32",
"KE-33",
"KE-34",
"KE-35",
"KE-36",
"KE-37",
"KE-38",
"KE-39",
"KE-40",
"KE-41",
"KE-42",
"KE-43",
"KE-44",
"KE-45",
"KE-46",
"KE-47",
"KG-B",
"KG-C",
"KG-GB",
"KG-GO",
"KG-J",
"KG-N",
"KG-O",
"KG-T",
"KG-Y",
"KH-1",
"KH-10",
"KH-11",
"KH-12",
"KH-13",
"KH-14",
"KH-15",
"KH-16",
"KH-17",
"KH-18",
"KH-19",
"KH-2",
"KH-20",
"KH-21",
"KH-22",
"KH-23",
"KH-24",
"KH-25",
"KH-3",
"KH-4",
"KH-5",
"KH-6",
"KH-7",
"KH-8",
"KH-9",
"KI-G",
"KI-L",
"KI-P",
"KM-A",
"KM-G",
"KM-M",
"KN-01",
"KN-02",
"KN-03",
"KN-04",
"KN-05",
"KN-06",
"KN-07",
"KN-08",
"KN-09",
"KN-10",
"KN-11",
"KN-12",
"KN-13",
"KN-15",
"KN-K",
"KN-N",
"KP-01",
"KP-02",
"KP-03",
"KP-04",
"KP-05",
"KP-06",
"KP-07",
"KP-08",
"KP-09",
"KP-10",
"KP-13",
"KP-14",
"KR-11",
"KR-26",
"KR-27",
"KR-28",
"KR-29",
"KR-30",
"KR-31",
"KR-41",
"KR-42",
"KR-43",
"KR-44",
"KR-45",
"KR-46",
"KR-47",
"KR-48",
"KR-49",
"KR-50",
"KW-AH",
"KW-FA",
"KW-HA",
"KW-JA",
"KW-KU",
"KW-MU",
"KZ-AKM",
"KZ-AKT",
"KZ-ALA",
"KZ-ALM",
"KZ-AST",
"KZ-ATY",
"KZ-KAR",
"KZ-KUS",
"KZ-KZY",
"KZ-MAN",
"KZ-PAV",
"KZ-SEV",
"KZ-SHY",
"KZ-VOS",
"KZ-YUZ",
"KZ-ZAP",
"KZ-ZHA",
"LA-AT",
"LA-BK",
"LA-BL",
"LA-CH",
"LA-HO",
"LA-KH",
"LA-LM",
"LA-LP",
"LA-OU",
"LA-PH",
"LA-SL",
"LA-SV",
"LA-VI",
"LA-VT",
"LA-XA",
"LA-XE",
"LA-XI",
"LA-XS",
"LB-AK",
"LB-AS",
"LB-BA",
"LB-BH",
"LB-BI",
"LB-JA",
"LB-JL",
"LB-NA",
"LC-01",
"LC-02",
"LC-03",
"LC-05",
"LC-06",
"LC-07",
"LC-08",
"LC-10",
"LC-11",
"LC-12",
"LI-01",
"LI-02",
"LI-03",
"LI-04",
"LI-05",
"LI-06",
"LI-07",
"LI-08",
"LI-09",
"LI-10",
"LI-11",
"LK-1",
"LK-11",
"LK-12",
"LK-13",
"LK-2",
"LK-21",
"LK-22",
"LK-23",
"LK-3",
"LK-31",
"LK-32",
"LK-33",
"LK-4",
"LK-41",
"LK-42",
"LK-43",
"LK-44",
"LK-45",
"LK-5",
"LK-51",
"LK-52",
"LK-53",
"LK-6",
"LK-61",
"LK-62",
"LK-7",
"LK-71",
"LK-72",
"LK-8",
"LK-81",
"LK-82",
"LK-9",
"LK-91",
"LK-92",
"LR-BG",
"LR-BM",
"LR-CM",
"LR-GB",
"LR-GG",
"LR-GK",
"LR-GP",
"LR-LO",
"LR-MG",
"LR-MO",
"LR-MY",
"LR-NI",
"LR-RG",
"LR-RI",
"LR-SI",
"LS-A",
"LS-B",
"LS-C",
"LS-D",
"LS-E",
"LS-F",
"LS-G",
"LS-H",
"LS-J",
"LS-K",
"LT-01",
"LT-02",
"LT-03",
"LT-04",
"LT-05",
"LT-06",
"LT-07",
"LT-08",
"LT-09",
"LT-10",
"LT-11",
"LT-12",
"LT-13",
"LT-14",
"LT-15",
"LT-16",
"LT-17",
"LT-18",
"LT-19",
"LT-20",
"LT-21",
"LT-22",
"LT-23",
"LT-24",
"LT-25",
"LT-26",
"LT-27",
"LT-28",
"LT-29",
"LT-30",
"LT-31",
"LT-32",
"LT-33",
"LT-34",
"LT-35",
"LT-36",
"LT-37",
"LT-38",
"LT-39",
"LT-40",
"LT-41",
"LT-42",
"LT-43",
"LT-44",
"LT-45",
"LT-46",
"LT-47",
"LT-48",
"LT-49",
"LT-50",
"LT-51",
"LT-52",
"LT-53",
"LT-54",
"LT-55",
"LT-56",
"LT-57",
"LT-58",
"LT-59",
"LT-60",
"LT-AL",
"LT-KL",
"LT-KU",
"LT-MR",
"LT-PN",
"LT-SA",
"LT-TA",
"LT-TE",
"LT-UT",
"LT-VL",
"LU-CA",
"LU-CL",
"LU-DI",
"LU-EC",
"LU-ES",
"LU-GR",
"LU-LU",
"LU-ME",
"LU-RD",
"LU-RM",
"LU-VD",
"LU-WI",
"LV-001",
"LV-002",
"LV-003",
"LV-004",
"LV-005",
"LV-006",
"LV-007",
"LV-008",
"LV-009",
"LV-010",
"LV-011",
"LV-012",
"LV-013",
"LV-014",
"LV-015",
"LV-016",
"LV-017",
"LV-018",
"LV-019",
"LV-020",
"LV-021",
"LV-022",
"LV-023",
"LV-024",
"LV-025",
"LV-026",
"LV-027",
"LV-028",
"LV-029",
"LV-030",
"LV-031",
"LV-032",
"LV-033",
"LV-034",
"LV-035",
"LV-036",
"LV-037",
"LV-038",
"LV-039",
"LV-040",
"LV-041",
"LV-042",
"LV-043",
"LV-044",
"LV-045",
"LV-046",
"LV-047",
"LV-048",
"LV-049",
"LV-050",
"LV-051",
"LV-052",
"LV-053",
"LV-054",
"LV-055",
"LV-056",
"LV-057",
"LV-058",
"LV-059",
"LV-060",
"LV-061",
"LV-062",
"LV-063",
"LV-064",
"LV-065",
"LV-066",
"LV-067",
"LV-068",
"LV-069",
"LV-070",
"LV-071",
"LV-072",
"LV-073",
"LV-074",
"LV-075",
"LV-076",
"LV-077",
"LV-078",
"LV-079",
"LV-080",
"LV-081",
"LV-082",
"LV-083",
"LV-084",
"LV-085",
"LV-086",
"LV-087",
"LV-088",
"LV-089",
"LV-090",
"LV-091",
"LV-092",
"LV-093",
"LV-094",
"LV-095",
"LV-096",
"LV-097",
"LV-098",
"LV-099",
"LV-100",
"LV-101",
"LV-102",
"LV-103",
"LV-104",
"LV-105",
"LV-106",
"LV-107",
"LV-108",
"LV-109",
"LV-110",
"LV-DGV",
"LV-JEL",
"LV-JKB",
"LV-JUR",
"LV-LPX",
"LV-REZ",
"LV-RIX",
"LV-VEN",
"LV-VMR",
"LY-BA",
"LY-BU",
"LY-DR",
"LY-GT",
"LY-JA",
"LY-JG",
"LY-JI",
"LY-JU",
"LY-KF",
"LY-MB",
"LY-MI",
"LY-MJ",
"LY-MQ",
"LY-NL",
"LY-NQ",
"LY-SB",
"LY-SR",
"LY-TB",
"LY-WA",
"LY-WD",
"LY-WS",
"LY-ZA",
"MA-01",
"MA-02",
"MA-03",
"MA-04",
"MA-05",
"MA-06",
"MA-07",
"MA-08",
"MA-09",
"MA-10",
"MA-11",
"MA-12",
"MA-AGD",
"MA-AOU",
"MA-ASZ",
"MA-AZI",
"MA-BEM",
"MA-BER",
"MA-BES",
"MA-BOD",
"MA-BOM",
"MA-BRR",
"MA-CAS",
"MA-CHE",
"MA-CHI",
"MA-CHT",
"MA-DRI",
"MA-ERR",
"MA-ESI",
"MA-ESM",
"MA-FAH",
"MA-FES",
"MA-FIG",
"MA-FQH",
"MA-GUE",
"MA-GUF",
"MA-HAJ",
"MA-HAO",
"MA-HOC",
"MA-IFR",
"MA-INE",
"MA-JDI",
"MA-JRA",
"MA-KEN",
"MA-KES",
"MA-KHE",
"MA-KHN",
"MA-KHO",
"MA-LAA",
"MA-LAR",
"MA-MAR",
"MA-MDF",
"MA-MED",
"MA-MEK",
"MA-MID",
"MA-MOH",
"MA-MOU",
"MA-NAD",
"MA-NOU",
"MA-OUA",
"MA-OUD",
"MA-OUJ",
"MA-OUZ",
"MA-RAB",
"MA-REH",
"MA-SAF",
"MA-SAL",
"MA-SEF",
"MA-SET",
"MA-SIB",
"MA-SIF",
"MA-SIK",
"MA-SIL",
"MA-SKH",
"MA-TAF",
"MA-TAI",
"MA-TAO",
"MA-TAR",
"MA-TAT",
"MA-TAZ",
"MA-TET",
"MA-TIN",
"MA-TIZ",
"MA-TNG",
"MA-TNT",
"MA-YUS",
"MA-ZAG",
"MC-CL",
"MC-CO",
"MC-FO",
"MC-GA",
"MC-JE",
"MC-LA",
"MC-MA",
"MC-MC",
"MC-MG",
"MC-MO",
"MC-MU",
"MC-PH",
"MC-SD",
"MC-SO",
"MC-SP",
"MC-SR",
"MC-VR",
"MD-AN",
"MD-BA",
"MD-BD",
"MD-BR",
"MD-BS",
"MD-CA",
"MD-CL",
"MD-CM",
"MD-CR",
"MD-CS",
"MD-CT",
"MD-CU",
"MD-DO",
"MD-DR",
"MD-DU",
"MD-ED",
"MD-FA",
"MD-FL",
"MD-GA",
"MD-GL",
"MD-HI",
"MD-IA",
"MD-LE",
"MD-NI",
"MD-OC",
"MD-OR",
"MD-RE",
"MD-RI",
"MD-SD",
"MD-SI",
"MD-SN",
"MD-SO",
"MD-ST",
"MD-SV",
"MD-TA",
"MD-TE",
"MD-UN",
"ME-01",
"ME-02",
"ME-03",
"ME-04",
"ME-05",
"ME-06",
"ME-07",
"ME-08",
"ME-09",
"ME-10",
"ME-11",
"ME-12",
"ME-13",
"ME-14",
"ME-15",
"ME-16",
"ME-17",
"ME-18",
"ME-19",
"ME-20",
"ME-21",
"ME-22",
"ME-23",
"ME-24",
"MG-A",
"MG-D",
"MG-F",
"MG-M",
"MG-T",
"MG-U",
"MH-ALK",
"MH-ALL",
"MH-ARN",
"MH-AUR",
"MH-EBO",
"MH-ENI",
"MH-JAB",
"MH-JAL",
"MH-KIL",
"MH-KWA",
"MH-L",
"MH-LAE",
"MH-LIB",
"MH-LIK",
"MH-MAJ",
"MH-MAL",
"MH-MEJ",
"MH-MIL",
"MH-NMK",
"MH-NMU",
"MH-RON",
"MH-T",
"MH-UJA",
"MH-UTI",
"MH-WTH",
"MH-WTJ",
"MK-101",
"MK-102",
"MK-103",
"MK-104",
"MK-105",
"MK-106",
"MK-107",
"MK-108",
"MK-109",
"MK-201",
"MK-202",
"MK-203",
"MK-204",
"MK-205",
"MK-206",
"MK-207",
"MK-208",
"MK-209",
"MK-210",
"MK-211",
"MK-301",
"MK-303",
"MK-304",
"MK-307",
"MK-308",
"MK-310",
"MK-311",
"MK-312",
"MK-313",
"MK-401",
"MK-402",
"MK-403",
"MK-404",
"MK-405",
"MK-406",
"MK-407",
"MK-408",
"MK-409",
"MK-410",
"MK-501",
"MK-502",
"MK-503",
"MK-504",
"MK-505",
"MK-506",
"MK-507",
"MK-508",
"MK-509",
"MK-601",
"MK-602",
"MK-603",
"MK-604",
"MK-605",
"MK-606",
"MK-607",
"MK-608",
"MK-609",
"MK-701",
"MK-702",
"MK-703",
"MK-704",
"MK-705",
"MK-706",
"MK-801",
"MK-802",
"MK-803",
"MK-804",
"MK-805",
"MK-806",
"MK-807",
"MK-808",
"MK-809",
"MK-810",
"MK-811",
"MK-812",
"MK-813",
"MK-814",
"MK-815",
"MK-816",
"MK-817",
"ML-1",
"ML-10",
"ML-2",
"ML-3",
"ML-4",
"ML-5",
"ML-6",
"ML-7",
"ML-8",
"ML-9",
"ML-BKO",
"MM-01",
"MM-02",
"MM-03",
"MM-04",
"MM-05",
"MM-06",
"MM-07",
"MM-11",
"MM-12",
"MM-13",
"MM-14",
"MM-15",
"MM-16",
"MM-17",
"MM-18",
"MN-035",
"MN-037",
"MN-039",
"MN-041",
"MN-043",
"MN-046",
"MN-047",
"MN-049",
"MN-051",
"MN-053",
"MN-055",
"MN-057",
"MN-059",
"MN-061",
"MN-063",
"MN-064",
"MN-065",
"MN-067",
"MN-069",
"MN-071",
"MN-073",
"MN-1",
"MR-01",
"MR-02",
"MR-03",
"MR-04",
"MR-05",
"MR-06",
"MR-07",
"MR-08",
"MR-09",
"MR-10",
"MR-11",
"MR-12",
"MR-13",
"MR-14",
"MR-15",
"MT-01",
"MT-02",
"MT-03",
"MT-04",
"MT-05",
"MT-06",
"MT-07",
"MT-08",
"MT-09",
"MT-10",
"MT-11",
"MT-12",
"MT-13",
"MT-14",
"MT-15",
"MT-16",
"MT-17",
"MT-18",
"MT-19",
"MT-20",
"MT-21",
"MT-22",
"MT-23",
"MT-24",
"MT-25",
"MT-26",
"MT-27",
"MT-28",
"MT-29",
"MT-30",
"MT-31",
"MT-32",
"MT-33",
"MT-34",
"MT-35",
"MT-36",
"MT-37",
"MT-38",
"MT-39",
"MT-40",
"MT-41",
"MT-42",
"MT-43",
"MT-44",
"MT-45",
"MT-46",
"MT-47",
"MT-48",
"MT-49",
"MT-50",
"MT-51",
"MT-52",
"MT-53",
"MT-54",
"MT-55",
"MT-56",
"MT-57",
"MT-58",
"MT-59",
"MT-60",
"MT-61",
"MT-62",
"MT-63",
"MT-64",
"MT-65",
"MT-66",
"MT-67",
"MT-68",
"MU-AG",
"MU-BL",
"MU-CC",
"MU-FL",
"MU-GP",
"MU-MO",
"MU-PA",
"MU-PL",
"MU-PW",
"MU-RO",
"MU-RR",
"MU-SA",
"MV-00",
"MV-01",
"MV-02",
"MV-03",
"MV-04",
"MV-05",
"MV-07",
"MV-08",
"MV-12",
"MV-13",
"MV-14",
"MV-17",
"MV-20",
"MV-23",
"MV-24",
"MV-25",
"MV-26",
"MV-27",
"MV-28",
"MV-29",
"MV-MLE",
"MW-BA",
"MW-BL",
"MW-C",
"MW-CK",
"MW-CR",
"MW-CT",
"MW-DE",
"MW-DO",
"MW-KR",
"MW-KS",
"MW-LI",
"MW-LK",
"MW-MC",
"MW-MG",
"MW-MH",
"MW-MU",
"MW-MW",
"MW-MZ",
"MW-N",
"MW-NB",
"MW-NE",
"MW-NI",
"MW-NK",
"MW-NS",
"MW-NU",
"MW-PH",
"MW-RU",
"MW-S",
"MW-SA",
"MW-TH",
"MW-ZO",
"MX-AGU",
"MX-BCN",
"MX-BCS",
"MX-CAM",
"MX-CHH",
"MX-CHP",
"MX-CMX",
"MX-COA",
"MX-COL",
"MX-DUR",
"MX-GRO",
"MX-GUA",
"MX-HID",
"MX-JAL",
"MX-MEX",
"MX-MIC",
"MX-MOR",
"MX-NAY",
"MX-NLE",
"MX-OAX",
"MX-PUE",
"MX-QUE",
"MX-ROO",
"MX-SIN",
"MX-SLP",
"MX-SON",
"MX-TAB",
"MX-TAM",
"MX-TLA",
"MX-VER",
"MX-YUC",
"MX-ZAC",
"MY-01",
"MY-02",
"MY-03",
"MY-04",
"MY-05",
"MY-06",
"MY-07",
"MY-08",
"MY-09",
"MY-10",
"MY-11",
"MY-12",
"MY-13",
"MY-14",
"MY-15",
"MY-16",
"MZ-A",
"MZ-B",
"MZ-G",
"MZ-I",
"MZ-L",
"MZ-MPM",
"MZ-N",
"MZ-P",
"MZ-Q",
"MZ-S",
"MZ-T",
"NA-CA",
"NA-ER",
"NA-HA",
"NA-KA",
"NA-KE",
"NA-KH",
"NA-KU",
"NA-KW",
"NA-OD",
"NA-OH",
"NA-ON",
"NA-OS",
"NA-OT",
"NA-OW",
"NE-1",
"NE-2",
"NE-3",
"NE-4",
"NE-5",
"NE-6",
"NE-7",
"NE-8",
"NG-AB",
"NG-AD",
"NG-AK",
"NG-AN",
"NG-BA",
"NG-BE",
"NG-BO",
"NG-BY",
"NG-CR",
"NG-DE",
"NG-EB",
"NG-ED",
"NG-EK",
"NG-EN",
"NG-FC",
"NG-GO",
"NG-IM",
"NG-JI",
"NG-KD",
"NG-KE",
"NG-KN",
"NG-KO",
"NG-KT",
"NG-KW",
"NG-LA",
"NG-NA",
"NG-NI",
"NG-OG",
"NG-ON",
"NG-OS",
"NG-OY",
"NG-PL",
"NG-RI",
"NG-SO",
"NG-TA",
"NG-YO",
"NG-ZA",
"NI-AN",
"NI-AS",
"NI-BO",
"NI-CA",
"NI-CI",
"NI-CO",
"NI-ES",
"NI-GR",
"NI-JI",
"NI-LE",
"NI-MD",
"NI-MN",
"NI-MS",
"NI-MT",
"NI-NS",
"NI-RI",
"NI-SJ",
"NL-AW",
"NL-BQ1",
"NL-BQ2",
"NL-BQ3",
"NL-CW",
"NL-DR",
"NL-FL",
"NL-FR",
"NL-GE",
"NL-GR",
"NL-LI",
"NL-NB",
"NL-NH",
"NL-OV",
"NL-SX",
"NL-UT",
"NL-ZE",
"NL-ZH",
"NO-03",
"NO-11",
"NO-15",
"NO-18",
"NO-21",
"NO-22",
"NO-30",
"NO-34",
"NO-38",
"NO-42",
"NO-46",
"NO-50",
"NO-54",
"NP-1",
"NP-2",
"NP-3",
"NP-4",
"NP-5",
"NP-BA",
"NP-BH",
"NP-DH",
"NP-GA",
"NP-JA",
"NP-KA",
"NP-KO",
"NP-LU",
"NP-MA",
"NP-ME",
"NP-NA",
"NP-P1",
"NP-P2",
"NP-P3",
"NP-P4",
"NP-P5",
"NP-P6",
"NP-P7",
"NP-RA",
"NP-SA",
"NP-SE",
"NR-01",
"NR-02",
"NR-03",
"NR-04",
"NR-05",
"NR-06",
"NR-07",
"NR-08",
"NR-09",
"NR-10",
"NR-11",
"NR-12",
"NR-13",
"NR-14",
"NZ-AUK",
"NZ-BOP",
"NZ-CAN",
"NZ-CIT",
"NZ-GIS",
"NZ-HKB",
"NZ-MBH",
"NZ-MWT",
"NZ-NSN",
"NZ-NTL",
"NZ-OTA",
"NZ-STL",
"NZ-TAS",
"NZ-TKI",
"NZ-WGN",
"NZ-WKO",
"NZ-WTC",
"OM-BJ",
"OM-BS",
"OM-BU",
"OM-DA",
"OM-MA",
"OM-MU",
"OM-SJ",
"OM-SS",
"OM-WU",
"OM-ZA",
"OM-ZU",
"PA-1",
"PA-10",
"PA-2",
"PA-3",
"PA-4",
"PA-5",
"PA-6",
"PA-7",
"PA-8",
"PA-9",
"PA-EM",
"PA-KY",
"PA-NB",
"PE-AMA",
"PE-ANC",
"PE-APU",
"PE-ARE",
"PE-AYA",
"PE-CAJ",
"PE-CAL",
"PE-CUS",
"PE-HUC",
"PE-HUV",
"PE-ICA",
"PE-JUN",
"PE-LAL",
"PE-LAM",
"PE-LIM",
"PE-LMA",
"PE-LOR",
"PE-MDD",
"PE-MOQ",
"PE-PAS",
"PE-PIU",
"PE-PUN",
"PE-SAM",
"PE-TAC",
"PE-TUM",
"PE-UCA",
"PG-CPK",
"PG-CPM",
"PG-EBR",
"PG-EHG",
"PG-EPW",
"PG-ESW",
"PG-GPK",
"PG-HLA",
"PG-JWK",
"PG-MBA",
"PG-MPL",
"PG-MPM",
"PG-MRL",
"PG-NCD",
"PG-NIK",
"PG-NPP",
"PG-NSB",
"PG-SAN",
"PG-SHM",
"PG-WBK",
"PG-WHM",
"PG-WPD",
"PH-00",
"PH-01",
"PH-02",
"PH-03",
"PH-05",
"PH-06",
"PH-07",
"PH-08",
"PH-09",
"PH-10",
"PH-11",
"PH-12",
"PH-13",
"PH-14",
"PH-15",
"PH-40",
"PH-41",
"PH-ABR",
"PH-AGN",
"PH-AGS",
"PH-AKL",
"PH-ALB",
"PH-ANT",
"PH-APA",
"PH-AUR",
"PH-BAN",
"PH-BAS",
"PH-BEN",
"PH-BIL",
"PH-BOH",
"PH-BTG",
"PH-BTN",
"PH-BUK",
"PH-BUL",
"PH-CAG",
"PH-CAM",
"PH-CAN",
"PH-CAP",
"PH-CAS",
"PH-CAT",
"PH-CAV",
"PH-CEB",
"PH-COM",
"PH-DAO",
"PH-DAS",
"PH-DAV",
"PH-DIN",
"PH-DVO",
"PH-EAS",
"PH-GUI",
"PH-IFU",
"PH-ILI",
"PH-ILN",
"PH-ILS",
"PH-ISA",
"PH-KAL",
"PH-LAG",
"PH-LAN",
"PH-LAS",
"PH-LEY",
"PH-LUN",
"PH-MAD",
"PH-MAG",
"PH-MAS",
"PH-MDC",
"PH-MDR",
"PH-MOU",
"PH-MSC",
"PH-MSR",
"PH-NCO",
"PH-NEC",
"PH-NER",
"PH-NSA",
"PH-NUE",
"PH-NUV",
"PH-PAM",
"PH-PAN",
"PH-PLW",
"PH-QUE",
"PH-QUI",
"PH-RIZ",
"PH-ROM",
"PH-SAR",
"PH-SCO",
"PH-SIG",
"PH-SLE",
"PH-SLU",
"PH-SOR",
"PH-SUK",
"PH-SUN",
"PH-SUR",
"PH-TAR",
"PH-TAW",
"PH-WSA",
"PH-ZAN",
"PH-ZAS",
"PH-ZMB",
"PH-ZSI",
"PK-BA",
"PK-GB",
"PK-IS",
"PK-JK",
"PK-KP",
"PK-PB",
"PK-SD",
"PK-TA",
"PL-02",
"PL-04",
"PL-06",
"PL-08",
"PL-10",
"PL-12",
"PL-14",
"PL-16",
"PL-18",
"PL-20",
"PL-22",
"PL-24",
"PL-26",
"PL-28",
"PL-30",
"PL-32",
"PS-BTH",
"PS-DEB",
"PS-GZA",
"PS-HBN",
"PS-JEM",
"PS-JEN",
"PS-JRH",
"PS-KYS",
"PS-NBS",
"PS-NGZ",
"PS-QQA",
"PS-RBH",
"PS-RFH",
"PS-SLT",
"PS-TBS",
"PS-TKM",
"PT-01",
"PT-02",
"PT-03",
"PT-04",
"PT-05",
"PT-06",
"PT-07",
"PT-08",
"PT-09",
"PT-10",
"PT-11",
"PT-12",
"PT-13",
"PT-14",
"PT-15",
"PT-16",
"PT-17",
"PT-18",
"PT-20",
"PT-30",
"PW-002",
"PW-004",
"PW-010",
"PW-050",
"PW-100",
"PW-150",
"PW-212",
"PW-214",
"PW-218",
"PW-222",
"PW-224",
"PW-226",
"PW-227",
"PW-228",
"PW-350",
"PW-370",
"PY-1",
"PY-10",
"PY-11",
"PY-12",
"PY-13",
"PY-14",
"PY-15",
"PY-16",
"PY-19",
"PY-2",
"PY-3",
"PY-4",
"PY-5",
"PY-6",
"PY-7",
"PY-8",
"PY-9",
"PY-ASU",
"QA-DA",
"QA-KH",
"QA-MS",
"QA-RA",
"QA-SH",
"QA-US",
"QA-WA",
"QA-ZA",
"RO-AB",
"RO-AG",
"RO-AR",
"RO-B",
"RO-BC",
"RO-BH",
"RO-BN",
"RO-BR",
"RO-BT",
"RO-BV",
"RO-BZ",
"RO-CJ",
"RO-CL",
"RO-CS",
"RO-CT",
"RO-CV",
"RO-DB",
"RO-DJ",
"RO-GJ",
"RO-GL",
"RO-GR",
"RO-HD",
"RO-HR",
"RO-IF",
"RO-IL",
"RO-IS",
"RO-MH",
"RO-MM",
"RO-MS",
"RO-NT",
"RO-OT",
"RO-PH",
"RO-SB",
"RO-SJ",
"RO-SM",
"RO-SV",
"RO-TL",
"RO-TM",
"RO-TR",
"RO-VL",
"RO-VN",
"RO-VS",
"RS-00",
"RS-01",
"RS-02",
"RS-03",
"RS-04",
"RS-05",
"RS-06",
"RS-07",
"RS-08",
"RS-09",
"RS-10",
"RS-11",
"RS-12",
"RS-13",
"RS-14",
"RS-15",
"RS-16",
"RS-17",
"RS-18",
"RS-19",
"RS-20",
"RS-21",
"RS-22",
"RS-23",
"RS-24",
"RS-25",
"RS-26",
"RS-27",
"RS-28",
"RS-29",
"RS-KM",
"RS-VO",
"RU-AD",
"RU-AL",
"RU-ALT",
"RU-AMU",
"RU-ARK",
"RU-AST",
"RU-BA",
"RU-BEL",
"RU-BRY",
"RU-BU",
"RU-CE",
"RU-CHE",
"RU-CHU",
"RU-CU",
"RU-DA",
"RU-IN",
"RU-IRK",
"RU-IVA",
"RU-KAM",
"RU-KB",
"RU-KC",
"RU-KDA",
"RU-KEM",
"RU-KGD",
"RU-KGN",
"RU-KHA",
"RU-KHM",
"RU-KIR",
"RU-KK",
"RU-KL",
"RU-KLU",
"RU-KO",
"RU-KOS",
"RU-KR",
"RU-KRS",
"RU-KYA",
"RU-LEN",
"RU-LIP",
"RU-MAG",
"RU-ME",
"RU-MO",
"RU-MOS",
"RU-MOW",
"RU-MUR",
"RU-NEN",
"RU-NGR",
"RU-NIZ",
"RU-NVS",
"RU-OMS",
"RU-ORE",
"RU-ORL",
"RU-PER",
"RU-PNZ",
"RU-PRI",
"RU-PSK",
"RU-ROS",
"RU-RYA",
"RU-SA",
"RU-SAK",
"RU-SAM",
"RU-SAR",
"RU-SE",
"RU-SMO",
"RU-SPE",
"RU-STA",
"RU-SVE",
"RU-TA",
"RU-TAM",
"RU-TOM",
"RU-TUL",
"RU-TVE",
"RU-TY",
"RU-TYU",
"RU-UD",
"RU-ULY",
"RU-VGG",
"RU-VLA",
"RU-VLG",
"RU-VOR",
"RU-YAN",
"RU-YAR",
"RU-YEV",
"RU-ZAB",
"RW-01",
"RW-02",
"RW-03",
"RW-04",
"RW-05",
"SA-01",
"SA-02",
"SA-03",
"SA-04",
"SA-05",
"SA-06",
"SA-07",
"SA-08",
"SA-09",
"SA-10",
"SA-11",
"SA-12",
"SA-14",
"SB-CE",
"SB-CH",
"SB-CT",
"SB-GU",
"SB-IS",
"SB-MK",
"SB-ML",
"SB-RB",
"SB-TE",
"SB-WE",
"SC-01",
"SC-02",
"SC-03",
"SC-04",
"SC-05",
"SC-06",
"SC-07",
"SC-08",
"SC-09",
"SC-10",
"SC-11",
"SC-12",
"SC-13",
"SC-14",
"SC-15",
"SC-16",
"SC-17",
"SC-18",
"SC-19",
"SC-20",
"SC-21",
"SC-22",
"SC-23",
"SC-24",
"SC-25",
"SC-26",
"SC-27",
"SD-DC",
"SD-DE",
"SD-DN",
"SD-DS",
"SD-DW",
"SD-GD",
"SD-GK",
"SD-GZ",
"SD-KA",
"SD-KH",
"SD-KN",
"SD-KS",
"SD-NB",
"SD-NO",
"SD-NR",
"SD-NW",
"SD-RS",
"SD-SI",
"SE-AB",
"SE-AC",
"SE-BD",
"SE-C",
"SE-D",
"SE-E",
"SE-F",
"SE-G",
"SE-H",
"SE-I",
"SE-K",
"SE-M",
"SE-N",
"SE-O",
"SE-S",
"SE-T",
"SE-U",
"SE-W",
"SE-X",
"SE-Y",
"SE-Z",
"SG-01",
"SG-02",
"SG-03",
"SG-04",
"SG-05",
"SH-AC",
"SH-HL",
"SH-TA",
"SI-001",
"SI-002",
"SI-003",
"SI-004",
"SI-005",
"SI-006",
"SI-007",
"SI-008",
"SI-009",
"SI-010",
"SI-011",
"SI-012",
"SI-013",
"SI-014",
"SI-015",
"SI-016",
"SI-017",
"SI-018",
"SI-019",
"SI-020",
"SI-021",
"SI-022",
"SI-023",
"SI-024",
"SI-025",
"SI-026",
"SI-027",
"SI-028",
"SI-029",
"SI-030",
"SI-031",
"SI-032",
"SI-033",
"SI-034",
"SI-035",
"SI-036",
"SI-037",
"SI-038",
"SI-039",
"SI-040",
"SI-041",
"SI-042",
"SI-043",
"SI-044",
"SI-045",
"SI-046",
"SI-047",
"SI-048",
"SI-049",
"SI-050",
"SI-051",
"SI-052",
"SI-053",
"SI-054",
"SI-055",
"SI-056",
"SI-057",
"SI-058",
"SI-059",
"SI-060",
"SI-061",
"SI-062",
"SI-063",
"SI-064",
"SI-065",
"SI-066",
"SI-067",
"SI-068",
"SI-069",
"SI-070",
"SI-071",
"SI-072",
"SI-073",
"SI-074",
"SI-075",
"SI-076",
"SI-077",
"SI-078",
"SI-079",
"SI-080",
"SI-081",
"SI-082",
"SI-083",
"SI-084",
"SI-085",
"SI-086",
"SI-087",
"SI-088",
"SI-089",
"SI-090",
"SI-091",
"SI-092",
"SI-093",
"SI-094",
"SI-095",
"SI-096",
"SI-097",
"SI-098",
"SI-099",
"SI-100",
"SI-101",
"SI-102",
"SI-103",
"SI-104",
"SI-105",
"SI-106",
"SI-107",
"SI-108",
"SI-109",
"SI-110",
"SI-111",
"SI-112",
"SI-113",
"SI-114",
"SI-115",
"SI-116",
"SI-117",
"SI-118",
"SI-119",
"SI-120",
"SI-121",
"SI-122",
"SI-123",
"SI-124",
"SI-125",
"SI-126",
"SI-127",
"SI-128",
"SI-129",
"SI-130",
"SI-131",
"SI-132",
"SI-133",
"SI-134",
"SI-135",
"SI-136",
"SI-137",
"SI-138",
"SI-139",
"SI-140",
"SI-141",
"SI-142",
"SI-143",
"SI-144",
"SI-146",
"SI-147",
"SI-148",
"SI-149",
"SI-150",
"SI-151",
"SI-152",
"SI-153",
"SI-154",
"SI-155",
"SI-156",
"SI-157",
"SI-158",
"SI-159",
"SI-160",
"SI-161",
"SI-162",
"SI-163",
"SI-164",
"SI-165",
"SI-166",
"SI-167",
"SI-168",
"SI-169",
"SI-170",
"SI-171",
"SI-172",
"SI-173",
"SI-174",
"SI-175",
"SI-176",
"SI-177",
"SI-178",
"SI-179",
"SI-180",
"SI-181",
"SI-182",
"SI-183",
"SI-184",
"SI-185",
"SI-186",
"SI-187",
"SI-188",
"SI-189",
"SI-190",
"SI-191",
"SI-192",
"SI-193",
"SI-194",
"SI-195",
"SI-196",
"SI-197",
"SI-198",
"SI-199",
"SI-200",
"SI-201",
"SI-202",
"SI-203",
"SI-204",
"SI-205",
"SI-206",
"SI-207",
"SI-208",
"SI-209",
"SI-210",
"SI-211",
"SI-212",
"SI-213",
"SK-BC",
"SK-BL",
"SK-KI",
"SK-NI",
"SK-PV",
"SK-TA",
"SK-TC",
"SK-ZI",
"SL-E",
"SL-N",
"SL-NW",
"SL-S",
"SL-W",
"SM-01",
"SM-02",
"SM-03",
"SM-04",
"SM-05",
"SM-06",
"SM-07",
"SM-08",
"SM-09",
"SN-DB",
"SN-DK",
"SN-FK",
"SN-KA",
"SN-KD",
"SN-KE",
"SN-KL",
"SN-LG",
"SN-MT",
"SN-SE",
"SN-SL",
"SN-TC",
"SN-TH",
"SN-ZG",
"SO-AW",
"SO-BK",
"SO-BN",
"SO-BR",
"SO-BY",
"SO-GA",
"SO-GE",
"SO-HI",
"SO-JD",
"SO-JH",
"SO-MU",
"SO-NU",
"SO-SA",
"SO-SD",
"SO-SH",
"SO-SO",
"SO-TO",
"SO-WO",
"SR-BR",
"SR-CM",
"SR-CR",
"SR-MA",
"SR-NI",
"SR-PM",
"SR-PR",
"SR-SA",
"SR-SI",
"SR-WA",
"SS-BN",
"SS-BW",
"SS-EC",
"SS-EE",
"SS-EW",
"SS-JG",
"SS-LK",
"SS-NU",
"SS-UY",
"SS-WR",
"ST-01",
"ST-02",
"ST-03",
"ST-04",
"ST-05",
"ST-06",
"ST-P",
"SV-AH",
"SV-CA",
"SV-CH",
"SV-CU",
"SV-LI",
"SV-MO",
"SV-PA",
"SV-SA",
"SV-SM",
"SV-SO",
"SV-SS",
"SV-SV",
"SV-UN",
"SV-US",
"SY-DI",
"SY-DR",
"SY-DY",
"SY-HA",
"SY-HI",
"SY-HL",
"SY-HM",
"SY-ID",
"SY-LA",
"SY-QU",
"SY-RA",
"SY-RD",
"SY-SU",
"SY-TA",
"SZ-HH",
"SZ-LU",
"SZ-MA",
"SZ-SH",
"TD-BA",
"TD-BG",
"TD-BO",
"TD-CB",
"TD-EE",
"TD-EO",
"TD-GR",
"TD-HL",
"TD-KA",
"TD-LC",
"TD-LO",
"TD-LR",
"TD-MA",
"TD-MC",
"TD-ME",
"TD-MO",
"TD-ND",
"TD-OD",
"TD-SA",
"TD-SI",
"TD-TA",
"TD-TI",
"TD-WF",
"TG-C",
"TG-K",
"TG-M",
"TG-P",
"TG-S",
"TH-10",
"TH-11",
"TH-12",
"TH-13",
"TH-14",
"TH-15",
"TH-16",
"TH-17",
"TH-18",
"TH-19",
"TH-20",
"TH-21",
"TH-22",
"TH-23",
"TH-24",
"TH-25",
"TH-26",
"TH-27",
"TH-30",
"TH-31",
"TH-32",
"TH-33",
"TH-34",
"TH-35",
"TH-36",
"TH-37",
"TH-38",
"TH-39",
"TH-40",
"TH-41",
"TH-42",
"TH-43",
"TH-44",
"TH-45",
"TH-46",
"TH-47",
"TH-48",
"TH-49",
"TH-50",
"TH-51",
"TH-52",
"TH-53",
"TH-54",
"TH-55",
"TH-56",
"TH-57",
"TH-58",
"TH-60",
"TH-61",
"TH-62",
"TH-63",
"TH-64",
"TH-65",
"TH-66",
"TH-67",
"TH-70",
"TH-71",
"TH-72",
"TH-73",
"TH-74",
"TH-75",
"TH-76",
"TH-77",
"TH-80",
"TH-81",
"TH-82",
"TH-83",
"TH-84",
"TH-85",
"TH-86",
"TH-90",
"TH-91",
"TH-92",
"TH-93",
"TH-94",
"TH-95",
"TH-96",
"TH-S",
"TJ-DU",
"TJ-GB",
"TJ-KT",
"TJ-RA",
"TJ-SU",
"TL-AL",
"TL-AN",
"TL-BA",
"TL-BO",
"TL-CO",
"TL-DI",
"TL-ER",
"TL-LA",
"TL-LI",
"TL-MF",
"TL-MT",
"TL-OE",
"TL-VI",
"TM-A",
"TM-B",
"TM-D",
"TM-L",
"TM-M",
"TM-S",
"TN-11",
"TN-12",
"TN-13",
"TN-14",
"TN-21",
"TN-22",
"TN-23",
"TN-31",
"TN-32",
"TN-33",
"TN-34",
"TN-41",
"TN-42",
"TN-43",
"TN-51",
"TN-52",
"TN-53",
"TN-61",
"TN-71",
"TN-72",
"TN-73",
"TN-81",
"TN-82",
"TN-83",
"TO-01",
"TO-02",
"TO-03",
"TO-04",
"TO-05",
"TR-01",
"TR-02",
"TR-03",
"TR-04",
"TR-05",
"TR-06",
"TR-07",
"TR-08",
"TR-09",
"TR-10",
"TR-11",
"TR-12",
"TR-13",
"TR-14",
"TR-15",
"TR-16",
"TR-17",
"TR-18",
"TR-19",
"TR-20",
"TR-21",
"TR-22",
"TR-23",
"TR-24",
"TR-25",
"TR-26",
"TR-27",
"TR-28",
"TR-29",
"TR-30",
"TR-31",
"TR-32",
"TR-33",
"TR-34",
"TR-35",
"TR-36",
"TR-37",
"TR-38",
"TR-39",
"TR-40",
"TR-41",
"TR-42",
"TR-43",
"TR-44",
"TR-45",
"TR-46",
"TR-47",
"TR-48",
"TR-49",
"TR-50",
"TR-51",
"TR-52",
"TR-53",
"TR-54",
"TR-55",
"TR-56",
"TR-57",
"TR-58",
"TR-59",
"TR-60",
"TR-61",
"TR-62",
"TR-63",
"TR-64",
"TR-65",
"TR-66",
"TR-67",
"TR-68",
"TR-69",
"TR-70",
"TR-71",
"TR-72",
"TR-73",
"TR-74",
"TR-75",
"TR-76",
"TR-77",
"TR-78",
"TR-79",
"TR-80",
"TR-81",
"TT-ARI",
"TT-CHA",
"TT-CTT",
"TT-DMN",
"TT-MRC",
"TT-PED",
"TT-POS",
"TT-PRT",
"TT-PTF",
"TT-SFO",
"TT-SGE",
"TT-SIP",
"TT-SJL",
"TT-TOB",
"TT-TUP",
"TV-FUN",
"TV-NIT",
"TV-NKF",
"TV-NKL",
"TV-NMA",
"TV-NMG",
"TV-NUI",
"TV-VAI",
"TW-CHA",
"TW-CYI",
"TW-CYQ",
"TW-HSQ",
"TW-HSZ",
"TW-HUA",
"TW-ILA",
"TW-KEE",
"TW-KHH",
"TW-KIN",
"TW-LIE",
"TW-MIA",
"TW-NAN",
"TW-NWT",
"TW-PEN",
"TW-PIF",
"TW-TAO",
"TW-TNN",
"TW-TPE",
"TW-TTT",
"TW-TXG",
"TW-YUN",
"TZ-01",
"TZ-02",
"TZ-03",
"TZ-04",
"TZ-05",
"TZ-06",
"TZ-07",
"TZ-08",
"TZ-09",
"TZ-10",
"TZ-11",
"TZ-12",
"TZ-13",
"TZ-14",
"TZ-15",
"TZ-16",
"TZ-17",
"TZ-18",
"TZ-19",
"TZ-20",
"TZ-21",
"TZ-22",
"TZ-23",
"TZ-24",
"TZ-25",
"TZ-26",
"TZ-27",
"TZ-28",
"TZ-29",
"TZ-30",
"TZ-31",
"UA-05",
"UA-07",
"UA-09",
"UA-12",
"UA-14",
"UA-18",
"UA-21",
"UA-23",
"UA-26",
"UA-30",
"UA-32",
"UA-35",
"UA-40",
"UA-43",
"UA-46",
"UA-48",
"UA-51",
"UA-53",
"UA-56",
"UA-59",
"UA-61",
"UA-63",
"UA-65",
"UA-68",
"UA-71",
"UA-74",
"UA-77",
"UG-101",
"UG-102",
"UG-103",
"UG-104",
"UG-105",
"UG-106",
"UG-107",
"UG-108",
"UG-109",
"UG-110",
"UG-111",
"UG-112",
"UG-113",
"UG-114",
"UG-115",
"UG-116",
"UG-117",
"UG-118",
"UG-119",
"UG-120",
"UG-121",
"UG-122",
"UG-123",
"UG-124",
"UG-125",
"UG-126",
"UG-201",
"UG-202",
"UG-203",
"UG-204",
"UG-205",
"UG-206",
"UG-207",
"UG-208",
"UG-209",
"UG-210",
"UG-211",
"UG-212",
"UG-213",
"UG-214",
"UG-215",
"UG-216",
"UG-217",
"UG-218",
"UG-219",
"UG-220",
"UG-221",
"UG-222",
"UG-223",
"UG-224",
"UG-225",
"UG-226",
"UG-227",
"UG-228",
"UG-229",
"UG-230",
"UG-231",
"UG-232",
"UG-233",
"UG-234",
"UG-235",
"UG-236",
"UG-237",
"UG-301",
"UG-302",
"UG-303",
"UG-304",
"UG-305",
"UG-306",
"UG-307",
"UG-308",
"UG-309",
"UG-310",
"UG-311",
"UG-312",
"UG-313",
"UG-314",
"UG-315",
"UG-316",
"UG-317",
"UG-318",
"UG-319",
"UG-320",
"UG-321",
"UG-322",
"UG-323",
"UG-324",
"UG-325",
"UG-326",
"UG-327",
"UG-328",
"UG-329",
"UG-330",
"UG-331",
"UG-332",
"UG-333",
"UG-334",
"UG-335",
"UG-336",
"UG-337",
"UG-401",
"UG-402",
"UG-403",
"UG-404",
"UG-405",
"UG-406",
"UG-407",
"UG-408",
"UG-409",
"UG-410",
"UG-411",
"UG-412",
"UG-413",
"UG-414",
"UG-415",
"UG-416",
"UG-417",
"UG-418",
"UG-419",
"UG-420",
"UG-421",
"UG-422",
"UG-423",
"UG-424",
"UG-425",
"UG-426",
"UG-427",
"UG-428",
"UG-429",
"UG-430",
"UG-431",
"UG-432",
"UG-433",
"UG-434",
"UG-435",
"UG-C",
"UG-E",
"UG-N",
"UG-W",
"UM-67",
"UM-71",
"UM-76",
"UM-79",
"UM-81",
"UM-84",
"UM-86",
"UM-89",
"UM-95",
"US-AK",
"US-AL",
"US-AR",
"US-AS",
"US-AZ",
"US-CA",
"US-CO",
"US-CT",
"US-DC",
"US-DE",
"US-FL",
"US-GA",
"US-GU",
"US-HI",
"US-IA",
"US-ID",
"US-IL",
"US-IN",
"US-KS",
"US-KY",
"US-LA",
"US-MA",
"US-MD",
"US-ME",
"US-MI",
"US-MN",
"US-MO",
"US-MP",
"US-MS",
"US-MT",
"US-NC",
"US-ND",
"US-NE",
"US-NH",
"US-NJ",
"US-NM",
"US-NV",
"US-NY",
"US-OH",
"US-OK",
"US-OR",
"US-PA",
"US-PR",
"US-RI",
"US-SC",
"US-SD",
"US-TN",
"US-TX",
"US-UM",
"US-UT",
"US-VA",
"US-VI",
"US-VT",
"US-WA",
"US-WI",
"US-WV",
"US-WY",
"UY-AR",
"UY-CA",
"UY-CL",
"UY-CO",
"UY-DU",
"UY-FD",
"UY-FS",
"UY-LA",
"UY-MA",
"UY-MO",
"UY-PA",
"UY-RN",
"UY-RO",
"UY-RV",
"UY-SA",
"UY-SJ",
"UY-SO",
"UY-TA",
"UY-TT",
"UZ-AN",
"UZ-BU",
"UZ-FA",
"UZ-JI",
"UZ-NG",
"UZ-NW",
"UZ-QA",
"UZ-QR",
"UZ-SA",
"UZ-SI",
"UZ-SU",
"UZ-TK",
"UZ-TO",
"UZ-XO",
"VC-01",
"VC-02",
"VC-03",
"VC-04",
"VC-05",
"VC-06",
"VE-A",
"VE-B",
"VE-C",
"VE-D",
"VE-E",
"VE-F",
"VE-G",
"VE-H",
"VE-I",
"VE-J",
"VE-K",
"VE-L",
"VE-M",
"VE-N",
"VE-O",
"VE-P",
"VE-R",
"VE-S",
"VE-T",
"VE-U",
"VE-V",
"VE-W",
"VE-X",
"VE-Y",
"VE-Z",
"VN-01",
"VN-02",
"VN-03",
"VN-04",
"VN-05",
"VN-06",
"VN-07",
"VN-09",
"VN-13",
"VN-14",
"VN-18",
"VN-20",
"VN-21",
"VN-22",
"VN-23",
"VN-24",
"VN-25",
"VN-26",
"VN-27",
"VN-28",
"VN-29",
"VN-30",
"VN-31",
"VN-32",
"VN-33",
"VN-34",
"VN-35",
"VN-36",
"VN-37",
"VN-39",
"VN-40",
"VN-41",
"VN-43",
"VN-44",
"VN-45",
"VN-46",
"VN-47",
"VN-49",
"VN-50",
"VN-51",
"VN-52",
"VN-53",
"VN-54",
"VN-55",
"VN-56",
"VN-57",
"VN-58",
"VN-59",
"VN-61",
"VN-63",
"VN-66",
"VN-67",
"VN-68",
"VN-69",
"VN-70",
"VN-71",
"VN-72",
"VN-73",
"VN-CT",
"VN-DN",
"VN-HN",
"VN-HP",
"VN-SG",
"VU-MAP",
"VU-PAM",
"VU-SAM",
"VU-SEE",
"VU-TAE",
"VU-TOB",
"WF-AL",
"WF-SG",
"WF-UV",
"WS-AA",
"WS-AL",
"WS-AT",
"WS-FA",
"WS-GE",
"WS-GI",
"WS-PA",
"WS-SA",
"WS-TU",
"WS-VF",
"WS-VS",
"YE-AB",
"YE-AD",
"YE-AM",
"YE-BA",
"YE-DA",
"YE-DH",
"YE-HD",
"YE-HJ",
"YE-HU",
"YE-IB",
"YE-JA",
"YE-LA",
"YE-MA",
"YE-MR",
"YE-MW",
"YE-RA",
"YE-SA",
"YE-SD",
"YE-SH",
"YE-SN",
"YE-SU",
"YE-TA",
"ZA-EC",
"ZA-FS",
"ZA-GP",
"ZA-KZN",
"ZA-LP",
"ZA-MP",
"ZA-NC",
"ZA-NW",
"ZA-WC",
"ZM-01",
"ZM-02",
"ZM-03",
"ZM-04",
"ZM-05",
"ZM-06",
"ZM-07",
"ZM-08",
"ZM-09",
"ZM-10",
"ZW-BU",
"ZW-HA",
"ZW-MA",
"ZW-MC",
"ZW-ME",
"ZW-MI",
"ZW-MN",
"ZW-MS",
"ZW-MV",
"ZW-MW"
]
}
},
"data-subjects": {
"type": "array",
"items": {
"type": "string"
}
},
"headers": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name", "value"],
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"isSecret": {
"type": "boolean"
}
}
}
]
}
},
"privacy-actions": {
"type": "array",
"items": {
"type": "string",
"enum": [
"AUTOMATED_DECISION_MAKING_OPT_OUT",
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
"CONTACT_OPT_OUT",
"SALE_OPT_OUT",
"TRACKING_OPT_OUT",
"CUSTOM_OPT_OUT",
"AUTOMATED_DECISION_MAKING_OPT_IN",
"USE_OF_SENSITIVE_INFORMATION_OPT_IN",
"SALE_OPT_IN",
"TRACKING_OPT_IN",
"CONTACT_OPT_IN",
"CUSTOM_OPT_IN",
"ACCESS",
"ERASURE",
"RECTIFICATION",
"RESTRICTION",
"BUSINESS_PURPOSE",
"PLACE_ON_LEGAL_HOLD",
"REMOVE_FROM_LEGAL_HOLD"
]
}
}
}
}
]
}
},
"attributes": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name", "type"],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"MULTI_SELECT",
"SINGLE_SELECT",
"TEXT",
"EMAIL",
"TELEPHONE",
"URL",
"ASSESSMENT"
]
}
}
},
{
"type": "object",
"properties": {
"description": {
"type": "string"
},
"resources": {
"type": "array",
"items": {
"type": "string",
"enum": [
"actionItem",
"dataSilo",
"subDataPoint",
"airgapCookie",
"airgapDataFlow",
"request",
"vendor",
"businessEntity",
"dataSubCategory",
"processingPurposeSubCategory"
]
}
},
"values": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"color": {
"type": "string"
}
}
}
]
}
}
}
}
]
}
},
"business-entities": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["title"],
"properties": {
"title": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"description": {
"type": "string"
},
"address": {
"type": "string"
},
"headquarterCountry": {
"type": "string",
"enum": [
"EU",
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BA",
"BW",
"BV",
"BR",
"IO",
"VG",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"BQ",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"KP",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"KR",
"SS",
"ES",
"LK",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UM",
"VI",
"UG",
"UA",
"AE",
"GB",
"US",
"UY",
"UZ",
"VU",
"VA",
"VE",
"VN",
"WF",
"EH",
"YE",
"ZM",
"ZW"
]
},
"headquarterSubDivision": {
"type": "string",
"enum": [
"AD-02",
"AD-03",
"AD-04",
"AD-05",
"AD-06",
"AD-07",
"AD-08",
"AE-AJ",
"AE-AZ",
"AE-DU",
"AE-FU",
"AE-RK",
"AE-SH",
"AE-UQ",
"AF-BAL",
"AF-BAM",
"AF-BDG",
"AF-BDS",
"AF-BGL",
"AF-DAY",
"AF-FRA",
"AF-FYB",
"AF-GHA",
"AF-GHO",
"AF-HEL",
"AF-HER",
"AF-JOW",
"AF-KAB",
"AF-KAN",
"AF-KAP",
"AF-KDZ",
"AF-KHO",
"AF-KNR",
"AF-LAG",
"AF-LOG",
"AF-NAN",
"AF-NIM",
"AF-NUR",
"AF-PAN",
"AF-PAR",
"AF-PIA",
"AF-PKA",
"AF-SAM",
"AF-SAR",
"AF-TAK",
"AF-URU",
"AF-WAR",
"AF-ZAB",
"AG-03",
"AG-04",
"AG-05",
"AG-06",
"AG-07",
"AG-08",
"AG-10",
"AG-11",
"AL-01",
"AL-02",
"AL-03",
"AL-04",
"AL-05",
"AL-06",
"AL-07",
"AL-08",
"AL-09",
"AL-10",
"AL-11",
"AL-12",
"AM-AG",
"AM-AR",
"AM-AV",
"AM-ER",
"AM-GR",
"AM-KT",
"AM-LO",
"AM-SH",
"AM-SU",
"AM-TV",
"AM-VD",
"AO-BGO",
"AO-BGU",
"AO-BIE",
"AO-CAB",
"AO-CCU",
"AO-CNN",
"AO-CNO",
"AO-CUS",
"AO-HUA",
"AO-HUI",
"AO-LNO",
"AO-LSU",
"AO-LUA",
"AO-MAL",
"AO-MOX",
"AO-NAM",
"AO-UIG",
"AO-ZAI",
"AR-A",
"AR-B",
"AR-C",
"AR-D",
"AR-E",
"AR-F",
"AR-G",
"AR-H",
"AR-J",
"AR-K",
"AR-L",
"AR-M",
"AR-N",
"AR-P",
"AR-Q",
"AR-R",
"AR-S",
"AR-T",
"AR-U",
"AR-V",
"AR-W",
"AR-X",
"AR-Y",
"AR-Z",
"AT-1",
"AT-2",
"AT-3",
"AT-4",
"AT-5",
"AT-6",
"AT-7",
"AT-8",
"AT-9",
"AU-ACT",
"AU-NSW",
"AU-NT",
"AU-QLD",
"AU-SA",
"AU-TAS",
"AU-VIC",
"AU-WA",
"AZ-ABS",
"AZ-AGA",
"AZ-AGC",
"AZ-AGM",
"AZ-AGS",
"AZ-AGU",
"AZ-AST",
"AZ-BA",
"AZ-BAB",
"AZ-BAL",
"AZ-BAR",
"AZ-BEY",
"AZ-BIL",
"AZ-CAB",
"AZ-CAL",
"AZ-CUL",
"AZ-DAS",
"AZ-FUZ",
"AZ-GA",
"AZ-GAD",
"AZ-GOR",
"AZ-GOY",
"AZ-GYG",
"AZ-HAC",
"AZ-IMI",
"AZ-ISM",
"AZ-KAL",
"AZ-KAN",
"AZ-KUR",
"AZ-LA",
"AZ-LAC",
"AZ-LAN",
"AZ-LER",
"AZ-MAS",
"AZ-MI",
"AZ-NA",
"AZ-NEF",
"AZ-NV",
"AZ-NX",
"AZ-OGU",
"AZ-ORD",
"AZ-QAB",
"AZ-QAX",
"AZ-QAZ",
"AZ-QBA",
"AZ-QBI",
"AZ-QOB",
"AZ-QUS",
"AZ-SA",
"AZ-SAB",
"AZ-SAD",
"AZ-SAH",
"AZ-SAK",
"AZ-SAL",
"AZ-SAR",
"AZ-SAT",
"AZ-SBN",
"AZ-SIY",
"AZ-SKR",
"AZ-SM",
"AZ-SMI",
"AZ-SMX",
"AZ-SR",
"AZ-SUS",
"AZ-TAR",
"AZ-TOV",
"AZ-UCA",
"AZ-XA",
"AZ-XAC",
"AZ-XCI",
"AZ-XIZ",
"AZ-XVD",
"AZ-YAR",
"AZ-YE",
"AZ-YEV",
"AZ-ZAN",
"AZ-ZAQ",
"AZ-ZAR",
"BA-BIH",
"BA-BRC",
"BA-SRP",
"BB-01",
"BB-02",
"BB-03",
"BB-04",
"BB-05",
"BB-06",
"BB-07",
"BB-08",
"BB-09",
"BB-10",
"BB-11",
"BD-01",
"BD-02",
"BD-03",
"BD-04",
"BD-05",
"BD-06",
"BD-07",
"BD-08",
"BD-09",
"BD-10",
"BD-11",
"BD-12",
"BD-13",
"BD-14",
"BD-15",
"BD-16",
"BD-17",
"BD-18",
"BD-19",
"BD-20",
"BD-21",
"BD-22",
"BD-23",
"BD-24",
"BD-25",
"BD-26",
"BD-27",
"BD-28",
"BD-29",
"BD-30",
"BD-31",
"BD-32",
"BD-33",
"BD-34",
"BD-35",
"BD-36",
"BD-37",
"BD-38",
"BD-39",
"BD-40",
"BD-41",
"BD-42",
"BD-43",
"BD-44",
"BD-45",
"BD-46",
"BD-47",
"BD-48",
"BD-49",
"BD-50",
"BD-51",
"BD-52",
"BD-53",
"BD-54",
"BD-55",
"BD-56",
"BD-57",
"BD-58",
"BD-59",
"BD-60",
"BD-61",
"BD-62",
"BD-63",
"BD-64",
"BD-A",
"BD-B",
"BD-C",
"BD-D",
"BD-E",
"BD-F",
"BD-G",
"BD-H",
"BE-BRU",
"BE-VAN",
"BE-VBR",
"BE-VLG",
"BE-VLI",
"BE-VOV",
"BE-VWV",
"BE-WAL",
"BE-WBR",
"BE-WHT",
"BE-WLG",
"BE-WLX",
"BE-WNA",
"BF-01",
"BF-02",
"BF-03",
"BF-04",
"BF-05",
"BF-06",
"BF-07",
"BF-08",
"BF-09",
"BF-10",
"BF-11",
"BF-12",
"BF-13",
"BF-BAL",
"BF-BAM",
"BF-BAN",
"BF-BAZ",
"BF-BGR",
"BF-BLG",
"BF-BLK",
"BF-COM",
"BF-GAN",
"BF-GNA",
"BF-GOU",
"BF-HOU",
"BF-IOB",
"BF-KAD",
"BF-KEN",
"BF-KMD",
"BF-KMP",
"BF-KOP",
"BF-KOS",
"BF-KOT",
"BF-KOW",
"BF-LER",
"BF-LOR",
"BF-MOU",
"BF-NAM",
"BF-NAO",
"BF-NAY",
"BF-NOU",
"BF-OUB",
"BF-OUD",
"BF-PAS",
"BF-PON",
"BF-SEN",
"BF-SIS",
"BF-SMT",
"BF-SNG",
"BF-SOM",
"BF-SOR",
"BF-TAP",
"BF-TUI",
"BF-YAG",
"BF-YAT",
"BF-ZIR",
"BF-ZON",
"BF-ZOU",
"BG-01",
"BG-02",
"BG-03",
"BG-04",
"BG-05",
"BG-06",
"BG-07",
"BG-08",
"BG-09",
"BG-10",
"BG-11",
"BG-12",
"BG-13",
"BG-14",
"BG-15",
"BG-16",
"BG-17",
"BG-18",
"BG-19",
"BG-20",
"BG-21",
"BG-22",
"BG-23",
"BG-24",
"BG-25",
"BG-26",
"BG-27",
"BG-28",
"BH-13",
"BH-14",
"BH-15",
"BH-17",
"BI-BB",
"BI-BL",
"BI-BM",
"BI-BR",
"BI-CA",
"BI-CI",
"BI-GI",
"BI-KI",
"BI-KR",
"BI-KY",
"BI-MA",
"BI-MU",
"BI-MW",
"BI-MY",
"BI-NG",
"BI-RM",
"BI-RT",
"BI-RY",
"BJ-AK",
"BJ-AL",
"BJ-AQ",
"BJ-BO",
"BJ-CO",
"BJ-DO",
"BJ-KO",
"BJ-LI",
"BJ-MO",
"BJ-OU",
"BJ-PL",
"BJ-ZO",
"BN-BE",
"BN-BM",
"BN-TE",
"BN-TU",
"BO-B",
"BO-C",
"BO-H",
"BO-L",
"BO-N",
"BO-O",
"BO-P",
"BO-S",
"BO-T",
"BQ-BO",
"BQ-SA",
"BQ-SE",
"BR-AC",
"BR-AL",
"BR-AM",
"BR-AP",
"BR-BA",
"BR-CE",
"BR-DF",
"BR-ES",
"BR-GO",
"BR-MA",
"BR-MG",
"BR-MS",
"BR-MT",
"BR-PA",
"BR-PB",
"BR-PE",
"BR-PI",
"BR-PR",
"BR-RJ",
"BR-RN",
"BR-RO",
"BR-RR",
"BR-RS",
"BR-SC",
"BR-SE",
"BR-SP",
"BR-TO",
"BS-AK",
"BS-BI",
"BS-BP",
"BS-BY",
"BS-CE",
"BS-CI",
"BS-CK",
"BS-CO",
"BS-CS",
"BS-EG",
"BS-EX",
"BS-FP",
"BS-GC",
"BS-HI",
"BS-HT",
"BS-IN",
"BS-LI",
"BS-MC",
"BS-MG",
"BS-MI",
"BS-NE",
"BS-NO",
"BS-NP",
"BS-NS",
"BS-RC",
"BS-RI",
"BS-SA",
"BS-SE",
"BS-SO",
"BS-SS",
"BS-SW",
"BS-WG",
"BT-11",
"BT-12",
"BT-13",
"BT-14",
"BT-15",
"BT-21",
"BT-22",
"BT-23",
"BT-24",
"BT-31",
"BT-32",
"BT-33",
"BT-34",
"BT-41",
"BT-42",
"BT-43",
"BT-44",
"BT-45",
"BT-GA",
"BT-TY",
"BW-CE",
"BW-CH",
"BW-FR",
"BW-GA",
"BW-GH",
"BW-JW",
"BW-KG",
"BW-KL",
"BW-KW",
"BW-LO",
"BW-NE",
"BW-NW",
"BW-SE",
"BW-SO",
"BW-SP",
"BW-ST",
"BY-BR",
"BY-HM",
"BY-HO",
"BY-HR",
"BY-MA",
"BY-MI",
"BY-VI",
"BZ-BZ",
"BZ-CY",
"BZ-CZL",
"BZ-OW",
"BZ-SC",
"BZ-TOL",
"CA-AB",
"CA-BC",
"CA-MB",
"CA-NB",
"CA-NL",
"CA-NS",
"CA-NT",
"CA-NU",
"CA-ON",
"CA-PE",
"CA-QC",
"CA-SK",
"CA-YT",
"CD-BC",
"CD-BU",
"CD-EQ",
"CD-HK",
"CD-HL",
"CD-HU",
"CD-IT",
"CD-KC",
"CD-KE",
"CD-KG",
"CD-KL",
"CD-KN",
"CD-KS",
"CD-LO",
"CD-LU",
"CD-MA",
"CD-MN",
"CD-MO",
"CD-NK",
"CD-NU",
"CD-SA",
"CD-SK",
"CD-SU",
"CD-TA",
"CD-TO",
"CD-TU",
"CF-AC",
"CF-BB",
"CF-BGF",
"CF-BK",
"CF-HK",
"CF-HM",
"CF-HS",
"CF-KB",
"CF-KG",
"CF-LB",
"CF-MB",
"CF-MP",
"CF-NM",
"CF-OP",
"CF-SE",
"CF-UK",
"CF-VK",
"CG-11",
"CG-12",
"CG-13",
"CG-14",
"CG-15",
"CG-16",
"CG-2",
"CG-5",
"CG-7",
"CG-8",
"CG-9",
"CG-BZV",
"CH-AG",
"CH-AI",
"CH-AR",
"CH-BE",
"CH-BL",
"CH-BS",
"CH-FR",
"CH-GE",
"CH-GL",
"CH-GR",
"CH-JU",
"CH-LU",
"CH-NE",
"CH-NW",
"CH-OW",
"CH-SG",
"CH-SH",
"CH-SO",
"CH-SZ",
"CH-TG",
"CH-TI",
"CH-UR",
"CH-VD",
"CH-VS",
"CH-ZG",
"CH-ZH",
"CI-AB",
"CI-BS",
"CI-CM",
"CI-DN",
"CI-GD",
"CI-LC",
"CI-LG",
"CI-MG",
"CI-SM",
"CI-SV",
"CI-VB",
"CI-WR",
"CI-YM",
"CI-ZZ",
"CL-AI",
"CL-AN",
"CL-AP",
"CL-AR",
"CL-AT",
"CL-BI",
"CL-CO",
"CL-LI",
"CL-LL",
"CL-LR",
"CL-MA",
"CL-ML",
"CL-NB",
"CL-RM",
"CL-TA",
"CL-VS",
"CM-AD",
"CM-CE",
"CM-EN",
"CM-ES",
"CM-LT",
"CM-NO",
"CM-NW",
"CM-OU",
"CM-SU",
"CM-SW",
"CN-AH",
"CN-BJ",
"CN-CQ",
"CN-FJ",
"CN-GD",
"CN-GS",
"CN-GX",
"CN-GZ",
"CN-HA",
"CN-HB",
"CN-HE",
"CN-HI",
"CN-HK",
"CN-HL",
"CN-HN",
"CN-JL",
"CN-JS",
"CN-JX",
"CN-LN",
"CN-MO",
"CN-NM",
"CN-NX",
"CN-QH",
"CN-SC",
"CN-SD",
"CN-SH",
"CN-SN",
"CN-SX",
"CN-TJ",
"CN-TW",
"CN-XJ",
"CN-XZ",
"CN-YN",
"CN-ZJ",
"CO-AMA",
"CO-ANT",
"CO-ARA",
"CO-ATL",
"CO-BOL",
"CO-BOY",
"CO-CAL",
"CO-CAQ",
"CO-CAS",
"CO-CAU",
"CO-CES",
"CO-CHO",
"CO-COR",
"CO-CUN",
"CO-DC",
"CO-GUA",
"CO-GUV",
"CO-HUI",
"CO-LAG",
"CO-MAG",
"CO-MET",
"CO-NAR",
"CO-NSA",
"CO-PUT",
"CO-QUI",
"CO-RIS",
"CO-SAN",
"CO-SAP",
"CO-SUC",
"CO-TOL",
"CO-VAC",
"CO-VAU",
"CO-VID",
"CR-A",
"CR-C",
"CR-G",
"CR-H",
"CR-L",
"CR-P",
"CR-SJ",
"CU-01",
"CU-03",
"CU-04",
"CU-05",
"CU-06",
"CU-07",
"CU-08",
"CU-09",
"CU-10",
"CU-11",
"CU-12",
"CU-13",
"CU-14",
"CU-15",
"CU-16",
"CU-99",
"CV-B",
"CV-BR",
"CV-BV",
"CV-CA",
"CV-CF",
"CV-CR",
"CV-MA",
"CV-MO",
"CV-PA",
"CV-PN",
"CV-PR",
"CV-RB",
"CV-RG",
"CV-RS",
"CV-S",
"CV-SD",
"CV-SF",
"CV-SL",
"CV-SM",
"CV-SO",
"CV-SS",
"CV-SV",
"CV-TA",
"CV-TS",
"CY-01",
"CY-02",
"CY-03",
"CY-04",
"CY-05",
"CY-06",
"CZ-10",
"CZ-20",
"CZ-201",
"CZ-202",
"CZ-203",
"CZ-204",
"CZ-205",
"CZ-206",
"CZ-207",
"CZ-208",
"CZ-209",
"CZ-20A",
"CZ-20B",
"CZ-20C",
"CZ-31",
"CZ-311",
"CZ-312",
"CZ-313",
"CZ-314",
"CZ-315",
"CZ-316",
"CZ-317",
"CZ-32",
"CZ-321",
"CZ-322",
"CZ-323",
"CZ-324",
"CZ-325",
"CZ-326",
"CZ-327",
"CZ-41",
"CZ-411",
"CZ-412",
"CZ-413",
"CZ-42",
"CZ-421",
"CZ-422",
"CZ-423",
"CZ-424",
"CZ-425",
"CZ-426",
"CZ-427",
"CZ-51",
"CZ-511",
"CZ-512",
"CZ-513",
"CZ-514",
"CZ-52",
"CZ-521",
"CZ-522",
"CZ-523",
"CZ-524",
"CZ-525",
"CZ-53",
"CZ-531",
"CZ-532",
"CZ-533",
"CZ-534",
"CZ-63",
"CZ-631",
"CZ-632",
"CZ-633",
"CZ-634",
"CZ-635",
"CZ-64",
"CZ-641",
"CZ-642",
"CZ-643",
"CZ-644",
"CZ-645",
"CZ-646",
"CZ-647",
"CZ-71",
"CZ-711",
"CZ-712",
"CZ-713",
"CZ-714",
"CZ-715",
"CZ-72",
"CZ-721",
"CZ-722",
"CZ-723",
"CZ-724",
"CZ-80",
"CZ-801",
"CZ-802",
"CZ-803",
"CZ-804",
"CZ-805",
"CZ-806",
"DE-BB",
"DE-BE",
"DE-BW",
"DE-BY",
"DE-HB",
"DE-HE",
"DE-HH",
"DE-MV",
"DE-NI",
"DE-NW",
"DE-RP",
"DE-SH",
"DE-SL",
"DE-SN",
"DE-ST",
"DE-TH",
"DJ-AR",
"DJ-AS",
"DJ-DI",
"DJ-DJ",
"DJ-OB",
"DJ-TA",
"DK-81",
"DK-82",
"DK-83",
"DK-84",
"DK-85",
"DM-02",
"DM-03",
"DM-04",
"DM-05",
"DM-06",
"DM-07",
"DM-08",
"DM-09",
"DM-10",
"DM-11",
"DO-01",
"DO-02",
"DO-03",
"DO-04",
"DO-05",
"DO-06",
"DO-07",
"DO-08",
"DO-09",
"DO-10",
"DO-11",
"DO-12",
"DO-13",
"DO-14",
"DO-15",
"DO-16",
"DO-17",
"DO-18",
"DO-19",
"DO-20",
"DO-21",
"DO-22",
"DO-23",
"DO-24",
"DO-25",
"DO-26",
"DO-27",
"DO-28",
"DO-29",
"DO-30",
"DO-31",
"DO-32",
"DO-33",
"DO-34",
"DO-35",
"DO-36",
"DO-37",
"DO-38",
"DO-39",
"DO-40",
"DO-41",
"DO-42",
"DZ-01",
"DZ-02",
"DZ-03",
"DZ-04",
"DZ-05",
"DZ-06",
"DZ-07",
"DZ-08",
"DZ-09",
"DZ-10",
"DZ-11",
"DZ-12",
"DZ-13",
"DZ-14",
"DZ-15",
"DZ-16",
"DZ-17",
"DZ-18",
"DZ-19",
"DZ-20",
"DZ-21",
"DZ-22",
"DZ-23",
"DZ-24",
"DZ-25",
"DZ-26",
"DZ-27",
"DZ-28",
"DZ-29",
"DZ-30",
"DZ-31",
"DZ-32",
"DZ-33",
"DZ-34",
"DZ-35",
"DZ-36",
"DZ-37",
"DZ-38",
"DZ-39",
"DZ-40",
"DZ-41",
"DZ-42",
"DZ-43",
"DZ-44",
"DZ-45",
"DZ-46",
"DZ-47",
"DZ-48",
"EC-A",
"EC-B",
"EC-C",
"EC-D",
"EC-E",
"EC-F",
"EC-G",
"EC-H",
"EC-I",
"EC-L",
"EC-M",
"EC-N",
"EC-O",
"EC-P",
"EC-R",
"EC-S",
"EC-SD",
"EC-SE",
"EC-T",
"EC-U",
"EC-W",
"EC-X",
"EC-Y",
"EC-Z",
"EE-130",
"EE-141",
"EE-142",
"EE-171",
"EE-184",
"EE-191",
"EE-198",
"EE-205",
"EE-214",
"EE-245",
"EE-247",
"EE-251",
"EE-255",
"EE-272",
"EE-283",
"EE-284",
"EE-291",
"EE-293",
"EE-296",
"EE-303",
"EE-305",
"EE-317",
"EE-321",
"EE-338",
"EE-353",
"EE-37",
"EE-39",
"EE-424",
"EE-430",
"EE-431",
"EE-432",
"EE-441",
"EE-442",
"EE-446",
"EE-45",
"EE-478",
"EE-480",
"EE-486",
"EE-50",
"EE-503",
"EE-511",
"EE-514",
"EE-52",
"EE-528",
"EE-557",
"EE-56",
"EE-567",
"EE-586",
"EE-60",
"EE-615",
"EE-618",
"EE-622",
"EE-624",
"EE-638",
"EE-64",
"EE-651",
"EE-653",
"EE-661",
"EE-663",
"EE-668",
"EE-68",
"EE-689",
"EE-698",
"EE-708",
"EE-71",
"EE-712",
"EE-714",
"EE-719",
"EE-726",
"EE-732",
"EE-735",
"EE-74",
"EE-784",
"EE-79",
"EE-792",
"EE-793",
"EE-796",
"EE-803",
"EE-809",
"EE-81",
"EE-824",
"EE-834",
"EE-84",
"EE-855",
"EE-87",
"EE-890",
"EE-897",
"EE-899",
"EE-901",
"EE-903",
"EE-907",
"EE-917",
"EE-919",
"EE-928",
"EG-ALX",
"EG-ASN",
"EG-AST",
"EG-BA",
"EG-BH",
"EG-BNS",
"EG-C",
"EG-DK",
"EG-DT",
"EG-FYM",
"EG-GH",
"EG-GZ",
"EG-IS",
"EG-JS",
"EG-KB",
"EG-KFS",
"EG-KN",
"EG-LX",
"EG-MN",
"EG-MNF",
"EG-MT",
"EG-PTS",
"EG-SHG",
"EG-SHR",
"EG-SIN",
"EG-SUZ",
"EG-WAD",
"ER-AN",
"ER-DK",
"ER-DU",
"ER-GB",
"ER-MA",
"ER-SK",
"ES-A",
"ES-AB",
"ES-AL",
"ES-AN",
"ES-AR",
"ES-AS",
"ES-AV",
"ES-B",
"ES-BA",
"ES-BI",
"ES-BU",
"ES-C",
"ES-CA",
"ES-CB",
"ES-CC",
"ES-CE",
"ES-CL",
"ES-CM",
"ES-CN",
"ES-CO",
"ES-CR",
"ES-CS",
"ES-CT",
"ES-CU",
"ES-EX",
"ES-GA",
"ES-GC",
"ES-GI",
"ES-GR",
"ES-GU",
"ES-H",
"ES-HU",
"ES-IB",
"ES-J",
"ES-L",
"ES-LE",
"ES-LO",
"ES-LU",
"ES-M",
"ES-MA",
"ES-MC",
"ES-MD",
"ES-ML",
"ES-MU",
"ES-NA",
"ES-NC",
"ES-O",
"ES-OR",
"ES-P",
"ES-PM",
"ES-PO",
"ES-PV",
"ES-RI",
"ES-S",
"ES-SA",
"ES-SE",
"ES-SG",
"ES-SO",
"ES-SS",
"ES-T",
"ES-TE",
"ES-TF",
"ES-TO",
"ES-V",
"ES-VA",
"ES-VC",
"ES-VI",
"ES-Z",
"ES-ZA",
"ET-AA",
"ET-AF",
"ET-AM",
"ET-BE",
"ET-DD",
"ET-GA",
"ET-HA",
"ET-OR",
"ET-SN",
"ET-SO",
"ET-TI",
"FI-01",
"FI-02",
"FI-03",
"FI-04",
"FI-05",
"FI-06",
"FI-07",
"FI-08",
"FI-09",
"FI-10",
"FI-11",
"FI-12",
"FI-13",
"FI-14",
"FI-15",
"FI-16",
"FI-17",
"FI-18",
"FI-19",
"FJ-01",
"FJ-02",
"FJ-03",
"FJ-04",
"FJ-05",
"FJ-06",
"FJ-07",
"FJ-08",
"FJ-09",
"FJ-10",
"FJ-11",
"FJ-12",
"FJ-13",
"FJ-14",
"FJ-C",
"FJ-E",
"FJ-N",
"FJ-R",
"FJ-W",
"FM-KSA",
"FM-PNI",
"FM-TRK",
"FM-YAP",
"FR-01",
"FR-02",
"FR-03",
"FR-04",
"FR-05",
"FR-06",
"FR-07",
"FR-08",
"FR-09",
"FR-10",
"FR-11",
"FR-12",
"FR-13",
"FR-14",
"FR-15",
"FR-16",
"FR-17",
"FR-18",
"FR-19",
"FR-20R",
"FR-21",
"FR-22",
"FR-23",
"FR-24",
"FR-25",
"FR-26",
"FR-27",
"FR-28",
"FR-29",
"FR-2A",
"FR-2B",
"FR-30",
"FR-31",
"FR-32",
"FR-33",
"FR-34",
"FR-35",
"FR-36",
"FR-37",
"FR-38",
"FR-39",
"FR-40",
"FR-41",
"FR-42",
"FR-43",
"FR-44",
"FR-45",
"FR-46",
"FR-47",
"FR-48",
"FR-49",
"FR-50",
"FR-51",
"FR-52",
"FR-53",
"FR-54",
"FR-55",
"FR-56",
"FR-57",
"FR-58",
"FR-59",
"FR-60",
"FR-61",
"FR-62",
"FR-63",
"FR-64",
"FR-65",
"FR-66",
"FR-67",
"FR-68",
"FR-69",
"FR-70",
"FR-71",
"FR-72",
"FR-73",
"FR-74",
"FR-75",
"FR-76",
"FR-77",
"FR-78",
"FR-79",
"FR-80",
"FR-81",
"FR-82",
"FR-83",
"FR-84",
"FR-85",
"FR-86",
"FR-87",
"FR-88",
"FR-89",
"FR-90",
"FR-91",
"FR-92",
"FR-93",
"FR-94",
"FR-95",
"FR-971",
"FR-972",
"FR-973",
"FR-974",
"FR-976",
"FR-ARA",
"FR-BFC",
"FR-BL",
"FR-BRE",
"FR-CP",
"FR-CVL",
"FR-GES",
"FR-GF",
"FR-GP",
"FR-HDF",
"FR-IDF",
"FR-MF",
"FR-MQ",
"FR-NAQ",
"FR-NC",
"FR-NOR",
"FR-OCC",
"FR-PAC",
"FR-PDL",
"FR-PF",
"FR-PM",
"FR-RE",
"FR-TF",
"FR-WF",
"FR-YT",
"GA-1",
"GA-2",
"GA-3",
"GA-4",
"GA-5",
"GA-6",
"GA-7",
"GA-8",
"GA-9",
"GB-ABC",
"GB-ABD",
"GB-ABE",
"GB-AGB",
"GB-AGY",
"GB-AND",
"GB-ANN",
"GB-ANS",
"GB-BAS",
"GB-BBD",
"GB-BCP",
"GB-BDF",
"GB-BDG",
"GB-BEN",
"GB-BEX",
"GB-BFS",
"GB-BGE",
"GB-BGW",
"GB-BIR",
"GB-BKM",
"GB-BNE",
"GB-BNH",
"GB-BNS",
"GB-BOL",
"GB-BPL",
"GB-BRC",
"GB-BRD",
"GB-BRY",
"GB-BST",
"GB-BUR",
"GB-CAM",
"GB-CAY",
"GB-CBF",
"GB-CCG",
"GB-CGN",
"GB-CHE",
"GB-CHW",
"GB-CLD",
"GB-CLK",
"GB-CMA",
"GB-CMD",
"GB-CMN",
"GB-CON",
"GB-COV",
"GB-CRF",
"GB-CRY",
"GB-CWY",
"GB-DAL",
"GB-DBY",
"GB-DEN",
"GB-DER",
"GB-DEV",
"GB-DGY",
"GB-DNC",
"GB-DND",
"GB-DOR",
"GB-DRS",
"GB-DUD",
"GB-DUR",
"GB-EAL",
"GB-EAW",
"GB-EAY",
"GB-EDH",
"GB-EDU",
"GB-ELN",
"GB-ELS",
"GB-ENF",
"GB-ENG",
"GB-ERW",
"GB-ERY",
"GB-ESS",
"GB-ESX",
"GB-FAL",
"GB-FIF",
"GB-FLN",
"GB-FMO",
"GB-GAT",
"GB-GBN",
"GB-GLG",
"GB-GLS",
"GB-GRE",
"GB-GWN",
"GB-HAL",
"GB-HAM",
"GB-HAV",
"GB-HCK",
"GB-HEF",
"GB-HIL",
"GB-HLD",
"GB-HMF",
"GB-HNS",
"GB-HPL",
"GB-HRT",
"GB-HRW",
"GB-HRY",
"GB-IOS",
"GB-IOW",
"GB-ISL",
"GB-IVC",
"GB-KEC",
"GB-KEN",
"GB-KHL",
"GB-KIR",
"GB-KTT",
"GB-KWL",
"GB-LAN",
"GB-LBC",
"GB-LBH",
"GB-LCE",
"GB-LDS",
"GB-LEC",
"GB-LEW",
"GB-LIN",
"GB-LIV",
"GB-LND",
"GB-LUT",
"GB-MAN",
"GB-MDB",
"GB-MDW",
"GB-MEA",
"GB-MIK",
"GB-MLN",
"GB-MON",
"GB-MRT",
"GB-MRY",
"GB-MTY",
"GB-MUL",
"GB-NAY",
"GB-NBL",
"GB-NEL",
"GB-NET",
"GB-NFK",
"GB-NGM",
"GB-NIR",
"GB-NLK",
"GB-NLN",
"GB-NMD",
"GB-NSM",
"GB-NTH",
"GB-NTL",
"GB-NTT",
"GB-NTY",
"GB-NWM",
"GB-NWP",
"GB-NYK",
"GB-OLD",
"GB-ORK",
"GB-OXF",
"GB-PEM",
"GB-PKN",
"GB-PLY",
"GB-POR",
"GB-POW",
"GB-PTE",
"GB-RCC",
"GB-RCH",
"GB-RCT",
"GB-RDB",
"GB-RDG",
"GB-RFW",
"GB-RIC",
"GB-ROT",
"GB-RUT",
"GB-SAW",
"GB-SAY",
"GB-SCB",
"GB-SCT",
"GB-SFK",
"GB-SFT",
"GB-SGC",
"GB-SHF",
"GB-SHN",
"GB-SHR",
"GB-SKP",
"GB-SLF",
"GB-SLG",
"GB-SLK",
"GB-SND",
"GB-SOL",
"GB-SOM",
"GB-SOS",
"GB-SRY",
"GB-STE",
"GB-STG",
"GB-STH",
"GB-STN",
"GB-STS",
"GB-STT",
"GB-STY",
"GB-SWA",
"GB-SWD",
"GB-SWK",
"GB-TAM",
"GB-TFW",
"GB-THR",
"GB-TOB",
"GB-TOF",
"GB-TRF",
"GB-TWH",
"GB-UKM",
"GB-VGL",
"GB-WAR",
"GB-WBK",
"GB-WDU",
"GB-WFT",
"GB-WGN",
"GB-WIL",
"GB-WKF",
"GB-WLL",
"GB-WLN",
"GB-WLS",
"GB-WLV",
"GB-WND",
"GB-WNM",
"GB-WOK",
"GB-WOR",
"GB-WRL",
"GB-WRT",
"GB-WRX",
"GB-WSM",
"GB-WSX",
"GB-YOR",
"GB-ZET",
"GD-01",
"GD-02",
"GD-03",
"GD-04",
"GD-05",
"GD-06",
"GD-10",
"GE-AB",
"GE-AJ",
"GE-GU",
"GE-IM",
"GE-KA",
"GE-KK",
"GE-MM",
"GE-RL",
"GE-SJ",
"GE-SK",
"GE-SZ",
"GE-TB",
"GH-AA",
"GH-AF",
"GH-AH",
"GH-BA",
"GH-BE",
"GH-BO",
"GH-CP",
"GH-EP",
"GH-NE",
"GH-NP",
"GH-OT",
"GH-SV",
"GH-TV",
"GH-UE",
"GH-UW",
"GH-WN",
"GH-WP",
"GL-AV",
"GL-KU",
"GL-QE",
"GL-QT",
"GL-SM",
"GM-B",
"GM-L",
"GM-M",
"GM-N",
"GM-U",
"GM-W",
"GN-B",
"GN-BE",
"GN-BF",
"GN-BK",
"GN-C",
"GN-CO",
"GN-D",
"GN-DB",
"GN-DI",
"GN-DL",
"GN-DU",
"GN-F",
"GN-FA",
"GN-FO",
"GN-FR",
"GN-GA",
"GN-GU",
"GN-K",
"GN-KA",
"GN-KB",
"GN-KD",
"GN-KE",
"GN-KN",
"GN-KO",
"GN-KS",
"GN-L",
"GN-LA",
"GN-LE",
"GN-LO",
"GN-M",
"GN-MC",
"GN-MD",
"GN-ML",
"GN-MM",
"GN-N",
"GN-NZ",
"GN-PI",
"GN-SI",
"GN-TE",
"GN-TO",
"GN-YO",
"GQ-AN",
"GQ-BN",
"GQ-BS",
"GQ-C",
"GQ-CS",
"GQ-DJ",
"GQ-I",
"GQ-KN",
"GQ-LI",
"GQ-WN",
"GR-69",
"GR-A",
"GR-B",
"GR-C",
"GR-D",
"GR-E",
"GR-F",
"GR-G",
"GR-H",
"GR-I",
"GR-J",
"GR-K",
"GR-L",
"GR-M",
"GT-AV",
"GT-BV",
"GT-CM",
"GT-CQ",
"GT-ES",
"GT-GU",
"GT-HU",
"GT-IZ",
"GT-JA",
"GT-JU",
"GT-PE",
"GT-PR",
"GT-QC",
"GT-QZ",
"GT-RE",
"GT-SA",
"GT-SM",
"GT-SO",
"GT-SR",
"GT-SU",
"GT-TO",
"GT-ZA",
"GW-BA",
"GW-BL",
"GW-BM",
"GW-BS",
"GW-CA",
"GW-GA",
"GW-L",
"GW-N",
"GW-OI",
"GW-QU",
"GW-S",
"GW-TO",
"GY-BA",
"GY-CU",
"GY-DE",
"GY-EB",
"GY-ES",
"GY-MA",
"GY-PM",
"GY-PT",
"GY-UD",
"GY-UT",
"HN-AT",
"HN-CH",
"HN-CL",
"HN-CM",
"HN-CP",
"HN-CR",
"HN-EP",
"HN-FM",
"HN-GD",
"HN-IB",
"HN-IN",
"HN-LE",
"HN-LP",
"HN-OC",
"HN-OL",
"HN-SB",
"HN-VA",
"HN-YO",
"HR-01",
"HR-02",
"HR-03",
"HR-04",
"HR-05",
"HR-06",
"HR-07",
"HR-08",
"HR-09",
"HR-10",
"HR-11",
"HR-12",
"HR-13",
"HR-14",
"HR-15",
"HR-16",
"HR-17",
"HR-18",
"HR-19",
"HR-20",
"HR-21",
"HT-AR",
"HT-CE",
"HT-GA",
"HT-ND",
"HT-NE",
"HT-NI",
"HT-NO",
"HT-OU",
"HT-SD",
"HT-SE",
"HU-BA",
"HU-BC",
"HU-BE",
"HU-BK",
"HU-BU",
"HU-BZ",
"HU-CS",
"HU-DE",
"HU-DU",
"HU-EG",
"HU-ER",
"HU-FE",
"HU-GS",
"HU-GY",
"HU-HB",
"HU-HE",
"HU-HV",
"HU-JN",
"HU-KE",
"HU-KM",
"HU-KV",
"HU-MI",
"HU-NK",
"HU-NO",
"HU-NY",
"HU-PE",
"HU-PS",
"HU-SD",
"HU-SF",
"HU-SH",
"HU-SK",
"HU-SN",
"HU-SO",
"HU-SS",
"HU-ST",
"HU-SZ",
"HU-TB",
"HU-TO",
"HU-VA",
"HU-VE",
"HU-VM",
"HU-ZA",
"HU-ZE",
"ID-AC",
"ID-BA",
"ID-BB",
"ID-BE",
"ID-BT",
"ID-GO",
"ID-JA",
"ID-JB",
"ID-JI",
"ID-JK",
"ID-JT",
"ID-JW",
"ID-KA",
"ID-KB",
"ID-KI",
"ID-KR",
"ID-KS",
"ID-KT",
"ID-KU",
"ID-LA",
"ID-MA",
"ID-ML",
"ID-MU",
"ID-NB",
"ID-NT",
"ID-NU",
"ID-PA",
"ID-PB",
"ID-PP",
"ID-RI",
"ID-SA",
"ID-SB",
"ID-SG",
"ID-SL",
"ID-SM",
"ID-SN",
"ID-SR",
"ID-SS",
"ID-ST",
"ID-SU",
"ID-YO",
"IE-C",
"IE-CE",
"IE-CN",
"IE-CO",
"IE-CW",
"IE-D",
"IE-DL",
"IE-G",
"IE-KE",
"IE-KK",
"IE-KY",
"IE-L",
"IE-LD",
"IE-LH",
"IE-LK",
"IE-LM",
"IE-LS",
"IE-M",
"IE-MH",
"IE-MN",
"IE-MO",
"IE-OY",
"IE-RN",
"IE-SO",
"IE-TA",
"IE-U",
"IE-WD",
"IE-WH",
"IE-WW",
"IE-WX",
"IL-D",
"IL-HA",
"IL-JM",
"IL-M",
"IL-TA",
"IL-Z",
"IN-AN",
"IN-AP",
"IN-AR",
"IN-AS",
"IN-BR",
"IN-CH",
"IN-CT",
"IN-DH",
"IN-DL",
"IN-GA",
"IN-GJ",
"IN-HP",
"IN-HR",
"IN-JH",
"IN-JK",
"IN-KA",
"IN-KL",
"IN-LA",
"IN-LD",
"IN-MH",
"IN-ML",
"IN-MN",
"IN-MP",
"IN-MZ",
"IN-NL",
"IN-OR",
"IN-PB",
"IN-PY",
"IN-RJ",
"IN-SK",
"IN-TG",
"IN-TN",
"IN-TR",
"IN-UP",
"IN-UT",
"IN-WB",
"IQ-AN",
"IQ-AR",
"IQ-BA",
"IQ-BB",
"IQ-BG",
"IQ-DA",
"IQ-DI",
"IQ-DQ",
"IQ-HA",
"IQ-KA",
"IQ-KI",
"IQ-MA",
"IQ-MU",
"IQ-NA",
"IQ-NI",
"IQ-QA",
"IQ-SD",
"IQ-SU",
"IQ-WA",
"IR-00",
"IR-01",
"IR-02",
"IR-03",
"IR-04",
"IR-05",
"IR-06",
"IR-07",
"IR-08",
"IR-09",
"IR-10",
"IR-11",
"IR-12",
"IR-13",
"IR-14",
"IR-15",
"IR-16",
"IR-17",
"IR-18",
"IR-19",
"IR-20",
"IR-21",
"IR-22",
"IR-23",
"IR-24",
"IR-25",
"IR-26",
"IR-27",
"IR-28",
"IR-29",
"IR-30",
"IS-1",
"IS-2",
"IS-3",
"IS-4",
"IS-5",
"IS-6",
"IS-7",
"IS-8",
"IS-AKH",
"IS-AKN",
"IS-AKU",
"IS-ARN",
"IS-ASA",
"IS-BFJ",
"IS-BLA",
"IS-BLO",
"IS-BOG",
"IS-BOL",
"IS-DAB",
"IS-DAV",
"IS-DJU",
"IS-EOM",
"IS-EYF",
"IS-FJD",
"IS-FJL",
"IS-FLA",
"IS-FLD",
"IS-FLR",
"IS-GAR",
"IS-GOG",
"IS-GRN",
"IS-GRU",
"IS-GRY",
"IS-HAF",
"IS-HEL",
"IS-HRG",
"IS-HRU",
"IS-HUT",
"IS-HUV",
"IS-HVA",
"IS-HVE",
"IS-ISA",
"IS-KAL",
"IS-KJO",
"IS-KOP",
"IS-LAN",
"IS-MOS",
"IS-MYR",
"IS-NOR",
"IS-RGE",
"IS-RGY",
"IS-RHH",
"IS-RKN",
"IS-RKV",
"IS-SBH",
"IS-SBT",
"IS-SDN",
"IS-SDV",
"IS-SEL",
"IS-SEY",
"IS-SFA",
"IS-SHF",
"IS-SKF",
"IS-SKG",
"IS-SKO",
"IS-SKU",
"IS-SNF",
"IS-SOG",
"IS-SOL",
"IS-SSF",
"IS-SSS",
"IS-STR",
"IS-STY",
"IS-SVG",
"IS-TAL",
"IS-THG",
"IS-TJO",
"IS-VEM",
"IS-VER",
"IS-VOP",
"IT-21",
"IT-23",
"IT-25",
"IT-32",
"IT-34",
"IT-36",
"IT-42",
"IT-45",
"IT-52",
"IT-55",
"IT-57",
"IT-62",
"IT-65",
"IT-67",
"IT-72",
"IT-75",
"IT-77",
"IT-78",
"IT-82",
"IT-88",
"IT-AG",
"IT-AL",
"IT-AN",
"IT-AP",
"IT-AQ",
"IT-AR",
"IT-AT",
"IT-AV",
"IT-BA",
"IT-BG",
"IT-BI",
"IT-BL",
"IT-BN",
"IT-BO",
"IT-BR",
"IT-BS",
"IT-BT",
"IT-BZ",
"IT-CA",
"IT-CB",
"IT-CE",
"IT-CH",
"IT-CL",
"IT-CN",
"IT-CO",
"IT-CR",
"IT-CS",
"IT-CT",
"IT-CZ",
"IT-EN",
"IT-FC",
"IT-FE",
"IT-FG",
"IT-FI",
"IT-FM",
"IT-FR",
"IT-GE",
"IT-GO",
"IT-GR",
"IT-IM",
"IT-IS",
"IT-KR",
"IT-LC",
"IT-LE",
"IT-LI",
"IT-LO",
"IT-LT",
"IT-LU",
"IT-MB",
"IT-MC",
"IT-ME",
"IT-MI",
"IT-MN",
"IT-MO",
"IT-MS",
"IT-MT",
"IT-NA",
"IT-NO",
"IT-NU",
"IT-OR",
"IT-PA",
"IT-PC",
"IT-PD",
"IT-PE",
"IT-PG",
"IT-PI",
"IT-PN",
"IT-PO",
"IT-PR",
"IT-PT",
"IT-PU",
"IT-PV",
"IT-PZ",
"IT-RA",
"IT-RC",
"IT-RE",
"IT-RG",
"IT-RI",
"IT-RM",
"IT-RN",
"IT-RO",
"IT-SA",
"IT-SI",
"IT-SO",
"IT-SP",
"IT-SR",
"IT-SS",
"IT-SU",
"IT-SV",
"IT-TA",
"IT-TE",
"IT-TN",
"IT-TO",
"IT-TP",
"IT-TR",
"IT-TS",
"IT-TV",
"IT-UD",
"IT-VA",
"IT-VB",
"IT-VC",
"IT-VE",
"IT-VI",
"IT-VR",
"IT-VT",
"IT-VV",
"JM-01",
"JM-02",
"JM-03",
"JM-04",
"JM-05",
"JM-06",
"JM-07",
"JM-08",
"JM-09",
"JM-10",
"JM-11",
"JM-12",
"JM-13",
"JM-14",
"JO-AJ",
"JO-AM",
"JO-AQ",
"JO-AT",
"JO-AZ",
"JO-BA",
"JO-IR",
"JO-JA",
"JO-KA",
"JO-MA",
"JO-MD",
"JO-MN",
"JP-01",
"JP-02",
"JP-03",
"JP-04",
"JP-05",
"JP-06",
"JP-07",
"JP-08",
"JP-09",
"JP-10",
"JP-11",
"JP-12",
"JP-13",
"JP-14",
"JP-15",
"JP-16",
"JP-17",
"JP-18",
"JP-19",
"JP-20",
"JP-21",
"JP-22",
"JP-23",
"JP-24",
"JP-25",
"JP-26",
"JP-27",
"JP-28",
"JP-29",
"JP-30",
"JP-31",
"JP-32",
"JP-33",
"JP-34",
"JP-35",
"JP-36",
"JP-37",
"JP-38",
"JP-39",
"JP-40",
"JP-41",
"JP-42",
"JP-43",
"JP-44",
"JP-45",
"JP-46",
"JP-47",
"KE-01",
"KE-02",
"KE-03",
"KE-04",
"KE-05",
"KE-06",
"KE-07",
"KE-08",
"KE-09",
"KE-10",
"KE-11",
"KE-12",
"KE-13",
"KE-14",
"KE-15",
"KE-16",
"KE-17",
"KE-18",
"KE-19",
"KE-20",
"KE-21",
"KE-22",
"KE-23",
"KE-24",
"KE-25",
"KE-26",
"KE-27",
"KE-28",
"KE-29",
"KE-30",
"KE-31",
"KE-32",
"KE-33",
"KE-34",
"KE-35",
"KE-36",
"KE-37",
"KE-38",
"KE-39",
"KE-40",
"KE-41",
"KE-42",
"KE-43",
"KE-44",
"KE-45",
"KE-46",
"KE-47",
"KG-B",
"KG-C",
"KG-GB",
"KG-GO",
"KG-J",
"KG-N",
"KG-O",
"KG-T",
"KG-Y",
"KH-1",
"KH-10",
"KH-11",
"KH-12",
"KH-13",
"KH-14",
"KH-15",
"KH-16",
"KH-17",
"KH-18",
"KH-19",
"KH-2",
"KH-20",
"KH-21",
"KH-22",
"KH-23",
"KH-24",
"KH-25",
"KH-3",
"KH-4",
"KH-5",
"KH-6",
"KH-7",
"KH-8",
"KH-9",
"KI-G",
"KI-L",
"KI-P",
"KM-A",
"KM-G",
"KM-M",
"KN-01",
"KN-02",
"KN-03",
"KN-04",
"KN-05",
"KN-06",
"KN-07",
"KN-08",
"KN-09",
"KN-10",
"KN-11",
"KN-12",
"KN-13",
"KN-15",
"KN-K",
"KN-N",
"KP-01",
"KP-02",
"KP-03",
"KP-04",
"KP-05",
"KP-06",
"KP-07",
"KP-08",
"KP-09",
"KP-10",
"KP-13",
"KP-14",
"KR-11",
"KR-26",
"KR-27",
"KR-28",
"KR-29",
"KR-30",
"KR-31",
"KR-41",
"KR-42",
"KR-43",
"KR-44",
"KR-45",
"KR-46",
"KR-47",
"KR-48",
"KR-49",
"KR-50",
"KW-AH",
"KW-FA",
"KW-HA",
"KW-JA",
"KW-KU",
"KW-MU",
"KZ-AKM",
"KZ-AKT",
"KZ-ALA",
"KZ-ALM",
"KZ-AST",
"KZ-ATY",
"KZ-KAR",
"KZ-KUS",
"KZ-KZY",
"KZ-MAN",
"KZ-PAV",
"KZ-SEV",
"KZ-SHY",
"KZ-VOS",
"KZ-YUZ",
"KZ-ZAP",
"KZ-ZHA",
"LA-AT",
"LA-BK",
"LA-BL",
"LA-CH",
"LA-HO",
"LA-KH",
"LA-LM",
"LA-LP",
"LA-OU",
"LA-PH",
"LA-SL",
"LA-SV",
"LA-VI",
"LA-VT",
"LA-XA",
"LA-XE",
"LA-XI",
"LA-XS",
"LB-AK",
"LB-AS",
"LB-BA",
"LB-BH",
"LB-BI",
"LB-JA",
"LB-JL",
"LB-NA",
"LC-01",
"LC-02",
"LC-03",
"LC-05",
"LC-06",
"LC-07",
"LC-08",
"LC-10",
"LC-11",
"LC-12",
"LI-01",
"LI-02",
"LI-03",
"LI-04",
"LI-05",
"LI-06",
"LI-07",
"LI-08",
"LI-09",
"LI-10",
"LI-11",
"LK-1",
"LK-11",
"LK-12",
"LK-13",
"LK-2",
"LK-21",
"LK-22",
"LK-23",
"LK-3",
"LK-31",
"LK-32",
"LK-33",
"LK-4",
"LK-41",
"LK-42",
"LK-43",
"LK-44",
"LK-45",
"LK-5",
"LK-51",
"LK-52",
"LK-53",
"LK-6",
"LK-61",
"LK-62",
"LK-7",
"LK-71",
"LK-72",
"LK-8",
"LK-81",
"LK-82",
"LK-9",
"LK-91",
"LK-92",
"LR-BG",
"LR-BM",
"LR-CM",
"LR-GB",
"LR-GG",
"LR-GK",
"LR-GP",
"LR-LO",
"LR-MG",
"LR-MO",
"LR-MY",
"LR-NI",
"LR-RG",
"LR-RI",
"LR-SI",
"LS-A",
"LS-B",
"LS-C",
"LS-D",
"LS-E",
"LS-F",
"LS-G",
"LS-H",
"LS-J",
"LS-K",
"LT-01",
"LT-02",
"LT-03",
"LT-04",
"LT-05",
"LT-06",
"LT-07",
"LT-08",
"LT-09",
"LT-10",
"LT-11",
"LT-12",
"LT-13",
"LT-14",
"LT-15",
"LT-16",
"LT-17",
"LT-18",
"LT-19",
"LT-20",
"LT-21",
"LT-22",
"LT-23",
"LT-24",
"LT-25",
"LT-26",
"LT-27",
"LT-28",
"LT-29",
"LT-30",
"LT-31",
"LT-32",
"LT-33",
"LT-34",
"LT-35",
"LT-36",
"LT-37",
"LT-38",
"LT-39",
"LT-40",
"LT-41",
"LT-42",
"LT-43",
"LT-44",
"LT-45",
"LT-46",
"LT-47",
"LT-48",
"LT-49",
"LT-50",
"LT-51",
"LT-52",
"LT-53",
"LT-54",
"LT-55",
"LT-56",
"LT-57",
"LT-58",
"LT-59",
"LT-60",
"LT-AL",
"LT-KL",
"LT-KU",
"LT-MR",
"LT-PN",
"LT-SA",
"LT-TA",
"LT-TE",
"LT-UT",
"LT-VL",
"LU-CA",
"LU-CL",
"LU-DI",
"LU-EC",
"LU-ES",
"LU-GR",
"LU-LU",
"LU-ME",
"LU-RD",
"LU-RM",
"LU-VD",
"LU-WI",
"LV-001",
"LV-002",
"LV-003",
"LV-004",
"LV-005",
"LV-006",
"LV-007",
"LV-008",
"LV-009",
"LV-010",
"LV-011",
"LV-012",
"LV-013",
"LV-014",
"LV-015",
"LV-016",
"LV-017",
"LV-018",
"LV-019",
"LV-020",
"LV-021",
"LV-022",
"LV-023",
"LV-024",
"LV-025",
"LV-026",
"LV-027",
"LV-028",
"LV-029",
"LV-030",
"LV-031",
"LV-032",
"LV-033",
"LV-034",
"LV-035",
"LV-036",
"LV-037",
"LV-038",
"LV-039",
"LV-040",
"LV-041",
"LV-042",
"LV-043",
"LV-044",
"LV-045",
"LV-046",
"LV-047",
"LV-048",
"LV-049",
"LV-050",
"LV-051",
"LV-052",
"LV-053",
"LV-054",
"LV-055",
"LV-056",
"LV-057",
"LV-058",
"LV-059",
"LV-060",
"LV-061",
"LV-062",
"LV-063",
"LV-064",
"LV-065",
"LV-066",
"LV-067",
"LV-068",
"LV-069",
"LV-070",
"LV-071",
"LV-072",
"LV-073",
"LV-074",
"LV-075",
"LV-076",
"LV-077",
"LV-078",
"LV-079",
"LV-080",
"LV-081",
"LV-082",
"LV-083",
"LV-084",
"LV-085",
"LV-086",
"LV-087",
"LV-088",
"LV-089",
"LV-090",
"LV-091",
"LV-092",
"LV-093",
"LV-094",
"LV-095",
"LV-096",
"LV-097",
"LV-098",
"LV-099",
"LV-100",
"LV-101",
"LV-102",
"LV-103",
"LV-104",
"LV-105",
"LV-106",
"LV-107",
"LV-108",
"LV-109",
"LV-110",
"LV-DGV",
"LV-JEL",
"LV-JKB",
"LV-JUR",
"LV-LPX",
"LV-REZ",
"LV-RIX",
"LV-VEN",
"LV-VMR",
"LY-BA",
"LY-BU",
"LY-DR",
"LY-GT",
"LY-JA",
"LY-JG",
"LY-JI",
"LY-JU",
"LY-KF",
"LY-MB",
"LY-MI",
"LY-MJ",
"LY-MQ",
"LY-NL",
"LY-NQ",
"LY-SB",
"LY-SR",
"LY-TB",
"LY-WA",
"LY-WD",
"LY-WS",
"LY-ZA",
"MA-01",
"MA-02",
"MA-03",
"MA-04",
"MA-05",
"MA-06",
"MA-07",
"MA-08",
"MA-09",
"MA-10",
"MA-11",
"MA-12",
"MA-AGD",
"MA-AOU",
"MA-ASZ",
"MA-AZI",
"MA-BEM",
"MA-BER",
"MA-BES",
"MA-BOD",
"MA-BOM",
"MA-BRR",
"MA-CAS",
"MA-CHE",
"MA-CHI",
"MA-CHT",
"MA-DRI",
"MA-ERR",
"MA-ESI",
"MA-ESM",
"MA-FAH",
"MA-FES",
"MA-FIG",
"MA-FQH",
"MA-GUE",
"MA-GUF",
"MA-HAJ",
"MA-HAO",
"MA-HOC",
"MA-IFR",
"MA-INE",
"MA-JDI",
"MA-JRA",
"MA-KEN",
"MA-KES",
"MA-KHE",
"MA-KHN",
"MA-KHO",
"MA-LAA",
"MA-LAR",
"MA-MAR",
"MA-MDF",
"MA-MED",
"MA-MEK",
"MA-MID",
"MA-MOH",
"MA-MOU",
"MA-NAD",
"MA-NOU",
"MA-OUA",
"MA-OUD",
"MA-OUJ",
"MA-OUZ",
"MA-RAB",
"MA-REH",
"MA-SAF",
"MA-SAL",
"MA-SEF",
"MA-SET",
"MA-SIB",
"MA-SIF",
"MA-SIK",
"MA-SIL",
"MA-SKH",
"MA-TAF",
"MA-TAI",
"MA-TAO",
"MA-TAR",
"MA-TAT",
"MA-TAZ",
"MA-TET",
"MA-TIN",
"MA-TIZ",
"MA-TNG",
"MA-TNT",
"MA-YUS",
"MA-ZAG",
"MC-CL",
"MC-CO",
"MC-FO",
"MC-GA",
"MC-JE",
"MC-LA",
"MC-MA",
"MC-MC",
"MC-MG",
"MC-MO",
"MC-MU",
"MC-PH",
"MC-SD",
"MC-SO",
"MC-SP",
"MC-SR",
"MC-VR",
"MD-AN",
"MD-BA",
"MD-BD",
"MD-BR",
"MD-BS",
"MD-CA",
"MD-CL",
"MD-CM",
"MD-CR",
"MD-CS",
"MD-CT",
"MD-CU",
"MD-DO",
"MD-DR",
"MD-DU",
"MD-ED",
"MD-FA",
"MD-FL",
"MD-GA",
"MD-GL",
"MD-HI",
"MD-IA",
"MD-LE",
"MD-NI",
"MD-OC",
"MD-OR",
"MD-RE",
"MD-RI",
"MD-SD",
"MD-SI",
"MD-SN",
"MD-SO",
"MD-ST",
"MD-SV",
"MD-TA",
"MD-TE",
"MD-UN",
"ME-01",
"ME-02",
"ME-03",
"ME-04",
"ME-05",
"ME-06",
"ME-07",
"ME-08",
"ME-09",
"ME-10",
"ME-11",
"ME-12",
"ME-13",
"ME-14",
"ME-15",
"ME-16",
"ME-17",
"ME-18",
"ME-19",
"ME-20",
"ME-21",
"ME-22",
"ME-23",
"ME-24",
"MG-A",
"MG-D",
"MG-F",
"MG-M",
"MG-T",
"MG-U",
"MH-ALK",
"MH-ALL",
"MH-ARN",
"MH-AUR",
"MH-EBO",
"MH-ENI",
"MH-JAB",
"MH-JAL",
"MH-KIL",
"MH-KWA",
"MH-L",
"MH-LAE",
"MH-LIB",
"MH-LIK",
"MH-MAJ",
"MH-MAL",
"MH-MEJ",
"MH-MIL",
"MH-NMK",
"MH-NMU",
"MH-RON",
"MH-T",
"MH-UJA",
"MH-UTI",
"MH-WTH",
"MH-WTJ",
"MK-101",
"MK-102",
"MK-103",
"MK-104",
"MK-105",
"MK-106",
"MK-107",
"MK-108",
"MK-109",
"MK-201",
"MK-202",
"MK-203",
"MK-204",
"MK-205",
"MK-206",
"MK-207",
"MK-208",
"MK-209",
"MK-210",
"MK-211",
"MK-301",
"MK-303",
"MK-304",
"MK-307",
"MK-308",
"MK-310",
"MK-311",
"MK-312",
"MK-313",
"MK-401",
"MK-402",
"MK-403",
"MK-404",
"MK-405",
"MK-406",
"MK-407",
"MK-408",
"MK-409",
"MK-410",
"MK-501",
"MK-502",
"MK-503",
"MK-504",
"MK-505",
"MK-506",
"MK-507",
"MK-508",
"MK-509",
"MK-601",
"MK-602",
"MK-603",
"MK-604",
"MK-605",
"MK-606",
"MK-607",
"MK-608",
"MK-609",
"MK-701",
"MK-702",
"MK-703",
"MK-704",
"MK-705",
"MK-706",
"MK-801",
"MK-802",
"MK-803",
"MK-804",
"MK-805",
"MK-806",
"MK-807",
"MK-808",
"MK-809",
"MK-810",
"MK-811",
"MK-812",
"MK-813",
"MK-814",
"MK-815",
"MK-816",
"MK-817",
"ML-1",
"ML-10",
"ML-2",
"ML-3",
"ML-4",
"ML-5",
"ML-6",
"ML-7",
"ML-8",
"ML-9",
"ML-BKO",
"MM-01",
"MM-02",
"MM-03",
"MM-04",
"MM-05",
"MM-06",
"MM-07",
"MM-11",
"MM-12",
"MM-13",
"MM-14",
"MM-15",
"MM-16",
"MM-17",
"MM-18",
"MN-035",
"MN-037",
"MN-039",
"MN-041",
"MN-043",
"MN-046",
"MN-047",
"MN-049",
"MN-051",
"MN-053",
"MN-055",
"MN-057",
"MN-059",
"MN-061",
"MN-063",
"MN-064",
"MN-065",
"MN-067",
"MN-069",
"MN-071",
"MN-073",
"MN-1",
"MR-01",
"MR-02",
"MR-03",
"MR-04",
"MR-05",
"MR-06",
"MR-07",
"MR-08",
"MR-09",
"MR-10",
"MR-11",
"MR-12",
"MR-13",
"MR-14",
"MR-15",
"MT-01",
"MT-02",
"MT-03",
"MT-04",
"MT-05",
"MT-06",
"MT-07",
"MT-08",
"MT-09",
"MT-10",
"MT-11",
"MT-12",
"MT-13",
"MT-14",
"MT-15",
"MT-16",
"MT-17",
"MT-18",
"MT-19",
"MT-20",
"MT-21",
"MT-22",
"MT-23",
"MT-24",
"MT-25",
"MT-26",
"MT-27",
"MT-28",
"MT-29",
"MT-30",
"MT-31",
"MT-32",
"MT-33",
"MT-34",
"MT-35",
"MT-36",
"MT-37",
"MT-38",
"MT-39",
"MT-40",
"MT-41",
"MT-42",
"MT-43",
"MT-44",
"MT-45",
"MT-46",
"MT-47",
"MT-48",
"MT-49",
"MT-50",
"MT-51",
"MT-52",
"MT-53",
"MT-54",
"MT-55",
"MT-56",
"MT-57",
"MT-58",
"MT-59",
"MT-60",
"MT-61",
"MT-62",
"MT-63",
"MT-64",
"MT-65",
"MT-66",
"MT-67",
"MT-68",
"MU-AG",
"MU-BL",
"MU-CC",
"MU-FL",
"MU-GP",
"MU-MO",
"MU-PA",
"MU-PL",
"MU-PW",
"MU-RO",
"MU-RR",
"MU-SA",
"MV-00",
"MV-01",
"MV-02",
"MV-03",
"MV-04",
"MV-05",
"MV-07",
"MV-08",
"MV-12",
"MV-13",
"MV-14",
"MV-17",
"MV-20",
"MV-23",
"MV-24",
"MV-25",
"MV-26",
"MV-27",
"MV-28",
"MV-29",
"MV-MLE",
"MW-BA",
"MW-BL",
"MW-C",
"MW-CK",
"MW-CR",
"MW-CT",
"MW-DE",
"MW-DO",
"MW-KR",
"MW-KS",
"MW-LI",
"MW-LK",
"MW-MC",
"MW-MG",
"MW-MH",
"MW-MU",
"MW-MW",
"MW-MZ",
"MW-N",
"MW-NB",
"MW-NE",
"MW-NI",
"MW-NK",
"MW-NS",
"MW-NU",
"MW-PH",
"MW-RU",
"MW-S",
"MW-SA",
"MW-TH",
"MW-ZO",
"MX-AGU",
"MX-BCN",
"MX-BCS",
"MX-CAM",
"MX-CHH",
"MX-CHP",
"MX-CMX",
"MX-COA",
"MX-COL",
"MX-DUR",
"MX-GRO",
"MX-GUA",
"MX-HID",
"MX-JAL",
"MX-MEX",
"MX-MIC",
"MX-MOR",
"MX-NAY",
"MX-NLE",
"MX-OAX",
"MX-PUE",
"MX-QUE",
"MX-ROO",
"MX-SIN",
"MX-SLP",
"MX-SON",
"MX-TAB",
"MX-TAM",
"MX-TLA",
"MX-VER",
"MX-YUC",
"MX-ZAC",
"MY-01",
"MY-02",
"MY-03",
"MY-04",
"MY-05",
"MY-06",
"MY-07",
"MY-08",
"MY-09",
"MY-10",
"MY-11",
"MY-12",
"MY-13",
"MY-14",
"MY-15",
"MY-16",
"MZ-A",
"MZ-B",
"MZ-G",
"MZ-I",
"MZ-L",
"MZ-MPM",
"MZ-N",
"MZ-P",
"MZ-Q",
"MZ-S",
"MZ-T",
"NA-CA",
"NA-ER",
"NA-HA",
"NA-KA",
"NA-KE",
"NA-KH",
"NA-KU",
"NA-KW",
"NA-OD",
"NA-OH",
"NA-ON",
"NA-OS",
"NA-OT",
"NA-OW",
"NE-1",
"NE-2",
"NE-3",
"NE-4",
"NE-5",
"NE-6",
"NE-7",
"NE-8",
"NG-AB",
"NG-AD",
"NG-AK",
"NG-AN",
"NG-BA",
"NG-BE",
"NG-BO",
"NG-BY",
"NG-CR",
"NG-DE",
"NG-EB",
"NG-ED",
"NG-EK",
"NG-EN",
"NG-FC",
"NG-GO",
"NG-IM",
"NG-JI",
"NG-KD",
"NG-KE",
"NG-KN",
"NG-KO",
"NG-KT",
"NG-KW",
"NG-LA",
"NG-NA",
"NG-NI",
"NG-OG",
"NG-ON",
"NG-OS",
"NG-OY",
"NG-PL",
"NG-RI",
"NG-SO",
"NG-TA",
"NG-YO",
"NG-ZA",
"NI-AN",
"NI-AS",
"NI-BO",
"NI-CA",
"NI-CI",
"NI-CO",
"NI-ES",
"NI-GR",
"NI-JI",
"NI-LE",
"NI-MD",
"NI-MN",
"NI-MS",
"NI-MT",
"NI-NS",
"NI-RI",
"NI-SJ",
"NL-AW",
"NL-BQ1",
"NL-BQ2",
"NL-BQ3",
"NL-CW",
"NL-DR",
"NL-FL",
"NL-FR",
"NL-GE",
"NL-GR",
"NL-LI",
"NL-NB",
"NL-NH",
"NL-OV",
"NL-SX",
"NL-UT",
"NL-ZE",
"NL-ZH",
"NO-03",
"NO-11",
"NO-15",
"NO-18",
"NO-21",
"NO-22",
"NO-30",
"NO-34",
"NO-38",
"NO-42",
"NO-46",
"NO-50",
"NO-54",
"NP-1",
"NP-2",
"NP-3",
"NP-4",
"NP-5",
"NP-BA",
"NP-BH",
"NP-DH",
"NP-GA",
"NP-JA",
"NP-KA",
"NP-KO",
"NP-LU",
"NP-MA",
"NP-ME",
"NP-NA",
"NP-P1",
"NP-P2",
"NP-P3",
"NP-P4",
"NP-P5",
"NP-P6",
"NP-P7",
"NP-RA",
"NP-SA",
"NP-SE",
"NR-01",
"NR-02",
"NR-03",
"NR-04",
"NR-05",
"NR-06",
"NR-07",
"NR-08",
"NR-09",
"NR-10",
"NR-11",
"NR-12",
"NR-13",
"NR-14",
"NZ-AUK",
"NZ-BOP",
"NZ-CAN",
"NZ-CIT",
"NZ-GIS",
"NZ-HKB",
"NZ-MBH",
"NZ-MWT",
"NZ-NSN",
"NZ-NTL",
"NZ-OTA",
"NZ-STL",
"NZ-TAS",
"NZ-TKI",
"NZ-WGN",
"NZ-WKO",
"NZ-WTC",
"OM-BJ",
"OM-BS",
"OM-BU",
"OM-DA",
"OM-MA",
"OM-MU",
"OM-SJ",
"OM-SS",
"OM-WU",
"OM-ZA",
"OM-ZU",
"PA-1",
"PA-10",
"PA-2",
"PA-3",
"PA-4",
"PA-5",
"PA-6",
"PA-7",
"PA-8",
"PA-9",
"PA-EM",
"PA-KY",
"PA-NB",
"PE-AMA",
"PE-ANC",
"PE-APU",
"PE-ARE",
"PE-AYA",
"PE-CAJ",
"PE-CAL",
"PE-CUS",
"PE-HUC",
"PE-HUV",
"PE-ICA",
"PE-JUN",
"PE-LAL",
"PE-LAM",
"PE-LIM",
"PE-LMA",
"PE-LOR",
"PE-MDD",
"PE-MOQ",
"PE-PAS",
"PE-PIU",
"PE-PUN",
"PE-SAM",
"PE-TAC",
"PE-TUM",
"PE-UCA",
"PG-CPK",
"PG-CPM",
"PG-EBR",
"PG-EHG",
"PG-EPW",
"PG-ESW",
"PG-GPK",
"PG-HLA",
"PG-JWK",
"PG-MBA",
"PG-MPL",
"PG-MPM",
"PG-MRL",
"PG-NCD",
"PG-NIK",
"PG-NPP",
"PG-NSB",
"PG-SAN",
"PG-SHM",
"PG-WBK",
"PG-WHM",
"PG-WPD",
"PH-00",
"PH-01",
"PH-02",
"PH-03",
"PH-05",
"PH-06",
"PH-07",
"PH-08",
"PH-09",
"PH-10",
"PH-11",
"PH-12",
"PH-13",
"PH-14",
"PH-15",
"PH-40",
"PH-41",
"PH-ABR",
"PH-AGN",
"PH-AGS",
"PH-AKL",
"PH-ALB",
"PH-ANT",
"PH-APA",
"PH-AUR",
"PH-BAN",
"PH-BAS",
"PH-BEN",
"PH-BIL",
"PH-BOH",
"PH-BTG",
"PH-BTN",
"PH-BUK",
"PH-BUL",
"PH-CAG",
"PH-CAM",
"PH-CAN",
"PH-CAP",
"PH-CAS",
"PH-CAT",
"PH-CAV",
"PH-CEB",
"PH-COM",
"PH-DAO",
"PH-DAS",
"PH-DAV",
"PH-DIN",
"PH-DVO",
"PH-EAS",
"PH-GUI",
"PH-IFU",
"PH-ILI",
"PH-ILN",
"PH-ILS",
"PH-ISA",
"PH-KAL",
"PH-LAG",
"PH-LAN",
"PH-LAS",
"PH-LEY",
"PH-LUN",
"PH-MAD",
"PH-MAG",
"PH-MAS",
"PH-MDC",
"PH-MDR",
"PH-MOU",
"PH-MSC",
"PH-MSR",
"PH-NCO",
"PH-NEC",
"PH-NER",
"PH-NSA",
"PH-NUE",
"PH-NUV",
"PH-PAM",
"PH-PAN",
"PH-PLW",
"PH-QUE",
"PH-QUI",
"PH-RIZ",
"PH-ROM",
"PH-SAR",
"PH-SCO",
"PH-SIG",
"PH-SLE",
"PH-SLU",
"PH-SOR",
"PH-SUK",
"PH-SUN",
"PH-SUR",
"PH-TAR",
"PH-TAW",
"PH-WSA",
"PH-ZAN",
"PH-ZAS",
"PH-ZMB",
"PH-ZSI",
"PK-BA",
"PK-GB",
"PK-IS",
"PK-JK",
"PK-KP",
"PK-PB",
"PK-SD",
"PK-TA",
"PL-02",
"PL-04",
"PL-06",
"PL-08",
"PL-10",
"PL-12",
"PL-14",
"PL-16",
"PL-18",
"PL-20",
"PL-22",
"PL-24",
"PL-26",
"PL-28",
"PL-30",
"PL-32",
"PS-BTH",
"PS-DEB",
"PS-GZA",
"PS-HBN",
"PS-JEM",
"PS-JEN",
"PS-JRH",
"PS-KYS",
"PS-NBS",
"PS-NGZ",
"PS-QQA",
"PS-RBH",
"PS-RFH",
"PS-SLT",
"PS-TBS",
"PS-TKM",
"PT-01",
"PT-02",
"PT-03",
"PT-04",
"PT-05",
"PT-06",
"PT-07",
"PT-08",
"PT-09",
"PT-10",
"PT-11",
"PT-12",
"PT-13",
"PT-14",
"PT-15",
"PT-16",
"PT-17",
"PT-18",
"PT-20",
"PT-30",
"PW-002",
"PW-004",
"PW-010",
"PW-050",
"PW-100",
"PW-150",
"PW-212",
"PW-214",
"PW-218",
"PW-222",
"PW-224",
"PW-226",
"PW-227",
"PW-228",
"PW-350",
"PW-370",
"PY-1",
"PY-10",
"PY-11",
"PY-12",
"PY-13",
"PY-14",
"PY-15",
"PY-16",
"PY-19",
"PY-2",
"PY-3",
"PY-4",
"PY-5",
"PY-6",
"PY-7",
"PY-8",
"PY-9",
"PY-ASU",
"QA-DA",
"QA-KH",
"QA-MS",
"QA-RA",
"QA-SH",
"QA-US",
"QA-WA",
"QA-ZA",
"RO-AB",
"RO-AG",
"RO-AR",
"RO-B",
"RO-BC",
"RO-BH",
"RO-BN",
"RO-BR",
"RO-BT",
"RO-BV",
"RO-BZ",
"RO-CJ",
"RO-CL",
"RO-CS",
"RO-CT",
"RO-CV",
"RO-DB",
"RO-DJ",
"RO-GJ",
"RO-GL",
"RO-GR",
"RO-HD",
"RO-HR",
"RO-IF",
"RO-IL",
"RO-IS",
"RO-MH",
"RO-MM",
"RO-MS",
"RO-NT",
"RO-OT",
"RO-PH",
"RO-SB",
"RO-SJ",
"RO-SM",
"RO-SV",
"RO-TL",
"RO-TM",
"RO-TR",
"RO-VL",
"RO-VN",
"RO-VS",
"RS-00",
"RS-01",
"RS-02",
"RS-03",
"RS-04",
"RS-05",
"RS-06",
"RS-07",
"RS-08",
"RS-09",
"RS-10",
"RS-11",
"RS-12",
"RS-13",
"RS-14",
"RS-15",
"RS-16",
"RS-17",
"RS-18",
"RS-19",
"RS-20",
"RS-21",
"RS-22",
"RS-23",
"RS-24",
"RS-25",
"RS-26",
"RS-27",
"RS-28",
"RS-29",
"RS-KM",
"RS-VO",
"RU-AD",
"RU-AL",
"RU-ALT",
"RU-AMU",
"RU-ARK",
"RU-AST",
"RU-BA",
"RU-BEL",
"RU-BRY",
"RU-BU",
"RU-CE",
"RU-CHE",
"RU-CHU",
"RU-CU",
"RU-DA",
"RU-IN",
"RU-IRK",
"RU-IVA",
"RU-KAM",
"RU-KB",
"RU-KC",
"RU-KDA",
"RU-KEM",
"RU-KGD",
"RU-KGN",
"RU-KHA",
"RU-KHM",
"RU-KIR",
"RU-KK",
"RU-KL",
"RU-KLU",
"RU-KO",
"RU-KOS",
"RU-KR",
"RU-KRS",
"RU-KYA",
"RU-LEN",
"RU-LIP",
"RU-MAG",
"RU-ME",
"RU-MO",
"RU-MOS",
"RU-MOW",
"RU-MUR",
"RU-NEN",
"RU-NGR",
"RU-NIZ",
"RU-NVS",
"RU-OMS",
"RU-ORE",
"RU-ORL",
"RU-PER",
"RU-PNZ",
"RU-PRI",
"RU-PSK",
"RU-ROS",
"RU-RYA",
"RU-SA",
"RU-SAK",
"RU-SAM",
"RU-SAR",
"RU-SE",
"RU-SMO",
"RU-SPE",
"RU-STA",
"RU-SVE",
"RU-TA",
"RU-TAM",
"RU-TOM",
"RU-TUL",
"RU-TVE",
"RU-TY",
"RU-TYU",
"RU-UD",
"RU-ULY",
"RU-VGG",
"RU-VLA",
"RU-VLG",
"RU-VOR",
"RU-YAN",
"RU-YAR",
"RU-YEV",
"RU-ZAB",
"RW-01",
"RW-02",
"RW-03",
"RW-04",
"RW-05",
"SA-01",
"SA-02",
"SA-03",
"SA-04",
"SA-05",
"SA-06",
"SA-07",
"SA-08",
"SA-09",
"SA-10",
"SA-11",
"SA-12",
"SA-14",
"SB-CE",
"SB-CH",
"SB-CT",
"SB-GU",
"SB-IS",
"SB-MK",
"SB-ML",
"SB-RB",
"SB-TE",
"SB-WE",
"SC-01",
"SC-02",
"SC-03",
"SC-04",
"SC-05",
"SC-06",
"SC-07",
"SC-08",
"SC-09",
"SC-10",
"SC-11",
"SC-12",
"SC-13",
"SC-14",
"SC-15",
"SC-16",
"SC-17",
"SC-18",
"SC-19",
"SC-20",
"SC-21",
"SC-22",
"SC-23",
"SC-24",
"SC-25",
"SC-26",
"SC-27",
"SD-DC",
"SD-DE",
"SD-DN",
"SD-DS",
"SD-DW",
"SD-GD",
"SD-GK",
"SD-GZ",
"SD-KA",
"SD-KH",
"SD-KN",
"SD-KS",
"SD-NB",
"SD-NO",
"SD-NR",
"SD-NW",
"SD-RS",
"SD-SI",
"SE-AB",
"SE-AC",
"SE-BD",
"SE-C",
"SE-D",
"SE-E",
"SE-F",
"SE-G",
"SE-H",
"SE-I",
"SE-K",
"SE-M",
"SE-N",
"SE-O",
"SE-S",
"SE-T",
"SE-U",
"SE-W",
"SE-X",
"SE-Y",
"SE-Z",
"SG-01",
"SG-02",
"SG-03",
"SG-04",
"SG-05",
"SH-AC",
"SH-HL",
"SH-TA",
"SI-001",
"SI-002",
"SI-003",
"SI-004",
"SI-005",
"SI-006",
"SI-007",
"SI-008",
"SI-009",
"SI-010",
"SI-011",
"SI-012",
"SI-013",
"SI-014",
"SI-015",
"SI-016",
"SI-017",
"SI-018",
"SI-019",
"SI-020",
"SI-021",
"SI-022",
"SI-023",
"SI-024",
"SI-025",
"SI-026",
"SI-027",
"SI-028",
"SI-029",
"SI-030",
"SI-031",
"SI-032",
"SI-033",
"SI-034",
"SI-035",
"SI-036",
"SI-037",
"SI-038",
"SI-039",
"SI-040",
"SI-041",
"SI-042",
"SI-043",
"SI-044",
"SI-045",
"SI-046",
"SI-047",
"SI-048",
"SI-049",
"SI-050",
"SI-051",
"SI-052",
"SI-053",
"SI-054",
"SI-055",
"SI-056",
"SI-057",
"SI-058",
"SI-059",
"SI-060",
"SI-061",
"SI-062",
"SI-063",
"SI-064",
"SI-065",
"SI-066",
"SI-067",
"SI-068",
"SI-069",
"SI-070",
"SI-071",
"SI-072",
"SI-073",
"SI-074",
"SI-075",
"SI-076",
"SI-077",
"SI-078",
"SI-079",
"SI-080",
"SI-081",
"SI-082",
"SI-083",
"SI-084",
"SI-085",
"SI-086",
"SI-087",
"SI-088",
"SI-089",
"SI-090",
"SI-091",
"SI-092",
"SI-093",
"SI-094",
"SI-095",
"SI-096",
"SI-097",
"SI-098",
"SI-099",
"SI-100",
"SI-101",
"SI-102",
"SI-103",
"SI-104",
"SI-105",
"SI-106",
"SI-107",
"SI-108",
"SI-109",
"SI-110",
"SI-111",
"SI-112",
"SI-113",
"SI-114",
"SI-115",
"SI-116",
"SI-117",
"SI-118",
"SI-119",
"SI-120",
"SI-121",
"SI-122",
"SI-123",
"SI-124",
"SI-125",
"SI-126",
"SI-127",
"SI-128",
"SI-129",
"SI-130",
"SI-131",
"SI-132",
"SI-133",
"SI-134",
"SI-135",
"SI-136",
"SI-137",
"SI-138",
"SI-139",
"SI-140",
"SI-141",
"SI-142",
"SI-143",
"SI-144",
"SI-146",
"SI-147",
"SI-148",
"SI-149",
"SI-150",
"SI-151",
"SI-152",
"SI-153",
"SI-154",
"SI-155",
"SI-156",
"SI-157",
"SI-158",
"SI-159",
"SI-160",
"SI-161",
"SI-162",
"SI-163",
"SI-164",
"SI-165",
"SI-166",
"SI-167",
"SI-168",
"SI-169",
"SI-170",
"SI-171",
"SI-172",
"SI-173",
"SI-174",
"SI-175",
"SI-176",
"SI-177",
"SI-178",
"SI-179",
"SI-180",
"SI-181",
"SI-182",
"SI-183",
"SI-184",
"SI-185",
"SI-186",
"SI-187",
"SI-188",
"SI-189",
"SI-190",
"SI-191",
"SI-192",
"SI-193",
"SI-194",
"SI-195",
"SI-196",
"SI-197",
"SI-198",
"SI-199",
"SI-200",
"SI-201",
"SI-202",
"SI-203",
"SI-204",
"SI-205",
"SI-206",
"SI-207",
"SI-208",
"SI-209",
"SI-210",
"SI-211",
"SI-212",
"SI-213",
"SK-BC",
"SK-BL",
"SK-KI",
"SK-NI",
"SK-PV",
"SK-TA",
"SK-TC",
"SK-ZI",
"SL-E",
"SL-N",
"SL-NW",
"SL-S",
"SL-W",
"SM-01",
"SM-02",
"SM-03",
"SM-04",
"SM-05",
"SM-06",
"SM-07",
"SM-08",
"SM-09",
"SN-DB",
"SN-DK",
"SN-FK",
"SN-KA",
"SN-KD",
"SN-KE",
"SN-KL",
"SN-LG",
"SN-MT",
"SN-SE",
"SN-SL",
"SN-TC",
"SN-TH",
"SN-ZG",
"SO-AW",
"SO-BK",
"SO-BN",
"SO-BR",
"SO-BY",
"SO-GA",
"SO-GE",
"SO-HI",
"SO-JD",
"SO-JH",
"SO-MU",
"SO-NU",
"SO-SA",
"SO-SD",
"SO-SH",
"SO-SO",
"SO-TO",
"SO-WO",
"SR-BR",
"SR-CM",
"SR-CR",
"SR-MA",
"SR-NI",
"SR-PM",
"SR-PR",
"SR-SA",
"SR-SI",
"SR-WA",
"SS-BN",
"SS-BW",
"SS-EC",
"SS-EE",
"SS-EW",
"SS-JG",
"SS-LK",
"SS-NU",
"SS-UY",
"SS-WR",
"ST-01",
"ST-02",
"ST-03",
"ST-04",
"ST-05",
"ST-06",
"ST-P",
"SV-AH",
"SV-CA",
"SV-CH",
"SV-CU",
"SV-LI",
"SV-MO",
"SV-PA",
"SV-SA",
"SV-SM",
"SV-SO",
"SV-SS",
"SV-SV",
"SV-UN",
"SV-US",
"SY-DI",
"SY-DR",
"SY-DY",
"SY-HA",
"SY-HI",
"SY-HL",
"SY-HM",
"SY-ID",
"SY-LA",
"SY-QU",
"SY-RA",
"SY-RD",
"SY-SU",
"SY-TA",
"SZ-HH",
"SZ-LU",
"SZ-MA",
"SZ-SH",
"TD-BA",
"TD-BG",
"TD-BO",
"TD-CB",
"TD-EE",
"TD-EO",
"TD-GR",
"TD-HL",
"TD-KA",
"TD-LC",
"TD-LO",
"TD-LR",
"TD-MA",
"TD-MC",
"TD-ME",
"TD-MO",
"TD-ND",
"TD-OD",
"TD-SA",
"TD-SI",
"TD-TA",
"TD-TI",
"TD-WF",
"TG-C",
"TG-K",
"TG-M",
"TG-P",
"TG-S",
"TH-10",
"TH-11",
"TH-12",
"TH-13",
"TH-14",
"TH-15",
"TH-16",
"TH-17",
"TH-18",
"TH-19",
"TH-20",
"TH-21",
"TH-22",
"TH-23",
"TH-24",
"TH-25",
"TH-26",
"TH-27",
"TH-30",
"TH-31",
"TH-32",
"TH-33",
"TH-34",
"TH-35",
"TH-36",
"TH-37",
"TH-38",
"TH-39",
"TH-40",
"TH-41",
"TH-42",
"TH-43",
"TH-44",
"TH-45",
"TH-46",
"TH-47",
"TH-48",
"TH-49",
"TH-50",
"TH-51",
"TH-52",
"TH-53",
"TH-54",
"TH-55",
"TH-56",
"TH-57",
"TH-58",
"TH-60",
"TH-61",
"TH-62",
"TH-63",
"TH-64",
"TH-65",
"TH-66",
"TH-67",
"TH-70",
"TH-71",
"TH-72",
"TH-73",
"TH-74",
"TH-75",
"TH-76",
"TH-77",
"TH-80",
"TH-81",
"TH-82",
"TH-83",
"TH-84",
"TH-85",
"TH-86",
"TH-90",
"TH-91",
"TH-92",
"TH-93",
"TH-94",
"TH-95",
"TH-96",
"TH-S",
"TJ-DU",
"TJ-GB",
"TJ-KT",
"TJ-RA",
"TJ-SU",
"TL-AL",
"TL-AN",
"TL-BA",
"TL-BO",
"TL-CO",
"TL-DI",
"TL-ER",
"TL-LA",
"TL-LI",
"TL-MF",
"TL-MT",
"TL-OE",
"TL-VI",
"TM-A",
"TM-B",
"TM-D",
"TM-L",
"TM-M",
"TM-S",
"TN-11",
"TN-12",
"TN-13",
"TN-14",
"TN-21",
"TN-22",
"TN-23",
"TN-31",
"TN-32",
"TN-33",
"TN-34",
"TN-41",
"TN-42",
"TN-43",
"TN-51",
"TN-52",
"TN-53",
"TN-61",
"TN-71",
"TN-72",
"TN-73",
"TN-81",
"TN-82",
"TN-83",
"TO-01",
"TO-02",
"TO-03",
"TO-04",
"TO-05",
"TR-01",
"TR-02",
"TR-03",
"TR-04",
"TR-05",
"TR-06",
"TR-07",
"TR-08",
"TR-09",
"TR-10",
"TR-11",
"TR-12",
"TR-13",
"TR-14",
"TR-15",
"TR-16",
"TR-17",
"TR-18",
"TR-19",
"TR-20",
"TR-21",
"TR-22",
"TR-23",
"TR-24",
"TR-25",
"TR-26",
"TR-27",
"TR-28",
"TR-29",
"TR-30",
"TR-31",
"TR-32",
"TR-33",
"TR-34",
"TR-35",
"TR-36",
"TR-37",
"TR-38",
"TR-39",
"TR-40",
"TR-41",
"TR-42",
"TR-43",
"TR-44",
"TR-45",
"TR-46",
"TR-47",
"TR-48",
"TR-49",
"TR-50",
"TR-51",
"TR-52",
"TR-53",
"TR-54",
"TR-55",
"TR-56",
"TR-57",
"TR-58",
"TR-59",
"TR-60",
"TR-61",
"TR-62",
"TR-63",
"TR-64",
"TR-65",
"TR-66",
"TR-67",
"TR-68",
"TR-69",
"TR-70",
"TR-71",
"TR-72",
"TR-73",
"TR-74",
"TR-75",
"TR-76",
"TR-77",
"TR-78",
"TR-79",
"TR-80",
"TR-81",
"TT-ARI",
"TT-CHA",
"TT-CTT",
"TT-DMN",
"TT-MRC",
"TT-PED",
"TT-POS",
"TT-PRT",
"TT-PTF",
"TT-SFO",
"TT-SGE",
"TT-SIP",
"TT-SJL",
"TT-TOB",
"TT-TUP",
"TV-FUN",
"TV-NIT",
"TV-NKF",
"TV-NKL",
"TV-NMA",
"TV-NMG",
"TV-NUI",
"TV-VAI",
"TW-CHA",
"TW-CYI",
"TW-CYQ",
"TW-HSQ",
"TW-HSZ",
"TW-HUA",
"TW-ILA",
"TW-KEE",
"TW-KHH",
"TW-KIN",
"TW-LIE",
"TW-MIA",
"TW-NAN",
"TW-NWT",
"TW-PEN",
"TW-PIF",
"TW-TAO",
"TW-TNN",
"TW-TPE",
"TW-TTT",
"TW-TXG",
"TW-YUN",
"TZ-01",
"TZ-02",
"TZ-03",
"TZ-04",
"TZ-05",
"TZ-06",
"TZ-07",
"TZ-08",
"TZ-09",
"TZ-10",
"TZ-11",
"TZ-12",
"TZ-13",
"TZ-14",
"TZ-15",
"TZ-16",
"TZ-17",
"TZ-18",
"TZ-19",
"TZ-20",
"TZ-21",
"TZ-22",
"TZ-23",
"TZ-24",
"TZ-25",
"TZ-26",
"TZ-27",
"TZ-28",
"TZ-29",
"TZ-30",
"TZ-31",
"UA-05",
"UA-07",
"UA-09",
"UA-12",
"UA-14",
"UA-18",
"UA-21",
"UA-23",
"UA-26",
"UA-30",
"UA-32",
"UA-35",
"UA-40",
"UA-43",
"UA-46",
"UA-48",
"UA-51",
"UA-53",
"UA-56",
"UA-59",
"UA-61",
"UA-63",
"UA-65",
"UA-68",
"UA-71",
"UA-74",
"UA-77",
"UG-101",
"UG-102",
"UG-103",
"UG-104",
"UG-105",
"UG-106",
"UG-107",
"UG-108",
"UG-109",
"UG-110",
"UG-111",
"UG-112",
"UG-113",
"UG-114",
"UG-115",
"UG-116",
"UG-117",
"UG-118",
"UG-119",
"UG-120",
"UG-121",
"UG-122",
"UG-123",
"UG-124",
"UG-125",
"UG-126",
"UG-201",
"UG-202",
"UG-203",
"UG-204",
"UG-205",
"UG-206",
"UG-207",
"UG-208",
"UG-209",
"UG-210",
"UG-211",
"UG-212",
"UG-213",
"UG-214",
"UG-215",
"UG-216",
"UG-217",
"UG-218",
"UG-219",
"UG-220",
"UG-221",
"UG-222",
"UG-223",
"UG-224",
"UG-225",
"UG-226",
"UG-227",
"UG-228",
"UG-229",
"UG-230",
"UG-231",
"UG-232",
"UG-233",
"UG-234",
"UG-235",
"UG-236",
"UG-237",
"UG-301",
"UG-302",
"UG-303",
"UG-304",
"UG-305",
"UG-306",
"UG-307",
"UG-308",
"UG-309",
"UG-310",
"UG-311",
"UG-312",
"UG-313",
"UG-314",
"UG-315",
"UG-316",
"UG-317",
"UG-318",
"UG-319",
"UG-320",
"UG-321",
"UG-322",
"UG-323",
"UG-324",
"UG-325",
"UG-326",
"UG-327",
"UG-328",
"UG-329",
"UG-330",
"UG-331",
"UG-332",
"UG-333",
"UG-334",
"UG-335",
"UG-336",
"UG-337",
"UG-401",
"UG-402",
"UG-403",
"UG-404",
"UG-405",
"UG-406",
"UG-407",
"UG-408",
"UG-409",
"UG-410",
"UG-411",
"UG-412",
"UG-413",
"UG-414",
"UG-415",
"UG-416",
"UG-417",
"UG-418",
"UG-419",
"UG-420",
"UG-421",
"UG-422",
"UG-423",
"UG-424",
"UG-425",
"UG-426",
"UG-427",
"UG-428",
"UG-429",
"UG-430",
"UG-431",
"UG-432",
"UG-433",
"UG-434",
"UG-435",
"UG-C",
"UG-E",
"UG-N",
"UG-W",
"UM-67",
"UM-71",
"UM-76",
"UM-79",
"UM-81",
"UM-84",
"UM-86",
"UM-89",
"UM-95",
"US-AK",
"US-AL",
"US-AR",
"US-AS",
"US-AZ",
"US-CA",
"US-CO",
"US-CT",
"US-DC",
"US-DE",
"US-FL",
"US-GA",
"US-GU",
"US-HI",
"US-IA",
"US-ID",
"US-IL",
"US-IN",
"US-KS",
"US-KY",
"US-LA",
"US-MA",
"US-MD",
"US-ME",
"US-MI",
"US-MN",
"US-MO",
"US-MP",
"US-MS",
"US-MT",
"US-NC",
"US-ND",
"US-NE",
"US-NH",
"US-NJ",
"US-NM",
"US-NV",
"US-NY",
"US-OH",
"US-OK",
"US-OR",
"US-PA",
"US-PR",
"US-RI",
"US-SC",
"US-SD",
"US-TN",
"US-TX",
"US-UM",
"US-UT",
"US-VA",
"US-VI",
"US-VT",
"US-WA",
"US-WI",
"US-WV",
"US-WY",
"UY-AR",
"UY-CA",
"UY-CL",
"UY-CO",
"UY-DU",
"UY-FD",
"UY-FS",
"UY-LA",
"UY-MA",
"UY-MO",
"UY-PA",
"UY-RN",
"UY-RO",
"UY-RV",
"UY-SA",
"UY-SJ",
"UY-SO",
"UY-TA",
"UY-TT",
"UZ-AN",
"UZ-BU",
"UZ-FA",
"UZ-JI",
"UZ-NG",
"UZ-NW",
"UZ-QA",
"UZ-QR",
"UZ-SA",
"UZ-SI",
"UZ-SU",
"UZ-TK",
"UZ-TO",
"UZ-XO",
"VC-01",
"VC-02",
"VC-03",
"VC-04",
"VC-05",
"VC-06",
"VE-A",
"VE-B",
"VE-C",
"VE-D",
"VE-E",
"VE-F",
"VE-G",
"VE-H",
"VE-I",
"VE-J",
"VE-K",
"VE-L",
"VE-M",
"VE-N",
"VE-O",
"VE-P",
"VE-R",
"VE-S",
"VE-T",
"VE-U",
"VE-V",
"VE-W",
"VE-X",
"VE-Y",
"VE-Z",
"VN-01",
"VN-02",
"VN-03",
"VN-04",
"VN-05",
"VN-06",
"VN-07",
"VN-09",
"VN-13",
"VN-14",
"VN-18",
"VN-20",
"VN-21",
"VN-22",
"VN-23",
"VN-24",
"VN-25",
"VN-26",
"VN-27",
"VN-28",
"VN-29",
"VN-30",
"VN-31",
"VN-32",
"VN-33",
"VN-34",
"VN-35",
"VN-36",
"VN-37",
"VN-39",
"VN-40",
"VN-41",
"VN-43",
"VN-44",
"VN-45",
"VN-46",
"VN-47",
"VN-49",
"VN-50",
"VN-51",
"VN-52",
"VN-53",
"VN-54",
"VN-55",
"VN-56",
"VN-57",
"VN-58",
"VN-59",
"VN-61",
"VN-63",
"VN-66",
"VN-67",
"VN-68",
"VN-69",
"VN-70",
"VN-71",
"VN-72",
"VN-73",
"VN-CT",
"VN-DN",
"VN-HN",
"VN-HP",
"VN-SG",
"VU-MAP",
"VU-PAM",
"VU-SAM",
"VU-SEE",
"VU-TAE",
"VU-TOB",
"WF-AL",
"WF-SG",
"WF-UV",
"WS-AA",
"WS-AL",
"WS-AT",
"WS-FA",
"WS-GE",
"WS-GI",
"WS-PA",
"WS-SA",
"WS-TU",
"WS-VF",
"WS-VS",
"YE-AB",
"YE-AD",
"YE-AM",
"YE-BA",
"YE-DA",
"YE-DH",
"YE-HD",
"YE-HJ",
"YE-HU",
"YE-IB",
"YE-JA",
"YE-LA",
"YE-MA",
"YE-MR",
"YE-MW",
"YE-RA",
"YE-SA",
"YE-SD",
"YE-SH",
"YE-SN",
"YE-SU",
"YE-TA",
"ZA-EC",
"ZA-FS",
"ZA-GP",
"ZA-KZN",
"ZA-LP",
"ZA-MP",
"ZA-NC",
"ZA-NW",
"ZA-WC",
"ZM-01",
"ZM-02",
"ZM-03",
"ZM-04",
"ZM-05",
"ZM-06",
"ZM-07",
"ZM-08",
"ZM-09",
"ZM-10",
"ZW-BU",
"ZW-HA",
"ZW-MA",
"ZW-MC",
"ZW-ME",
"ZW-MI",
"ZW-MN",
"ZW-MS",
"ZW-MV",
"ZW-MW"
]
},
"dataProtectionOfficerName": {
"type": "string"
},
"dataProtectionOfficerEmail": {
"type": "string"
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "values"],
"properties": {
"key": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
]
}
},
"data-subjects": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["type"],
"properties": {
"type": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"title": {
"type": "string"
},
"adminDashboardDefaultSilentMode": {
"type": "boolean"
},
"actions": {
"type": "array",
"items": {
"type": "string",
"enum": [
"AUTOMATED_DECISION_MAKING_OPT_OUT",
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
"CONTACT_OPT_OUT",
"SALE_OPT_OUT",
"TRACKING_OPT_OUT",
"CUSTOM_OPT_OUT",
"AUTOMATED_DECISION_MAKING_OPT_IN",
"USE_OF_SENSITIVE_INFORMATION_OPT_IN",
"SALE_OPT_IN",
"TRACKING_OPT_IN",
"CONTACT_OPT_IN",
"CUSTOM_OPT_IN",
"ACCESS",
"ERASURE",
"RECTIFICATION",
"RESTRICTION",
"BUSINESS_PURPOSE",
"PLACE_ON_LEGAL_HOLD",
"REMOVE_FROM_LEGAL_HOLD"
]
}
}
}
}
]
}
},
"actions": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["type"],
"properties": {
"type": {
"type": "string",
"enum": [
"AUTOMATED_DECISION_MAKING_OPT_OUT",
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
"CONTACT_OPT_OUT",
"SALE_OPT_OUT",
"TRACKING_OPT_OUT",
"CUSTOM_OPT_OUT",
"AUTOMATED_DECISION_MAKING_OPT_IN",
"USE_OF_SENSITIVE_INFORMATION_OPT_IN",
"SALE_OPT_IN",
"TRACKING_OPT_IN",
"CONTACT_OPT_IN",
"CUSTOM_OPT_IN",
"ACCESS",
"ERASURE",
"RECTIFICATION",
"RESTRICTION",
"BUSINESS_PURPOSE",
"PLACE_ON_LEGAL_HOLD",
"REMOVE_FROM_LEGAL_HOLD"
]
}
}
},
{
"type": "object",
"properties": {
"skipSecondaryIfNoFiles": {
"type": "boolean"
},
"skipDownloadableStep": {
"type": "boolean"
},
"requiresReview": {
"type": "boolean"
},
"waitingPeriod": {
"type": "number"
},
"regionDetectionMethod": {
"type": "string",
"enum": ["DISABLED", "AUTO", "FORM"]
},
"regionList": {
"type": "array",
"items": {
"type": "string",
"enum": [
"EU",
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BA",
"BW",
"BV",
"BR",
"IO",
"VG",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"BQ",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"KP",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"KR",
"SS",
"ES",
"LK",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UM",
"VI",
"UG",
"UA",
"AE",
"GB",
"US",
"UY",
"UZ",
"VU",
"VA",
"VE",
"VN",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"AD-02",
"AD-03",
"AD-04",
"AD-05",
"AD-06",
"AD-07",
"AD-08",
"AE-AJ",
"AE-AZ",
"AE-DU",
"AE-FU",
"AE-RK",
"AE-SH",
"AE-UQ",
"AF-BAL",
"AF-BAM",
"AF-BDG",
"AF-BDS",
"AF-BGL",
"AF-DAY",
"AF-FRA",
"AF-FYB",
"AF-GHA",
"AF-GHO",
"AF-HEL",
"AF-HER",
"AF-JOW",
"AF-KAB",
"AF-KAN",
"AF-KAP",
"AF-KDZ",
"AF-KHO",
"AF-KNR",
"AF-LAG",
"AF-LOG",
"AF-NAN",
"AF-NIM",
"AF-NUR",
"AF-PAN",
"AF-PAR",
"AF-PIA",
"AF-PKA",
"AF-SAM",
"AF-SAR",
"AF-TAK",
"AF-URU",
"AF-WAR",
"AF-ZAB",
"AG-03",
"AG-04",
"AG-05",
"AG-06",
"AG-07",
"AG-08",
"AG-10",
"AG-11",
"AL-01",
"AL-02",
"AL-03",
"AL-04",
"AL-05",
"AL-06",
"AL-07",
"AL-08",
"AL-09",
"AL-10",
"AL-11",
"AL-12",
"AM-AG",
"AM-AR",
"AM-AV",
"AM-ER",
"AM-GR",
"AM-KT",
"AM-LO",
"AM-SH",
"AM-SU",
"AM-TV",
"AM-VD",
"AO-BGO",
"AO-BGU",
"AO-BIE",
"AO-CAB",
"AO-CCU",
"AO-CNN",
"AO-CNO",
"AO-CUS",
"AO-HUA",
"AO-HUI",
"AO-LNO",
"AO-LSU",
"AO-LUA",
"AO-MAL",
"AO-MOX",
"AO-NAM",
"AO-UIG",
"AO-ZAI",
"AR-A",
"AR-B",
"AR-C",
"AR-D",
"AR-E",
"AR-F",
"AR-G",
"AR-H",
"AR-J",
"AR-K",
"AR-L",
"AR-M",
"AR-N",
"AR-P",
"AR-Q",
"AR-R",
"AR-S",
"AR-T",
"AR-U",
"AR-V",
"AR-W",
"AR-X",
"AR-Y",
"AR-Z",
"AT-1",
"AT-2",
"AT-3",
"AT-4",
"AT-5",
"AT-6",
"AT-7",
"AT-8",
"AT-9",
"AU-ACT",
"AU-NSW",
"AU-NT",
"AU-QLD",
"AU-SA",
"AU-TAS",
"AU-VIC",
"AU-WA",
"AZ-ABS",
"AZ-AGA",
"AZ-AGC",
"AZ-AGM",
"AZ-AGS",
"AZ-AGU",
"AZ-AST",
"AZ-BA",
"AZ-BAB",
"AZ-BAL",
"AZ-BAR",
"AZ-BEY",
"AZ-BIL",
"AZ-CAB",
"AZ-CAL",
"AZ-CUL",
"AZ-DAS",
"AZ-FUZ",
"AZ-GA",
"AZ-GAD",
"AZ-GOR",
"AZ-GOY",
"AZ-GYG",
"AZ-HAC",
"AZ-IMI",
"AZ-ISM",
"AZ-KAL",
"AZ-KAN",
"AZ-KUR",
"AZ-LA",
"AZ-LAC",
"AZ-LAN",
"AZ-LER",
"AZ-MAS",
"AZ-MI",
"AZ-NA",
"AZ-NEF",
"AZ-NV",
"AZ-NX",
"AZ-OGU",
"AZ-ORD",
"AZ-QAB",
"AZ-QAX",
"AZ-QAZ",
"AZ-QBA",
"AZ-QBI",
"AZ-QOB",
"AZ-QUS",
"AZ-SA",
"AZ-SAB",
"AZ-SAD",
"AZ-SAH",
"AZ-SAK",
"AZ-SAL",
"AZ-SAR",
"AZ-SAT",
"AZ-SBN",
"AZ-SIY",
"AZ-SKR",
"AZ-SM",
"AZ-SMI",
"AZ-SMX",
"AZ-SR",
"AZ-SUS",
"AZ-TAR",
"AZ-TOV",
"AZ-UCA",
"AZ-XA",
"AZ-XAC",
"AZ-XCI",
"AZ-XIZ",
"AZ-XVD",
"AZ-YAR",
"AZ-YE",
"AZ-YEV",
"AZ-ZAN",
"AZ-ZAQ",
"AZ-ZAR",
"BA-BIH",
"BA-BRC",
"BA-SRP",
"BB-01",
"BB-02",
"BB-03",
"BB-04",
"BB-05",
"BB-06",
"BB-07",
"BB-08",
"BB-09",
"BB-10",
"BB-11",
"BD-01",
"BD-02",
"BD-03",
"BD-04",
"BD-05",
"BD-06",
"BD-07",
"BD-08",
"BD-09",
"BD-10",
"BD-11",
"BD-12",
"BD-13",
"BD-14",
"BD-15",
"BD-16",
"BD-17",
"BD-18",
"BD-19",
"BD-20",
"BD-21",
"BD-22",
"BD-23",
"BD-24",
"BD-25",
"BD-26",
"BD-27",
"BD-28",
"BD-29",
"BD-30",
"BD-31",
"BD-32",
"BD-33",
"BD-34",
"BD-35",
"BD-36",
"BD-37",
"BD-38",
"BD-39",
"BD-40",
"BD-41",
"BD-42",
"BD-43",
"BD-44",
"BD-45",
"BD-46",
"BD-47",
"BD-48",
"BD-49",
"BD-50",
"BD-51",
"BD-52",
"BD-53",
"BD-54",
"BD-55",
"BD-56",
"BD-57",
"BD-58",
"BD-59",
"BD-60",
"BD-61",
"BD-62",
"BD-63",
"BD-64",
"BD-A",
"BD-B",
"BD-C",
"BD-D",
"BD-E",
"BD-F",
"BD-G",
"BD-H",
"BE-BRU",
"BE-VAN",
"BE-VBR",
"BE-VLG",
"BE-VLI",
"BE-VOV",
"BE-VWV",
"BE-WAL",
"BE-WBR",
"BE-WHT",
"BE-WLG",
"BE-WLX",
"BE-WNA",
"BF-01",
"BF-02",
"BF-03",
"BF-04",
"BF-05",
"BF-06",
"BF-07",
"BF-08",
"BF-09",
"BF-10",
"BF-11",
"BF-12",
"BF-13",
"BF-BAL",
"BF-BAM",
"BF-BAN",
"BF-BAZ",
"BF-BGR",
"BF-BLG",
"BF-BLK",
"BF-COM",
"BF-GAN",
"BF-GNA",
"BF-GOU",
"BF-HOU",
"BF-IOB",
"BF-KAD",
"BF-KEN",
"BF-KMD",
"BF-KMP",
"BF-KOP",
"BF-KOS",
"BF-KOT",
"BF-KOW",
"BF-LER",
"BF-LOR",
"BF-MOU",
"BF-NAM",
"BF-NAO",
"BF-NAY",
"BF-NOU",
"BF-OUB",
"BF-OUD",
"BF-PAS",
"BF-PON",
"BF-SEN",
"BF-SIS",
"BF-SMT",
"BF-SNG",
"BF-SOM",
"BF-SOR",
"BF-TAP",
"BF-TUI",
"BF-YAG",
"BF-YAT",
"BF-ZIR",
"BF-ZON",
"BF-ZOU",
"BG-01",
"BG-02",
"BG-03",
"BG-04",
"BG-05",
"BG-06",
"BG-07",
"BG-08",
"BG-09",
"BG-10",
"BG-11",
"BG-12",
"BG-13",
"BG-14",
"BG-15",
"BG-16",
"BG-17",
"BG-18",
"BG-19",
"BG-20",
"BG-21",
"BG-22",
"BG-23",
"BG-24",
"BG-25",
"BG-26",
"BG-27",
"BG-28",
"BH-13",
"BH-14",
"BH-15",
"BH-17",
"BI-BB",
"BI-BL",
"BI-BM",
"BI-BR",
"BI-CA",
"BI-CI",
"BI-GI",
"BI-KI",
"BI-KR",
"BI-KY",
"BI-MA",
"BI-MU",
"BI-MW",
"BI-MY",
"BI-NG",
"BI-RM",
"BI-RT",
"BI-RY",
"BJ-AK",
"BJ-AL",
"BJ-AQ",
"BJ-BO",
"BJ-CO",
"BJ-DO",
"BJ-KO",
"BJ-LI",
"BJ-MO",
"BJ-OU",
"BJ-PL",
"BJ-ZO",
"BN-BE",
"BN-BM",
"BN-TE",
"BN-TU",
"BO-B",
"BO-C",
"BO-H",
"BO-L",
"BO-N",
"BO-O",
"BO-P",
"BO-S",
"BO-T",
"BQ-BO",
"BQ-SA",
"BQ-SE",
"BR-AC",
"BR-AL",
"BR-AM",
"BR-AP",
"BR-BA",
"BR-CE",
"BR-DF",
"BR-ES",
"BR-GO",
"BR-MA",
"BR-MG",
"BR-MS",
"BR-MT",
"BR-PA",
"BR-PB",
"BR-PE",
"BR-PI",
"BR-PR",
"BR-RJ",
"BR-RN",
"BR-RO",
"BR-RR",
"BR-RS",
"BR-SC",
"BR-SE",
"BR-SP",
"BR-TO",
"BS-AK",
"BS-BI",
"BS-BP",
"BS-BY",
"BS-CE",
"BS-CI",
"BS-CK",
"BS-CO",
"BS-CS",
"BS-EG",
"BS-EX",
"BS-FP",
"BS-GC",
"BS-HI",
"BS-HT",
"BS-IN",
"BS-LI",
"BS-MC",
"BS-MG",
"BS-MI",
"BS-NE",
"BS-NO",
"BS-NP",
"BS-NS",
"BS-RC",
"BS-RI",
"BS-SA",
"BS-SE",
"BS-SO",
"BS-SS",
"BS-SW",
"BS-WG",
"BT-11",
"BT-12",
"BT-13",
"BT-14",
"BT-15",
"BT-21",
"BT-22",
"BT-23",
"BT-24",
"BT-31",
"BT-32",
"BT-33",
"BT-34",
"BT-41",
"BT-42",
"BT-43",
"BT-44",
"BT-45",
"BT-GA",
"BT-TY",
"BW-CE",
"BW-CH",
"BW-FR",
"BW-GA",
"BW-GH",
"BW-JW",
"BW-KG",
"BW-KL",
"BW-KW",
"BW-LO",
"BW-NE",
"BW-NW",
"BW-SE",
"BW-SO",
"BW-SP",
"BW-ST",
"BY-BR",
"BY-HM",
"BY-HO",
"BY-HR",
"BY-MA",
"BY-MI",
"BY-VI",
"BZ-BZ",
"BZ-CY",
"BZ-CZL",
"BZ-OW",
"BZ-SC",
"BZ-TOL",
"CA-AB",
"CA-BC",
"CA-MB",
"CA-NB",
"CA-NL",
"CA-NS",
"CA-NT",
"CA-NU",
"CA-ON",
"CA-PE",
"CA-QC",
"CA-SK",
"CA-YT",
"CD-BC",
"CD-BU",
"CD-EQ",
"CD-HK",
"CD-HL",
"CD-HU",
"CD-IT",
"CD-KC",
"CD-KE",
"CD-KG",
"CD-KL",
"CD-KN",
"CD-KS",
"CD-LO",
"CD-LU",
"CD-MA",
"CD-MN",
"CD-MO",
"CD-NK",
"CD-NU",
"CD-SA",
"CD-SK",
"CD-SU",
"CD-TA",
"CD-TO",
"CD-TU",
"CF-AC",
"CF-BB",
"CF-BGF",
"CF-BK",
"CF-HK",
"CF-HM",
"CF-HS",
"CF-KB",
"CF-KG",
"CF-LB",
"CF-MB",
"CF-MP",
"CF-NM",
"CF-OP",
"CF-SE",
"CF-UK",
"CF-VK",
"CG-11",
"CG-12",
"CG-13",
"CG-14",
"CG-15",
"CG-16",
"CG-2",
"CG-5",
"CG-7",
"CG-8",
"CG-9",
"CG-BZV",
"CH-AG",
"CH-AI",
"CH-AR",
"CH-BE",
"CH-BL",
"CH-BS",
"CH-FR",
"CH-GE",
"CH-GL",
"CH-GR",
"CH-JU",
"CH-LU",
"CH-NE",
"CH-NW",
"CH-OW",
"CH-SG",
"CH-SH",
"CH-SO",
"CH-SZ",
"CH-TG",
"CH-TI",
"CH-UR",
"CH-VD",
"CH-VS",
"CH-ZG",
"CH-ZH",
"CI-AB",
"CI-BS",
"CI-CM",
"CI-DN",
"CI-GD",
"CI-LC",
"CI-LG",
"CI-MG",
"CI-SM",
"CI-SV",
"CI-VB",
"CI-WR",
"CI-YM",
"CI-ZZ",
"CL-AI",
"CL-AN",
"CL-AP",
"CL-AR",
"CL-AT",
"CL-BI",
"CL-CO",
"CL-LI",
"CL-LL",
"CL-LR",
"CL-MA",
"CL-ML",
"CL-NB",
"CL-RM",
"CL-TA",
"CL-VS",
"CM-AD",
"CM-CE",
"CM-EN",
"CM-ES",
"CM-LT",
"CM-NO",
"CM-NW",
"CM-OU",
"CM-SU",
"CM-SW",
"CN-AH",
"CN-BJ",
"CN-CQ",
"CN-FJ",
"CN-GD",
"CN-GS",
"CN-GX",
"CN-GZ",
"CN-HA",
"CN-HB",
"CN-HE",
"CN-HI",
"CN-HK",
"CN-HL",
"CN-HN",
"CN-JL",
"CN-JS",
"CN-JX",
"CN-LN",
"CN-MO",
"CN-NM",
"CN-NX",
"CN-QH",
"CN-SC",
"CN-SD",
"CN-SH",
"CN-SN",
"CN-SX",
"CN-TJ",
"CN-TW",
"CN-XJ",
"CN-XZ",
"CN-YN",
"CN-ZJ",
"CO-AMA",
"CO-ANT",
"CO-ARA",
"CO-ATL",
"CO-BOL",
"CO-BOY",
"CO-CAL",
"CO-CAQ",
"CO-CAS",
"CO-CAU",
"CO-CES",
"CO-CHO",
"CO-COR",
"CO-CUN",
"CO-DC",
"CO-GUA",
"CO-GUV",
"CO-HUI",
"CO-LAG",
"CO-MAG",
"CO-MET",
"CO-NAR",
"CO-NSA",
"CO-PUT",
"CO-QUI",
"CO-RIS",
"CO-SAN",
"CO-SAP",
"CO-SUC",
"CO-TOL",
"CO-VAC",
"CO-VAU",
"CO-VID",
"CR-A",
"CR-C",
"CR-G",
"CR-H",
"CR-L",
"CR-P",
"CR-SJ",
"CU-01",
"CU-03",
"CU-04",
"CU-05",
"CU-06",
"CU-07",
"CU-08",
"CU-09",
"CU-10",
"CU-11",
"CU-12",
"CU-13",
"CU-14",
"CU-15",
"CU-16",
"CU-99",
"CV-B",
"CV-BR",
"CV-BV",
"CV-CA",
"CV-CF",
"CV-CR",
"CV-MA",
"CV-MO",
"CV-PA",
"CV-PN",
"CV-PR",
"CV-RB",
"CV-RG",
"CV-RS",
"CV-S",
"CV-SD",
"CV-SF",
"CV-SL",
"CV-SM",
"CV-SO",
"CV-SS",
"CV-SV",
"CV-TA",
"CV-TS",
"CY-01",
"CY-02",
"CY-03",
"CY-04",
"CY-05",
"CY-06",
"CZ-10",
"CZ-20",
"CZ-201",
"CZ-202",
"CZ-203",
"CZ-204",
"CZ-205",
"CZ-206",
"CZ-207",
"CZ-208",
"CZ-209",
"CZ-20A",
"CZ-20B",
"CZ-20C",
"CZ-31",
"CZ-311",
"CZ-312",
"CZ-313",
"CZ-314",
"CZ-315",
"CZ-316",
"CZ-317",
"CZ-32",
"CZ-321",
"CZ-322",
"CZ-323",
"CZ-324",
"CZ-325",
"CZ-326",
"CZ-327",
"CZ-41",
"CZ-411",
"CZ-412",
"CZ-413",
"CZ-42",
"CZ-421",
"CZ-422",
"CZ-423",
"CZ-424",
"CZ-425",
"CZ-426",
"CZ-427",
"CZ-51",
"CZ-511",
"CZ-512",
"CZ-513",
"CZ-514",
"CZ-52",
"CZ-521",
"CZ-522",
"CZ-523",
"CZ-524",
"CZ-525",
"CZ-53",
"CZ-531",
"CZ-532",
"CZ-533",
"CZ-534",
"CZ-63",
"CZ-631",
"CZ-632",
"CZ-633",
"CZ-634",
"CZ-635",
"CZ-64",
"CZ-641",
"CZ-642",
"CZ-643",
"CZ-644",
"CZ-645",
"CZ-646",
"CZ-647",
"CZ-71",
"CZ-711",
"CZ-712",
"CZ-713",
"CZ-714",
"CZ-715",
"CZ-72",
"CZ-721",
"CZ-722",
"CZ-723",
"CZ-724",
"CZ-80",
"CZ-801",
"CZ-802",
"CZ-803",
"CZ-804",
"CZ-805",
"CZ-806",
"DE-BB",
"DE-BE",
"DE-BW",
"DE-BY",
"DE-HB",
"DE-HE",
"DE-HH",
"DE-MV",
"DE-NI",
"DE-NW",
"DE-RP",
"DE-SH",
"DE-SL",
"DE-SN",
"DE-ST",
"DE-TH",
"DJ-AR",
"DJ-AS",
"DJ-DI",
"DJ-DJ",
"DJ-OB",
"DJ-TA",
"DK-81",
"DK-82",
"DK-83",
"DK-84",
"DK-85",
"DM-02",
"DM-03",
"DM-04",
"DM-05",
"DM-06",
"DM-07",
"DM-08",
"DM-09",
"DM-10",
"DM-11",
"DO-01",
"DO-02",
"DO-03",
"DO-04",
"DO-05",
"DO-06",
"DO-07",
"DO-08",
"DO-09",
"DO-10",
"DO-11",
"DO-12",
"DO-13",
"DO-14",
"DO-15",
"DO-16",
"DO-17",
"DO-18",
"DO-19",
"DO-20",
"DO-21",
"DO-22",
"DO-23",
"DO-24",
"DO-25",
"DO-26",
"DO-27",
"DO-28",
"DO-29",
"DO-30",
"DO-31",
"DO-32",
"DO-33",
"DO-34",
"DO-35",
"DO-36",
"DO-37",
"DO-38",
"DO-39",
"DO-40",
"DO-41",
"DO-42",
"DZ-01",
"DZ-02",
"DZ-03",
"DZ-04",
"DZ-05",
"DZ-06",
"DZ-07",
"DZ-08",
"DZ-09",
"DZ-10",
"DZ-11",
"DZ-12",
"DZ-13",
"DZ-14",
"DZ-15",
"DZ-16",
"DZ-17",
"DZ-18",
"DZ-19",
"DZ-20",
"DZ-21",
"DZ-22",
"DZ-23",
"DZ-24",
"DZ-25",
"DZ-26",
"DZ-27",
"DZ-28",
"DZ-29",
"DZ-30",
"DZ-31",
"DZ-32",
"DZ-33",
"DZ-34",
"DZ-35",
"DZ-36",
"DZ-37",
"DZ-38",
"DZ-39",
"DZ-40",
"DZ-41",
"DZ-42",
"DZ-43",
"DZ-44",
"DZ-45",
"DZ-46",
"DZ-47",
"DZ-48",
"EC-A",
"EC-B",
"EC-C",
"EC-D",
"EC-E",
"EC-F",
"EC-G",
"EC-H",
"EC-I",
"EC-L",
"EC-M",
"EC-N",
"EC-O",
"EC-P",
"EC-R",
"EC-S",
"EC-SD",
"EC-SE",
"EC-T",
"EC-U",
"EC-W",
"EC-X",
"EC-Y",
"EC-Z",
"EE-130",
"EE-141",
"EE-142",
"EE-171",
"EE-184",
"EE-191",
"EE-198",
"EE-205",
"EE-214",
"EE-245",
"EE-247",
"EE-251",
"EE-255",
"EE-272",
"EE-283",
"EE-284",
"EE-291",
"EE-293",
"EE-296",
"EE-303",
"EE-305",
"EE-317",
"EE-321",
"EE-338",
"EE-353",
"EE-37",
"EE-39",
"EE-424",
"EE-430",
"EE-431",
"EE-432",
"EE-441",
"EE-442",
"EE-446",
"EE-45",
"EE-478",
"EE-480",
"EE-486",
"EE-50",
"EE-503",
"EE-511",
"EE-514",
"EE-52",
"EE-528",
"EE-557",
"EE-56",
"EE-567",
"EE-586",
"EE-60",
"EE-615",
"EE-618",
"EE-622",
"EE-624",
"EE-638",
"EE-64",
"EE-651",
"EE-653",
"EE-661",
"EE-663",
"EE-668",
"EE-68",
"EE-689",
"EE-698",
"EE-708",
"EE-71",
"EE-712",
"EE-714",
"EE-719",
"EE-726",
"EE-732",
"EE-735",
"EE-74",
"EE-784",
"EE-79",
"EE-792",
"EE-793",
"EE-796",
"EE-803",
"EE-809",
"EE-81",
"EE-824",
"EE-834",
"EE-84",
"EE-855",
"EE-87",
"EE-890",
"EE-897",
"EE-899",
"EE-901",
"EE-903",
"EE-907",
"EE-917",
"EE-919",
"EE-928",
"EG-ALX",
"EG-ASN",
"EG-AST",
"EG-BA",
"EG-BH",
"EG-BNS",
"EG-C",
"EG-DK",
"EG-DT",
"EG-FYM",
"EG-GH",
"EG-GZ",
"EG-IS",
"EG-JS",
"EG-KB",
"EG-KFS",
"EG-KN",
"EG-LX",
"EG-MN",
"EG-MNF",
"EG-MT",
"EG-PTS",
"EG-SHG",
"EG-SHR",
"EG-SIN",
"EG-SUZ",
"EG-WAD",
"ER-AN",
"ER-DK",
"ER-DU",
"ER-GB",
"ER-MA",
"ER-SK",
"ES-A",
"ES-AB",
"ES-AL",
"ES-AN",
"ES-AR",
"ES-AS",
"ES-AV",
"ES-B",
"ES-BA",
"ES-BI",
"ES-BU",
"ES-C",
"ES-CA",
"ES-CB",
"ES-CC",
"ES-CE",
"ES-CL",
"ES-CM",
"ES-CN",
"ES-CO",
"ES-CR",
"ES-CS",
"ES-CT",
"ES-CU",
"ES-EX",
"ES-GA",
"ES-GC",
"ES-GI",
"ES-GR",
"ES-GU",
"ES-H",
"ES-HU",
"ES-IB",
"ES-J",
"ES-L",
"ES-LE",
"ES-LO",
"ES-LU",
"ES-M",
"ES-MA",
"ES-MC",
"ES-MD",
"ES-ML",
"ES-MU",
"ES-NA",
"ES-NC",
"ES-O",
"ES-OR",
"ES-P",
"ES-PM",
"ES-PO",
"ES-PV",
"ES-RI",
"ES-S",
"ES-SA",
"ES-SE",
"ES-SG",
"ES-SO",
"ES-SS",
"ES-T",
"ES-TE",
"ES-TF",
"ES-TO",
"ES-V",
"ES-VA",
"ES-VC",
"ES-VI",
"ES-Z",
"ES-ZA",
"ET-AA",
"ET-AF",
"ET-AM",
"ET-BE",
"ET-DD",
"ET-GA",
"ET-HA",
"ET-OR",
"ET-SN",
"ET-SO",
"ET-TI",
"FI-01",
"FI-02",
"FI-03",
"FI-04",
"FI-05",
"FI-06",
"FI-07",
"FI-08",
"FI-09",
"FI-10",
"FI-11",
"FI-12",
"FI-13",
"FI-14",
"FI-15",
"FI-16",
"FI-17",
"FI-18",
"FI-19",
"FJ-01",
"FJ-02",
"FJ-03",
"FJ-04",
"FJ-05",
"FJ-06",
"FJ-07",
"FJ-08",
"FJ-09",
"FJ-10",
"FJ-11",
"FJ-12",
"FJ-13",
"FJ-14",
"FJ-C",
"FJ-E",
"FJ-N",
"FJ-R",
"FJ-W",
"FM-KSA",
"FM-PNI",
"FM-TRK",
"FM-YAP",
"FR-01",
"FR-02",
"FR-03",
"FR-04",
"FR-05",
"FR-06",
"FR-07",
"FR-08",
"FR-09",
"FR-10",
"FR-11",
"FR-12",
"FR-13",
"FR-14",
"FR-15",
"FR-16",
"FR-17",
"FR-18",
"FR-19",
"FR-20R",
"FR-21",
"FR-22",
"FR-23",
"FR-24",
"FR-25",
"FR-26",
"FR-27",
"FR-28",
"FR-29",
"FR-2A",
"FR-2B",
"FR-30",
"FR-31",
"FR-32",
"FR-33",
"FR-34",
"FR-35",
"FR-36",
"FR-37",
"FR-38",
"FR-39",
"FR-40",
"FR-41",
"FR-42",
"FR-43",
"FR-44",
"FR-45",
"FR-46",
"FR-47",
"FR-48",
"FR-49",
"FR-50",
"FR-51",
"FR-52",
"FR-53",
"FR-54",
"FR-55",
"FR-56",
"FR-57",
"FR-58",
"FR-59",
"FR-60",
"FR-61",
"FR-62",
"FR-63",
"FR-64",
"FR-65",
"FR-66",
"FR-67",
"FR-68",
"FR-69",
"FR-70",
"FR-71",
"FR-72",
"FR-73",
"FR-74",
"FR-75",
"FR-76",
"FR-77",
"FR-78",
"FR-79",
"FR-80",
"FR-81",
"FR-82",
"FR-83",
"FR-84",
"FR-85",
"FR-86",
"FR-87",
"FR-88",
"FR-89",
"FR-90",
"FR-91",
"FR-92",
"FR-93",
"FR-94",
"FR-95",
"FR-971",
"FR-972",
"FR-973",
"FR-974",
"FR-976",
"FR-ARA",
"FR-BFC",
"FR-BL",
"FR-BRE",
"FR-CP",
"FR-CVL",
"FR-GES",
"FR-GF",
"FR-GP",
"FR-HDF",
"FR-IDF",
"FR-MF",
"FR-MQ",
"FR-NAQ",
"FR-NC",
"FR-NOR",
"FR-OCC",
"FR-PAC",
"FR-PDL",
"FR-PF",
"FR-PM",
"FR-RE",
"FR-TF",
"FR-WF",
"FR-YT",
"GA-1",
"GA-2",
"GA-3",
"GA-4",
"GA-5",
"GA-6",
"GA-7",
"GA-8",
"GA-9",
"GB-ABC",
"GB-ABD",
"GB-ABE",
"GB-AGB",
"GB-AGY",
"GB-AND",
"GB-ANN",
"GB-ANS",
"GB-BAS",
"GB-BBD",
"GB-BCP",
"GB-BDF",
"GB-BDG",
"GB-BEN",
"GB-BEX",
"GB-BFS",
"GB-BGE",
"GB-BGW",
"GB-BIR",
"GB-BKM",
"GB-BNE",
"GB-BNH",
"GB-BNS",
"GB-BOL",
"GB-BPL",
"GB-BRC",
"GB-BRD",
"GB-BRY",
"GB-BST",
"GB-BUR",
"GB-CAM",
"GB-CAY",
"GB-CBF",
"GB-CCG",
"GB-CGN",
"GB-CHE",
"GB-CHW",
"GB-CLD",
"GB-CLK",
"GB-CMA",
"GB-CMD",
"GB-CMN",
"GB-CON",
"GB-COV",
"GB-CRF",
"GB-CRY",
"GB-CWY",
"GB-DAL",
"GB-DBY",
"GB-DEN",
"GB-DER",
"GB-DEV",
"GB-DGY",
"GB-DNC",
"GB-DND",
"GB-DOR",
"GB-DRS",
"GB-DUD",
"GB-DUR",
"GB-EAL",
"GB-EAW",
"GB-EAY",
"GB-EDH",
"GB-EDU",
"GB-ELN",
"GB-ELS",
"GB-ENF",
"GB-ENG",
"GB-ERW",
"GB-ERY",
"GB-ESS",
"GB-ESX",
"GB-FAL",
"GB-FIF",
"GB-FLN",
"GB-FMO",
"GB-GAT",
"GB-GBN",
"GB-GLG",
"GB-GLS",
"GB-GRE",
"GB-GWN",
"GB-HAL",
"GB-HAM",
"GB-HAV",
"GB-HCK",
"GB-HEF",
"GB-HIL",
"GB-HLD",
"GB-HMF",
"GB-HNS",
"GB-HPL",
"GB-HRT",
"GB-HRW",
"GB-HRY",
"GB-IOS",
"GB-IOW",
"GB-ISL",
"GB-IVC",
"GB-KEC",
"GB-KEN",
"GB-KHL",
"GB-KIR",
"GB-KTT",
"GB-KWL",
"GB-LAN",
"GB-LBC",
"GB-LBH",
"GB-LCE",
"GB-LDS",
"GB-LEC",
"GB-LEW",
"GB-LIN",
"GB-LIV",
"GB-LND",
"GB-LUT",
"GB-MAN",
"GB-MDB",
"GB-MDW",
"GB-MEA",
"GB-MIK",
"GB-MLN",
"GB-MON",
"GB-MRT",
"GB-MRY",
"GB-MTY",
"GB-MUL",
"GB-NAY",
"GB-NBL",
"GB-NEL",
"GB-NET",
"GB-NFK",
"GB-NGM",
"GB-NIR",
"GB-NLK",
"GB-NLN",
"GB-NMD",
"GB-NSM",
"GB-NTH",
"GB-NTL",
"GB-NTT",
"GB-NTY",
"GB-NWM",
"GB-NWP",
"GB-NYK",
"GB-OLD",
"GB-ORK",
"GB-OXF",
"GB-PEM",
"GB-PKN",
"GB-PLY",
"GB-POR",
"GB-POW",
"GB-PTE",
"GB-RCC",
"GB-RCH",
"GB-RCT",
"GB-RDB",
"GB-RDG",
"GB-RFW",
"GB-RIC",
"GB-ROT",
"GB-RUT",
"GB-SAW",
"GB-SAY",
"GB-SCB",
"GB-SCT",
"GB-SFK",
"GB-SFT",
"GB-SGC",
"GB-SHF",
"GB-SHN",
"GB-SHR",
"GB-SKP",
"GB-SLF",
"GB-SLG",
"GB-SLK",
"GB-SND",
"GB-SOL",
"GB-SOM",
"GB-SOS",
"GB-SRY",
"GB-STE",
"GB-STG",
"GB-STH",
"GB-STN",
"GB-STS",
"GB-STT",
"GB-STY",
"GB-SWA",
"GB-SWD",
"GB-SWK",
"GB-TAM",
"GB-TFW",
"GB-THR",
"GB-TOB",
"GB-TOF",
"GB-TRF",
"GB-TWH",
"GB-UKM",
"GB-VGL",
"GB-WAR",
"GB-WBK",
"GB-WDU",
"GB-WFT",
"GB-WGN",
"GB-WIL",
"GB-WKF",
"GB-WLL",
"GB-WLN",
"GB-WLS",
"GB-WLV",
"GB-WND",
"GB-WNM",
"GB-WOK",
"GB-WOR",
"GB-WRL",
"GB-WRT",
"GB-WRX",
"GB-WSM",
"GB-WSX",
"GB-YOR",
"GB-ZET",
"GD-01",
"GD-02",
"GD-03",
"GD-04",
"GD-05",
"GD-06",
"GD-10",
"GE-AB",
"GE-AJ",
"GE-GU",
"GE-IM",
"GE-KA",
"GE-KK",
"GE-MM",
"GE-RL",
"GE-SJ",
"GE-SK",
"GE-SZ",
"GE-TB",
"GH-AA",
"GH-AF",
"GH-AH",
"GH-BA",
"GH-BE",
"GH-BO",
"GH-CP",
"GH-EP",
"GH-NE",
"GH-NP",
"GH-OT",
"GH-SV",
"GH-TV",
"GH-UE",
"GH-UW",
"GH-WN",
"GH-WP",
"GL-AV",
"GL-KU",
"GL-QE",
"GL-QT",
"GL-SM",
"GM-B",
"GM-L",
"GM-M",
"GM-N",
"GM-U",
"GM-W",
"GN-B",
"GN-BE",
"GN-BF",
"GN-BK",
"GN-C",
"GN-CO",
"GN-D",
"GN-DB",
"GN-DI",
"GN-DL",
"GN-DU",
"GN-F",
"GN-FA",
"GN-FO",
"GN-FR",
"GN-GA",
"GN-GU",
"GN-K",
"GN-KA",
"GN-KB",
"GN-KD",
"GN-KE",
"GN-KN",
"GN-KO",
"GN-KS",
"GN-L",
"GN-LA",
"GN-LE",
"GN-LO",
"GN-M",
"GN-MC",
"GN-MD",
"GN-ML",
"GN-MM",
"GN-N",
"GN-NZ",
"GN-PI",
"GN-SI",
"GN-TE",
"GN-TO",
"GN-YO",
"GQ-AN",
"GQ-BN",
"GQ-BS",
"GQ-C",
"GQ-CS",
"GQ-DJ",
"GQ-I",
"GQ-KN",
"GQ-LI",
"GQ-WN",
"GR-69",
"GR-A",
"GR-B",
"GR-C",
"GR-D",
"GR-E",
"GR-F",
"GR-G",
"GR-H",
"GR-I",
"GR-J",
"GR-K",
"GR-L",
"GR-M",
"GT-AV",
"GT-BV",
"GT-CM",
"GT-CQ",
"GT-ES",
"GT-GU",
"GT-HU",
"GT-IZ",
"GT-JA",
"GT-JU",
"GT-PE",
"GT-PR",
"GT-QC",
"GT-QZ",
"GT-RE",
"GT-SA",
"GT-SM",
"GT-SO",
"GT-SR",
"GT-SU",
"GT-TO",
"GT-ZA",
"GW-BA",
"GW-BL",
"GW-BM",
"GW-BS",
"GW-CA",
"GW-GA",
"GW-L",
"GW-N",
"GW-OI",
"GW-QU",
"GW-S",
"GW-TO",
"GY-BA",
"GY-CU",
"GY-DE",
"GY-EB",
"GY-ES",
"GY-MA",
"GY-PM",
"GY-PT",
"GY-UD",
"GY-UT",
"HN-AT",
"HN-CH",
"HN-CL",
"HN-CM",
"HN-CP",
"HN-CR",
"HN-EP",
"HN-FM",
"HN-GD",
"HN-IB",
"HN-IN",
"HN-LE",
"HN-LP",
"HN-OC",
"HN-OL",
"HN-SB",
"HN-VA",
"HN-YO",
"HR-01",
"HR-02",
"HR-03",
"HR-04",
"HR-05",
"HR-06",
"HR-07",
"HR-08",
"HR-09",
"HR-10",
"HR-11",
"HR-12",
"HR-13",
"HR-14",
"HR-15",
"HR-16",
"HR-17",
"HR-18",
"HR-19",
"HR-20",
"HR-21",
"HT-AR",
"HT-CE",
"HT-GA",
"HT-ND",
"HT-NE",
"HT-NI",
"HT-NO",
"HT-OU",
"HT-SD",
"HT-SE",
"HU-BA",
"HU-BC",
"HU-BE",
"HU-BK",
"HU-BU",
"HU-BZ",
"HU-CS",
"HU-DE",
"HU-DU",
"HU-EG",
"HU-ER",
"HU-FE",
"HU-GS",
"HU-GY",
"HU-HB",
"HU-HE",
"HU-HV",
"HU-JN",
"HU-KE",
"HU-KM",
"HU-KV",
"HU-MI",
"HU-NK",
"HU-NO",
"HU-NY",
"HU-PE",
"HU-PS",
"HU-SD",
"HU-SF",
"HU-SH",
"HU-SK",
"HU-SN",
"HU-SO",
"HU-SS",
"HU-ST",
"HU-SZ",
"HU-TB",
"HU-TO",
"HU-VA",
"HU-VE",
"HU-VM",
"HU-ZA",
"HU-ZE",
"ID-AC",
"ID-BA",
"ID-BB",
"ID-BE",
"ID-BT",
"ID-GO",
"ID-JA",
"ID-JB",
"ID-JI",
"ID-JK",
"ID-JT",
"ID-JW",
"ID-KA",
"ID-KB",
"ID-KI",
"ID-KR",
"ID-KS",
"ID-KT",
"ID-KU",
"ID-LA",
"ID-MA",
"ID-ML",
"ID-MU",
"ID-NB",
"ID-NT",
"ID-NU",
"ID-PA",
"ID-PB",
"ID-PP",
"ID-RI",
"ID-SA",
"ID-SB",
"ID-SG",
"ID-SL",
"ID-SM",
"ID-SN",
"ID-SR",
"ID-SS",
"ID-ST",
"ID-SU",
"ID-YO",
"IE-C",
"IE-CE",
"IE-CN",
"IE-CO",
"IE-CW",
"IE-D",
"IE-DL",
"IE-G",
"IE-KE",
"IE-KK",
"IE-KY",
"IE-L",
"IE-LD",
"IE-LH",
"IE-LK",
"IE-LM",
"IE-LS",
"IE-M",
"IE-MH",
"IE-MN",
"IE-MO",
"IE-OY",
"IE-RN",
"IE-SO",
"IE-TA",
"IE-U",
"IE-WD",
"IE-WH",
"IE-WW",
"IE-WX",
"IL-D",
"IL-HA",
"IL-JM",
"IL-M",
"IL-TA",
"IL-Z",
"IN-AN",
"IN-AP",
"IN-AR",
"IN-AS",
"IN-BR",
"IN-CH",
"IN-CT",
"IN-DH",
"IN-DL",
"IN-GA",
"IN-GJ",
"IN-HP",
"IN-HR",
"IN-JH",
"IN-JK",
"IN-KA",
"IN-KL",
"IN-LA",
"IN-LD",
"IN-MH",
"IN-ML",
"IN-MN",
"IN-MP",
"IN-MZ",
"IN-NL",
"IN-OR",
"IN-PB",
"IN-PY",
"IN-RJ",
"IN-SK",
"IN-TG",
"IN-TN",
"IN-TR",
"IN-UP",
"IN-UT",
"IN-WB",
"IQ-AN",
"IQ-AR",
"IQ-BA",
"IQ-BB",
"IQ-BG",
"IQ-DA",
"IQ-DI",
"IQ-DQ",
"IQ-HA",
"IQ-KA",
"IQ-KI",
"IQ-MA",
"IQ-MU",
"IQ-NA",
"IQ-NI",
"IQ-QA",
"IQ-SD",
"IQ-SU",
"IQ-WA",
"IR-00",
"IR-01",
"IR-02",
"IR-03",
"IR-04",
"IR-05",
"IR-06",
"IR-07",
"IR-08",
"IR-09",
"IR-10",
"IR-11",
"IR-12",
"IR-13",
"IR-14",
"IR-15",
"IR-16",
"IR-17",
"IR-18",
"IR-19",
"IR-20",
"IR-21",
"IR-22",
"IR-23",
"IR-24",
"IR-25",
"IR-26",
"IR-27",
"IR-28",
"IR-29",
"IR-30",
"IS-1",
"IS-2",
"IS-3",
"IS-4",
"IS-5",
"IS-6",
"IS-7",
"IS-8",
"IS-AKH",
"IS-AKN",
"IS-AKU",
"IS-ARN",
"IS-ASA",
"IS-BFJ",
"IS-BLA",
"IS-BLO",
"IS-BOG",
"IS-BOL",
"IS-DAB",
"IS-DAV",
"IS-DJU",
"IS-EOM",
"IS-EYF",
"IS-FJD",
"IS-FJL",
"IS-FLA",
"IS-FLD",
"IS-FLR",
"IS-GAR",
"IS-GOG",
"IS-GRN",
"IS-GRU",
"IS-GRY",
"IS-HAF",
"IS-HEL",
"IS-HRG",
"IS-HRU",
"IS-HUT",
"IS-HUV",
"IS-HVA",
"IS-HVE",
"IS-ISA",
"IS-KAL",
"IS-KJO",
"IS-KOP",
"IS-LAN",
"IS-MOS",
"IS-MYR",
"IS-NOR",
"IS-RGE",
"IS-RGY",
"IS-RHH",
"IS-RKN",
"IS-RKV",
"IS-SBH",
"IS-SBT",
"IS-SDN",
"IS-SDV",
"IS-SEL",
"IS-SEY",
"IS-SFA",
"IS-SHF",
"IS-SKF",
"IS-SKG",
"IS-SKO",
"IS-SKU",
"IS-SNF",
"IS-SOG",
"IS-SOL",
"IS-SSF",
"IS-SSS",
"IS-STR",
"IS-STY",
"IS-SVG",
"IS-TAL",
"IS-THG",
"IS-TJO",
"IS-VEM",
"IS-VER",
"IS-VOP",
"IT-21",
"IT-23",
"IT-25",
"IT-32",
"IT-34",
"IT-36",
"IT-42",
"IT-45",
"IT-52",
"IT-55",
"IT-57",
"IT-62",
"IT-65",
"IT-67",
"IT-72",
"IT-75",
"IT-77",
"IT-78",
"IT-82",
"IT-88",
"IT-AG",
"IT-AL",
"IT-AN",
"IT-AP",
"IT-AQ",
"IT-AR",
"IT-AT",
"IT-AV",
"IT-BA",
"IT-BG",
"IT-BI",
"IT-BL",
"IT-BN",
"IT-BO",
"IT-BR",
"IT-BS",
"IT-BT",
"IT-BZ",
"IT-CA",
"IT-CB",
"IT-CE",
"IT-CH",
"IT-CL",
"IT-CN",
"IT-CO",
"IT-CR",
"IT-CS",
"IT-CT",
"IT-CZ",
"IT-EN",
"IT-FC",
"IT-FE",
"IT-FG",
"IT-FI",
"IT-FM",
"IT-FR",
"IT-GE",
"IT-GO",
"IT-GR",
"IT-IM",
"IT-IS",
"IT-KR",
"IT-LC",
"IT-LE",
"IT-LI",
"IT-LO",
"IT-LT",
"IT-LU",
"IT-MB",
"IT-MC",
"IT-ME",
"IT-MI",
"IT-MN",
"IT-MO",
"IT-MS",
"IT-MT",
"IT-NA",
"IT-NO",
"IT-NU",
"IT-OR",
"IT-PA",
"IT-PC",
"IT-PD",
"IT-PE",
"IT-PG",
"IT-PI",
"IT-PN",
"IT-PO",
"IT-PR",
"IT-PT",
"IT-PU",
"IT-PV",
"IT-PZ",
"IT-RA",
"IT-RC",
"IT-RE",
"IT-RG",
"IT-RI",
"IT-RM",
"IT-RN",
"IT-RO",
"IT-SA",
"IT-SI",
"IT-SO",
"IT-SP",
"IT-SR",
"IT-SS",
"IT-SU",
"IT-SV",
"IT-TA",
"IT-TE",
"IT-TN",
"IT-TO",
"IT-TP",
"IT-TR",
"IT-TS",
"IT-TV",
"IT-UD",
"IT-VA",
"IT-VB",
"IT-VC",
"IT-VE",
"IT-VI",
"IT-VR",
"IT-VT",
"IT-VV",
"JM-01",
"JM-02",
"JM-03",
"JM-04",
"JM-05",
"JM-06",
"JM-07",
"JM-08",
"JM-09",
"JM-10",
"JM-11",
"JM-12",
"JM-13",
"JM-14",
"JO-AJ",
"JO-AM",
"JO-AQ",
"JO-AT",
"JO-AZ",
"JO-BA",
"JO-IR",
"JO-JA",
"JO-KA",
"JO-MA",
"JO-MD",
"JO-MN",
"JP-01",
"JP-02",
"JP-03",
"JP-04",
"JP-05",
"JP-06",
"JP-07",
"JP-08",
"JP-09",
"JP-10",
"JP-11",
"JP-12",
"JP-13",
"JP-14",
"JP-15",
"JP-16",
"JP-17",
"JP-18",
"JP-19",
"JP-20",
"JP-21",
"JP-22",
"JP-23",
"JP-24",
"JP-25",
"JP-26",
"JP-27",
"JP-28",
"JP-29",
"JP-30",
"JP-31",
"JP-32",
"JP-33",
"JP-34",
"JP-35",
"JP-36",
"JP-37",
"JP-38",
"JP-39",
"JP-40",
"JP-41",
"JP-42",
"JP-43",
"JP-44",
"JP-45",
"JP-46",
"JP-47",
"KE-01",
"KE-02",
"KE-03",
"KE-04",
"KE-05",
"KE-06",
"KE-07",
"KE-08",
"KE-09",
"KE-10",
"KE-11",
"KE-12",
"KE-13",
"KE-14",
"KE-15",
"KE-16",
"KE-17",
"KE-18",
"KE-19",
"KE-20",
"KE-21",
"KE-22",
"KE-23",
"KE-24",
"KE-25",
"KE-26",
"KE-27",
"KE-28",
"KE-29",
"KE-30",
"KE-31",
"KE-32",
"KE-33",
"KE-34",
"KE-35",
"KE-36",
"KE-37",
"KE-38",
"KE-39",
"KE-40",
"KE-41",
"KE-42",
"KE-43",
"KE-44",
"KE-45",
"KE-46",
"KE-47",
"KG-B",
"KG-C",
"KG-GB",
"KG-GO",
"KG-J",
"KG-N",
"KG-O",
"KG-T",
"KG-Y",
"KH-1",
"KH-10",
"KH-11",
"KH-12",
"KH-13",
"KH-14",
"KH-15",
"KH-16",
"KH-17",
"KH-18",
"KH-19",
"KH-2",
"KH-20",
"KH-21",
"KH-22",
"KH-23",
"KH-24",
"KH-25",
"KH-3",
"KH-4",
"KH-5",
"KH-6",
"KH-7",
"KH-8",
"KH-9",
"KI-G",
"KI-L",
"KI-P",
"KM-A",
"KM-G",
"KM-M",
"KN-01",
"KN-02",
"KN-03",
"KN-04",
"KN-05",
"KN-06",
"KN-07",
"KN-08",
"KN-09",
"KN-10",
"KN-11",
"KN-12",
"KN-13",
"KN-15",
"KN-K",
"KN-N",
"KP-01",
"KP-02",
"KP-03",
"KP-04",
"KP-05",
"KP-06",
"KP-07",
"KP-08",
"KP-09",
"KP-10",
"KP-13",
"KP-14",
"KR-11",
"KR-26",
"KR-27",
"KR-28",
"KR-29",
"KR-30",
"KR-31",
"KR-41",
"KR-42",
"KR-43",
"KR-44",
"KR-45",
"KR-46",
"KR-47",
"KR-48",
"KR-49",
"KR-50",
"KW-AH",
"KW-FA",
"KW-HA",
"KW-JA",
"KW-KU",
"KW-MU",
"KZ-AKM",
"KZ-AKT",
"KZ-ALA",
"KZ-ALM",
"KZ-AST",
"KZ-ATY",
"KZ-KAR",
"KZ-KUS",
"KZ-KZY",
"KZ-MAN",
"KZ-PAV",
"KZ-SEV",
"KZ-SHY",
"KZ-VOS",
"KZ-YUZ",
"KZ-ZAP",
"KZ-ZHA",
"LA-AT",
"LA-BK",
"LA-BL",
"LA-CH",
"LA-HO",
"LA-KH",
"LA-LM",
"LA-LP",
"LA-OU",
"LA-PH",
"LA-SL",
"LA-SV",
"LA-VI",
"LA-VT",
"LA-XA",
"LA-XE",
"LA-XI",
"LA-XS",
"LB-AK",
"LB-AS",
"LB-BA",
"LB-BH",
"LB-BI",
"LB-JA",
"LB-JL",
"LB-NA",
"LC-01",
"LC-02",
"LC-03",
"LC-05",
"LC-06",
"LC-07",
"LC-08",
"LC-10",
"LC-11",
"LC-12",
"LI-01",
"LI-02",
"LI-03",
"LI-04",
"LI-05",
"LI-06",
"LI-07",
"LI-08",
"LI-09",
"LI-10",
"LI-11",
"LK-1",
"LK-11",
"LK-12",
"LK-13",
"LK-2",
"LK-21",
"LK-22",
"LK-23",
"LK-3",
"LK-31",
"LK-32",
"LK-33",
"LK-4",
"LK-41",
"LK-42",
"LK-43",
"LK-44",
"LK-45",
"LK-5",
"LK-51",
"LK-52",
"LK-53",
"LK-6",
"LK-61",
"LK-62",
"LK-7",
"LK-71",
"LK-72",
"LK-8",
"LK-81",
"LK-82",
"LK-9",
"LK-91",
"LK-92",
"LR-BG",
"LR-BM",
"LR-CM",
"LR-GB",
"LR-GG",
"LR-GK",
"LR-GP",
"LR-LO",
"LR-MG",
"LR-MO",
"LR-MY",
"LR-NI",
"LR-RG",
"LR-RI",
"LR-SI",
"LS-A",
"LS-B",
"LS-C",
"LS-D",
"LS-E",
"LS-F",
"LS-G",
"LS-H",
"LS-J",
"LS-K",
"LT-01",
"LT-02",
"LT-03",
"LT-04",
"LT-05",
"LT-06",
"LT-07",
"LT-08",
"LT-09",
"LT-10",
"LT-11",
"LT-12",
"LT-13",
"LT-14",
"LT-15",
"LT-16",
"LT-17",
"LT-18",
"LT-19",
"LT-20",
"LT-21",
"LT-22",
"LT-23",
"LT-24",
"LT-25",
"LT-26",
"LT-27",
"LT-28",
"LT-29",
"LT-30",
"LT-31",
"LT-32",
"LT-33",
"LT-34",
"LT-35",
"LT-36",
"LT-37",
"LT-38",
"LT-39",
"LT-40",
"LT-41",
"LT-42",
"LT-43",
"LT-44",
"LT-45",
"LT-46",
"LT-47",
"LT-48",
"LT-49",
"LT-50",
"LT-51",
"LT-52",
"LT-53",
"LT-54",
"LT-55",
"LT-56",
"LT-57",
"LT-58",
"LT-59",
"LT-60",
"LT-AL",
"LT-KL",
"LT-KU",
"LT-MR",
"LT-PN",
"LT-SA",
"LT-TA",
"LT-TE",
"LT-UT",
"LT-VL",
"LU-CA",
"LU-CL",
"LU-DI",
"LU-EC",
"LU-ES",
"LU-GR",
"LU-LU",
"LU-ME",
"LU-RD",
"LU-RM",
"LU-VD",
"LU-WI",
"LV-001",
"LV-002",
"LV-003",
"LV-004",
"LV-005",
"LV-006",
"LV-007",
"LV-008",
"LV-009",
"LV-010",
"LV-011",
"LV-012",
"LV-013",
"LV-014",
"LV-015",
"LV-016",
"LV-017",
"LV-018",
"LV-019",
"LV-020",
"LV-021",
"LV-022",
"LV-023",
"LV-024",
"LV-025",
"LV-026",
"LV-027",
"LV-028",
"LV-029",
"LV-030",
"LV-031",
"LV-032",
"LV-033",
"LV-034",
"LV-035",
"LV-036",
"LV-037",
"LV-038",
"LV-039",
"LV-040",
"LV-041",
"LV-042",
"LV-043",
"LV-044",
"LV-045",
"LV-046",
"LV-047",
"LV-048",
"LV-049",
"LV-050",
"LV-051",
"LV-052",
"LV-053",
"LV-054",
"LV-055",
"LV-056",
"LV-057",
"LV-058",
"LV-059",
"LV-060",
"LV-061",
"LV-062",
"LV-063",
"LV-064",
"LV-065",
"LV-066",
"LV-067",
"LV-068",
"LV-069",
"LV-070",
"LV-071",
"LV-072",
"LV-073",
"LV-074",
"LV-075",
"LV-076",
"LV-077",
"LV-078",
"LV-079",
"LV-080",
"LV-081",
"LV-082",
"LV-083",
"LV-084",
"LV-085",
"LV-086",
"LV-087",
"LV-088",
"LV-089",
"LV-090",
"LV-091",
"LV-092",
"LV-093",
"LV-094",
"LV-095",
"LV-096",
"LV-097",
"LV-098",
"LV-099",
"LV-100",
"LV-101",
"LV-102",
"LV-103",
"LV-104",
"LV-105",
"LV-106",
"LV-107",
"LV-108",
"LV-109",
"LV-110",
"LV-DGV",
"LV-JEL",
"LV-JKB",
"LV-JUR",
"LV-LPX",
"LV-REZ",
"LV-RIX",
"LV-VEN",
"LV-VMR",
"LY-BA",
"LY-BU",
"LY-DR",
"LY-GT",
"LY-JA",
"LY-JG",
"LY-JI",
"LY-JU",
"LY-KF",
"LY-MB",
"LY-MI",
"LY-MJ",
"LY-MQ",
"LY-NL",
"LY-NQ",
"LY-SB",
"LY-SR",
"LY-TB",
"LY-WA",
"LY-WD",
"LY-WS",
"LY-ZA",
"MA-01",
"MA-02",
"MA-03",
"MA-04",
"MA-05",
"MA-06",
"MA-07",
"MA-08",
"MA-09",
"MA-10",
"MA-11",
"MA-12",
"MA-AGD",
"MA-AOU",
"MA-ASZ",
"MA-AZI",
"MA-BEM",
"MA-BER",
"MA-BES",
"MA-BOD",
"MA-BOM",
"MA-BRR",
"MA-CAS",
"MA-CHE",
"MA-CHI",
"MA-CHT",
"MA-DRI",
"MA-ERR",
"MA-ESI",
"MA-ESM",
"MA-FAH",
"MA-FES",
"MA-FIG",
"MA-FQH",
"MA-GUE",
"MA-GUF",
"MA-HAJ",
"MA-HAO",
"MA-HOC",
"MA-IFR",
"MA-INE",
"MA-JDI",
"MA-JRA",
"MA-KEN",
"MA-KES",
"MA-KHE",
"MA-KHN",
"MA-KHO",
"MA-LAA",
"MA-LAR",
"MA-MAR",
"MA-MDF",
"MA-MED",
"MA-MEK",
"MA-MID",
"MA-MOH",
"MA-MOU",
"MA-NAD",
"MA-NOU",
"MA-OUA",
"MA-OUD",
"MA-OUJ",
"MA-OUZ",
"MA-RAB",
"MA-REH",
"MA-SAF",
"MA-SAL",
"MA-SEF",
"MA-SET",
"MA-SIB",
"MA-SIF",
"MA-SIK",
"MA-SIL",
"MA-SKH",
"MA-TAF",
"MA-TAI",
"MA-TAO",
"MA-TAR",
"MA-TAT",
"MA-TAZ",
"MA-TET",
"MA-TIN",
"MA-TIZ",
"MA-TNG",
"MA-TNT",
"MA-YUS",
"MA-ZAG",
"MC-CL",
"MC-CO",
"MC-FO",
"MC-GA",
"MC-JE",
"MC-LA",
"MC-MA",
"MC-MC",
"MC-MG",
"MC-MO",
"MC-MU",
"MC-PH",
"MC-SD",
"MC-SO",
"MC-SP",
"MC-SR",
"MC-VR",
"MD-AN",
"MD-BA",
"MD-BD",
"MD-BR",
"MD-BS",
"MD-CA",
"MD-CL",
"MD-CM",
"MD-CR",
"MD-CS",
"MD-CT",
"MD-CU",
"MD-DO",
"MD-DR",
"MD-DU",
"MD-ED",
"MD-FA",
"MD-FL",
"MD-GA",
"MD-GL",
"MD-HI",
"MD-IA",
"MD-LE",
"MD-NI",
"MD-OC",
"MD-OR",
"MD-RE",
"MD-RI",
"MD-SD",
"MD-SI",
"MD-SN",
"MD-SO",
"MD-ST",
"MD-SV",
"MD-TA",
"MD-TE",
"MD-UN",
"ME-01",
"ME-02",
"ME-03",
"ME-04",
"ME-05",
"ME-06",
"ME-07",
"ME-08",
"ME-09",
"ME-10",
"ME-11",
"ME-12",
"ME-13",
"ME-14",
"ME-15",
"ME-16",
"ME-17",
"ME-18",
"ME-19",
"ME-20",
"ME-21",
"ME-22",
"ME-23",
"ME-24",
"MG-A",
"MG-D",
"MG-F",
"MG-M",
"MG-T",
"MG-U",
"MH-ALK",
"MH-ALL",
"MH-ARN",
"MH-AUR",
"MH-EBO",
"MH-ENI",
"MH-JAB",
"MH-JAL",
"MH-KIL",
"MH-KWA",
"MH-L",
"MH-LAE",
"MH-LIB",
"MH-LIK",
"MH-MAJ",
"MH-MAL",
"MH-MEJ",
"MH-MIL",
"MH-NMK",
"MH-NMU",
"MH-RON",
"MH-T",
"MH-UJA",
"MH-UTI",
"MH-WTH",
"MH-WTJ",
"MK-101",
"MK-102",
"MK-103",
"MK-104",
"MK-105",
"MK-106",
"MK-107",
"MK-108",
"MK-109",
"MK-201",
"MK-202",
"MK-203",
"MK-204",
"MK-205",
"MK-206",
"MK-207",
"MK-208",
"MK-209",
"MK-210",
"MK-211",
"MK-301",
"MK-303",
"MK-304",
"MK-307",
"MK-308",
"MK-310",
"MK-311",
"MK-312",
"MK-313",
"MK-401",
"MK-402",
"MK-403",
"MK-404",
"MK-405",
"MK-406",
"MK-407",
"MK-408",
"MK-409",
"MK-410",
"MK-501",
"MK-502",
"MK-503",
"MK-504",
"MK-505",
"MK-506",
"MK-507",
"MK-508",
"MK-509",
"MK-601",
"MK-602",
"MK-603",
"MK-604",
"MK-605",
"MK-606",
"MK-607",
"MK-608",
"MK-609",
"MK-701",
"MK-702",
"MK-703",
"MK-704",
"MK-705",
"MK-706",
"MK-801",
"MK-802",
"MK-803",
"MK-804",
"MK-805",
"MK-806",
"MK-807",
"MK-808",
"MK-809",
"MK-810",
"MK-811",
"MK-812",
"MK-813",
"MK-814",
"MK-815",
"MK-816",
"MK-817",
"ML-1",
"ML-10",
"ML-2",
"ML-3",
"ML-4",
"ML-5",
"ML-6",
"ML-7",
"ML-8",
"ML-9",
"ML-BKO",
"MM-01",
"MM-02",
"MM-03",
"MM-04",
"MM-05",
"MM-06",
"MM-07",
"MM-11",
"MM-12",
"MM-13",
"MM-14",
"MM-15",
"MM-16",
"MM-17",
"MM-18",
"MN-035",
"MN-037",
"MN-039",
"MN-041",
"MN-043",
"MN-046",
"MN-047",
"MN-049",
"MN-051",
"MN-053",
"MN-055",
"MN-057",
"MN-059",
"MN-061",
"MN-063",
"MN-064",
"MN-065",
"MN-067",
"MN-069",
"MN-071",
"MN-073",
"MN-1",
"MR-01",
"MR-02",
"MR-03",
"MR-04",
"MR-05",
"MR-06",
"MR-07",
"MR-08",
"MR-09",
"MR-10",
"MR-11",
"MR-12",
"MR-13",
"MR-14",
"MR-15",
"MT-01",
"MT-02",
"MT-03",
"MT-04",
"MT-05",
"MT-06",
"MT-07",
"MT-08",
"MT-09",
"MT-10",
"MT-11",
"MT-12",
"MT-13",
"MT-14",
"MT-15",
"MT-16",
"MT-17",
"MT-18",
"MT-19",
"MT-20",
"MT-21",
"MT-22",
"MT-23",
"MT-24",
"MT-25",
"MT-26",
"MT-27",
"MT-28",
"MT-29",
"MT-30",
"MT-31",
"MT-32",
"MT-33",
"MT-34",
"MT-35",
"MT-36",
"MT-37",
"MT-38",
"MT-39",
"MT-40",
"MT-41",
"MT-42",
"MT-43",
"MT-44",
"MT-45",
"MT-46",
"MT-47",
"MT-48",
"MT-49",
"MT-50",
"MT-51",
"MT-52",
"MT-53",
"MT-54",
"MT-55",
"MT-56",
"MT-57",
"MT-58",
"MT-59",
"MT-60",
"MT-61",
"MT-62",
"MT-63",
"MT-64",
"MT-65",
"MT-66",
"MT-67",
"MT-68",
"MU-AG",
"MU-BL",
"MU-CC",
"MU-FL",
"MU-GP",
"MU-MO",
"MU-PA",
"MU-PL",
"MU-PW",
"MU-RO",
"MU-RR",
"MU-SA",
"MV-00",
"MV-01",
"MV-02",
"MV-03",
"MV-04",
"MV-05",
"MV-07",
"MV-08",
"MV-12",
"MV-13",
"MV-14",
"MV-17",
"MV-20",
"MV-23",
"MV-24",
"MV-25",
"MV-26",
"MV-27",
"MV-28",
"MV-29",
"MV-MLE",
"MW-BA",
"MW-BL",
"MW-C",
"MW-CK",
"MW-CR",
"MW-CT",
"MW-DE",
"MW-DO",
"MW-KR",
"MW-KS",
"MW-LI",
"MW-LK",
"MW-MC",
"MW-MG",
"MW-MH",
"MW-MU",
"MW-MW",
"MW-MZ",
"MW-N",
"MW-NB",
"MW-NE",
"MW-NI",
"MW-NK",
"MW-NS",
"MW-NU",
"MW-PH",
"MW-RU",
"MW-S",
"MW-SA",
"MW-TH",
"MW-ZO",
"MX-AGU",
"MX-BCN",
"MX-BCS",
"MX-CAM",
"MX-CHH",
"MX-CHP",
"MX-CMX",
"MX-COA",
"MX-COL",
"MX-DUR",
"MX-GRO",
"MX-GUA",
"MX-HID",
"MX-JAL",
"MX-MEX",
"MX-MIC",
"MX-MOR",
"MX-NAY",
"MX-NLE",
"MX-OAX",
"MX-PUE",
"MX-QUE",
"MX-ROO",
"MX-SIN",
"MX-SLP",
"MX-SON",
"MX-TAB",
"MX-TAM",
"MX-TLA",
"MX-VER",
"MX-YUC",
"MX-ZAC",
"MY-01",
"MY-02",
"MY-03",
"MY-04",
"MY-05",
"MY-06",
"MY-07",
"MY-08",
"MY-09",
"MY-10",
"MY-11",
"MY-12",
"MY-13",
"MY-14",
"MY-15",
"MY-16",
"MZ-A",
"MZ-B",
"MZ-G",
"MZ-I",
"MZ-L",
"MZ-MPM",
"MZ-N",
"MZ-P",
"MZ-Q",
"MZ-S",
"MZ-T",
"NA-CA",
"NA-ER",
"NA-HA",
"NA-KA",
"NA-KE",
"NA-KH",
"NA-KU",
"NA-KW",
"NA-OD",
"NA-OH",
"NA-ON",
"NA-OS",
"NA-OT",
"NA-OW",
"NE-1",
"NE-2",
"NE-3",
"NE-4",
"NE-5",
"NE-6",
"NE-7",
"NE-8",
"NG-AB",
"NG-AD",
"NG-AK",
"NG-AN",
"NG-BA",
"NG-BE",
"NG-BO",
"NG-BY",
"NG-CR",
"NG-DE",
"NG-EB",
"NG-ED",
"NG-EK",
"NG-EN",
"NG-FC",
"NG-GO",
"NG-IM",
"NG-JI",
"NG-KD",
"NG-KE",
"NG-KN",
"NG-KO",
"NG-KT",
"NG-KW",
"NG-LA",
"NG-NA",
"NG-NI",
"NG-OG",
"NG-ON",
"NG-OS",
"NG-OY",
"NG-PL",
"NG-RI",
"NG-SO",
"NG-TA",
"NG-YO",
"NG-ZA",
"NI-AN",
"NI-AS",
"NI-BO",
"NI-CA",
"NI-CI",
"NI-CO",
"NI-ES",
"NI-GR",
"NI-JI",
"NI-LE",
"NI-MD",
"NI-MN",
"NI-MS",
"NI-MT",
"NI-NS",
"NI-RI",
"NI-SJ",
"NL-AW",
"NL-BQ1",
"NL-BQ2",
"NL-BQ3",
"NL-CW",
"NL-DR",
"NL-FL",
"NL-FR",
"NL-GE",
"NL-GR",
"NL-LI",
"NL-NB",
"NL-NH",
"NL-OV",
"NL-SX",
"NL-UT",
"NL-ZE",
"NL-ZH",
"NO-03",
"NO-11",
"NO-15",
"NO-18",
"NO-21",
"NO-22",
"NO-30",
"NO-34",
"NO-38",
"NO-42",
"NO-46",
"NO-50",
"NO-54",
"NP-1",
"NP-2",
"NP-3",
"NP-4",
"NP-5",
"NP-BA",
"NP-BH",
"NP-DH",
"NP-GA",
"NP-JA",
"NP-KA",
"NP-KO",
"NP-LU",
"NP-MA",
"NP-ME",
"NP-NA",
"NP-P1",
"NP-P2",
"NP-P3",
"NP-P4",
"NP-P5",
"NP-P6",
"NP-P7",
"NP-RA",
"NP-SA",
"NP-SE",
"NR-01",
"NR-02",
"NR-03",
"NR-04",
"NR-05",
"NR-06",
"NR-07",
"NR-08",
"NR-09",
"NR-10",
"NR-11",
"NR-12",
"NR-13",
"NR-14",
"NZ-AUK",
"NZ-BOP",
"NZ-CAN",
"NZ-CIT",
"NZ-GIS",
"NZ-HKB",
"NZ-MBH",
"NZ-MWT",
"NZ-NSN",
"NZ-NTL",
"NZ-OTA",
"NZ-STL",
"NZ-TAS",
"NZ-TKI",
"NZ-WGN",
"NZ-WKO",
"NZ-WTC",
"OM-BJ",
"OM-BS",
"OM-BU",
"OM-DA",
"OM-MA",
"OM-MU",
"OM-SJ",
"OM-SS",
"OM-WU",
"OM-ZA",
"OM-ZU",
"PA-1",
"PA-10",
"PA-2",
"PA-3",
"PA-4",
"PA-5",
"PA-6",
"PA-7",
"PA-8",
"PA-9",
"PA-EM",
"PA-KY",
"PA-NB",
"PE-AMA",
"PE-ANC",
"PE-APU",
"PE-ARE",
"PE-AYA",
"PE-CAJ",
"PE-CAL",
"PE-CUS",
"PE-HUC",
"PE-HUV",
"PE-ICA",
"PE-JUN",
"PE-LAL",
"PE-LAM",
"PE-LIM",
"PE-LMA",
"PE-LOR",
"PE-MDD",
"PE-MOQ",
"PE-PAS",
"PE-PIU",
"PE-PUN",
"PE-SAM",
"PE-TAC",
"PE-TUM",
"PE-UCA",
"PG-CPK",
"PG-CPM",
"PG-EBR",
"PG-EHG",
"PG-EPW",
"PG-ESW",
"PG-GPK",
"PG-HLA",
"PG-JWK",
"PG-MBA",
"PG-MPL",
"PG-MPM",
"PG-MRL",
"PG-NCD",
"PG-NIK",
"PG-NPP",
"PG-NSB",
"PG-SAN",
"PG-SHM",
"PG-WBK",
"PG-WHM",
"PG-WPD",
"PH-00",
"PH-01",
"PH-02",
"PH-03",
"PH-05",
"PH-06",
"PH-07",
"PH-08",
"PH-09",
"PH-10",
"PH-11",
"PH-12",
"PH-13",
"PH-14",
"PH-15",
"PH-40",
"PH-41",
"PH-ABR",
"PH-AGN",
"PH-AGS",
"PH-AKL",
"PH-ALB",
"PH-ANT",
"PH-APA",
"PH-AUR",
"PH-BAN",
"PH-BAS",
"PH-BEN",
"PH-BIL",
"PH-BOH",
"PH-BTG",
"PH-BTN",
"PH-BUK",
"PH-BUL",
"PH-CAG",
"PH-CAM",
"PH-CAN",
"PH-CAP",
"PH-CAS",
"PH-CAT",
"PH-CAV",
"PH-CEB",
"PH-COM",
"PH-DAO",
"PH-DAS",
"PH-DAV",
"PH-DIN",
"PH-DVO",
"PH-EAS",
"PH-GUI",
"PH-IFU",
"PH-ILI",
"PH-ILN",
"PH-ILS",
"PH-ISA",
"PH-KAL",
"PH-LAG",
"PH-LAN",
"PH-LAS",
"PH-LEY",
"PH-LUN",
"PH-MAD",
"PH-MAG",
"PH-MAS",
"PH-MDC",
"PH-MDR",
"PH-MOU",
"PH-MSC",
"PH-MSR",
"PH-NCO",
"PH-NEC",
"PH-NER",
"PH-NSA",
"PH-NUE",
"PH-NUV",
"PH-PAM",
"PH-PAN",
"PH-PLW",
"PH-QUE",
"PH-QUI",
"PH-RIZ",
"PH-ROM",
"PH-SAR",
"PH-SCO",
"PH-SIG",
"PH-SLE",
"PH-SLU",
"PH-SOR",
"PH-SUK",
"PH-SUN",
"PH-SUR",
"PH-TAR",
"PH-TAW",
"PH-WSA",
"PH-ZAN",
"PH-ZAS",
"PH-ZMB",
"PH-ZSI",
"PK-BA",
"PK-GB",
"PK-IS",
"PK-JK",
"PK-KP",
"PK-PB",
"PK-SD",
"PK-TA",
"PL-02",
"PL-04",
"PL-06",
"PL-08",
"PL-10",
"PL-12",
"PL-14",
"PL-16",
"PL-18",
"PL-20",
"PL-22",
"PL-24",
"PL-26",
"PL-28",
"PL-30",
"PL-32",
"PS-BTH",
"PS-DEB",
"PS-GZA",
"PS-HBN",
"PS-JEM",
"PS-JEN",
"PS-JRH",
"PS-KYS",
"PS-NBS",
"PS-NGZ",
"PS-QQA",
"PS-RBH",
"PS-RFH",
"PS-SLT",
"PS-TBS",
"PS-TKM",
"PT-01",
"PT-02",
"PT-03",
"PT-04",
"PT-05",
"PT-06",
"PT-07",
"PT-08",
"PT-09",
"PT-10",
"PT-11",
"PT-12",
"PT-13",
"PT-14",
"PT-15",
"PT-16",
"PT-17",
"PT-18",
"PT-20",
"PT-30",
"PW-002",
"PW-004",
"PW-010",
"PW-050",
"PW-100",
"PW-150",
"PW-212",
"PW-214",
"PW-218",
"PW-222",
"PW-224",
"PW-226",
"PW-227",
"PW-228",
"PW-350",
"PW-370",
"PY-1",
"PY-10",
"PY-11",
"PY-12",
"PY-13",
"PY-14",
"PY-15",
"PY-16",
"PY-19",
"PY-2",
"PY-3",
"PY-4",
"PY-5",
"PY-6",
"PY-7",
"PY-8",
"PY-9",
"PY-ASU",
"QA-DA",
"QA-KH",
"QA-MS",
"QA-RA",
"QA-SH",
"QA-US",
"QA-WA",
"QA-ZA",
"RO-AB",
"RO-AG",
"RO-AR",
"RO-B",
"RO-BC",
"RO-BH",
"RO-BN",
"RO-BR",
"RO-BT",
"RO-BV",
"RO-BZ",
"RO-CJ",
"RO-CL",
"RO-CS",
"RO-CT",
"RO-CV",
"RO-DB",
"RO-DJ",
"RO-GJ",
"RO-GL",
"RO-GR",
"RO-HD",
"RO-HR",
"RO-IF",
"RO-IL",
"RO-IS",
"RO-MH",
"RO-MM",
"RO-MS",
"RO-NT",
"RO-OT",
"RO-PH",
"RO-SB",
"RO-SJ",
"RO-SM",
"RO-SV",
"RO-TL",
"RO-TM",
"RO-TR",
"RO-VL",
"RO-VN",
"RO-VS",
"RS-00",
"RS-01",
"RS-02",
"RS-03",
"RS-04",
"RS-05",
"RS-06",
"RS-07",
"RS-08",
"RS-09",
"RS-10",
"RS-11",
"RS-12",
"RS-13",
"RS-14",
"RS-15",
"RS-16",
"RS-17",
"RS-18",
"RS-19",
"RS-20",
"RS-21",
"RS-22",
"RS-23",
"RS-24",
"RS-25",
"RS-26",
"RS-27",
"RS-28",
"RS-29",
"RS-KM",
"RS-VO",
"RU-AD",
"RU-AL",
"RU-ALT",
"RU-AMU",
"RU-ARK",
"RU-AST",
"RU-BA",
"RU-BEL",
"RU-BRY",
"RU-BU",
"RU-CE",
"RU-CHE",
"RU-CHU",
"RU-CU",
"RU-DA",
"RU-IN",
"RU-IRK",
"RU-IVA",
"RU-KAM",
"RU-KB",
"RU-KC",
"RU-KDA",
"RU-KEM",
"RU-KGD",
"RU-KGN",
"RU-KHA",
"RU-KHM",
"RU-KIR",
"RU-KK",
"RU-KL",
"RU-KLU",
"RU-KO",
"RU-KOS",
"RU-KR",
"RU-KRS",
"RU-KYA",
"RU-LEN",
"RU-LIP",
"RU-MAG",
"RU-ME",
"RU-MO",
"RU-MOS",
"RU-MOW",
"RU-MUR",
"RU-NEN",
"RU-NGR",
"RU-NIZ",
"RU-NVS",
"RU-OMS",
"RU-ORE",
"RU-ORL",
"RU-PER",
"RU-PNZ",
"RU-PRI",
"RU-PSK",
"RU-ROS",
"RU-RYA",
"RU-SA",
"RU-SAK",
"RU-SAM",
"RU-SAR",
"RU-SE",
"RU-SMO",
"RU-SPE",
"RU-STA",
"RU-SVE",
"RU-TA",
"RU-TAM",
"RU-TOM",
"RU-TUL",
"RU-TVE",
"RU-TY",
"RU-TYU",
"RU-UD",
"RU-ULY",
"RU-VGG",
"RU-VLA",
"RU-VLG",
"RU-VOR",
"RU-YAN",
"RU-YAR",
"RU-YEV",
"RU-ZAB",
"RW-01",
"RW-02",
"RW-03",
"RW-04",
"RW-05",
"SA-01",
"SA-02",
"SA-03",
"SA-04",
"SA-05",
"SA-06",
"SA-07",
"SA-08",
"SA-09",
"SA-10",
"SA-11",
"SA-12",
"SA-14",
"SB-CE",
"SB-CH",
"SB-CT",
"SB-GU",
"SB-IS",
"SB-MK",
"SB-ML",
"SB-RB",
"SB-TE",
"SB-WE",
"SC-01",
"SC-02",
"SC-03",
"SC-04",
"SC-05",
"SC-06",
"SC-07",
"SC-08",
"SC-09",
"SC-10",
"SC-11",
"SC-12",
"SC-13",
"SC-14",
"SC-15",
"SC-16",
"SC-17",
"SC-18",
"SC-19",
"SC-20",
"SC-21",
"SC-22",
"SC-23",
"SC-24",
"SC-25",
"SC-26",
"SC-27",
"SD-DC",
"SD-DE",
"SD-DN",
"SD-DS",
"SD-DW",
"SD-GD",
"SD-GK",
"SD-GZ",
"SD-KA",
"SD-KH",
"SD-KN",
"SD-KS",
"SD-NB",
"SD-NO",
"SD-NR",
"SD-NW",
"SD-RS",
"SD-SI",
"SE-AB",
"SE-AC",
"SE-BD",
"SE-C",
"SE-D",
"SE-E",
"SE-F",
"SE-G",
"SE-H",
"SE-I",
"SE-K",
"SE-M",
"SE-N",
"SE-O",
"SE-S",
"SE-T",
"SE-U",
"SE-W",
"SE-X",
"SE-Y",
"SE-Z",
"SG-01",
"SG-02",
"SG-03",
"SG-04",
"SG-05",
"SH-AC",
"SH-HL",
"SH-TA",
"SI-001",
"SI-002",
"SI-003",
"SI-004",
"SI-005",
"SI-006",
"SI-007",
"SI-008",
"SI-009",
"SI-010",
"SI-011",
"SI-012",
"SI-013",
"SI-014",
"SI-015",
"SI-016",
"SI-017",
"SI-018",
"SI-019",
"SI-020",
"SI-021",
"SI-022",
"SI-023",
"SI-024",
"SI-025",
"SI-026",
"SI-027",
"SI-028",
"SI-029",
"SI-030",
"SI-031",
"SI-032",
"SI-033",
"SI-034",
"SI-035",
"SI-036",
"SI-037",
"SI-038",
"SI-039",
"SI-040",
"SI-041",
"SI-042",
"SI-043",
"SI-044",
"SI-045",
"SI-046",
"SI-047",
"SI-048",
"SI-049",
"SI-050",
"SI-051",
"SI-052",
"SI-053",
"SI-054",
"SI-055",
"SI-056",
"SI-057",
"SI-058",
"SI-059",
"SI-060",
"SI-061",
"SI-062",
"SI-063",
"SI-064",
"SI-065",
"SI-066",
"SI-067",
"SI-068",
"SI-069",
"SI-070",
"SI-071",
"SI-072",
"SI-073",
"SI-074",
"SI-075",
"SI-076",
"SI-077",
"SI-078",
"SI-079",
"SI-080",
"SI-081",
"SI-082",
"SI-083",
"SI-084",
"SI-085",
"SI-086",
"SI-087",
"SI-088",
"SI-089",
"SI-090",
"SI-091",
"SI-092",
"SI-093",
"SI-094",
"SI-095",
"SI-096",
"SI-097",
"SI-098",
"SI-099",
"SI-100",
"SI-101",
"SI-102",
"SI-103",
"SI-104",
"SI-105",
"SI-106",
"SI-107",
"SI-108",
"SI-109",
"SI-110",
"SI-111",
"SI-112",
"SI-113",
"SI-114",
"SI-115",
"SI-116",
"SI-117",
"SI-118",
"SI-119",
"SI-120",
"SI-121",
"SI-122",
"SI-123",
"SI-124",
"SI-125",
"SI-126",
"SI-127",
"SI-128",
"SI-129",
"SI-130",
"SI-131",
"SI-132",
"SI-133",
"SI-134",
"SI-135",
"SI-136",
"SI-137",
"SI-138",
"SI-139",
"SI-140",
"SI-141",
"SI-142",
"SI-143",
"SI-144",
"SI-146",
"SI-147",
"SI-148",
"SI-149",
"SI-150",
"SI-151",
"SI-152",
"SI-153",
"SI-154",
"SI-155",
"SI-156",
"SI-157",
"SI-158",
"SI-159",
"SI-160",
"SI-161",
"SI-162",
"SI-163",
"SI-164",
"SI-165",
"SI-166",
"SI-167",
"SI-168",
"SI-169",
"SI-170",
"SI-171",
"SI-172",
"SI-173",
"SI-174",
"SI-175",
"SI-176",
"SI-177",
"SI-178",
"SI-179",
"SI-180",
"SI-181",
"SI-182",
"SI-183",
"SI-184",
"SI-185",
"SI-186",
"SI-187",
"SI-188",
"SI-189",
"SI-190",
"SI-191",
"SI-192",
"SI-193",
"SI-194",
"SI-195",
"SI-196",
"SI-197",
"SI-198",
"SI-199",
"SI-200",
"SI-201",
"SI-202",
"SI-203",
"SI-204",
"SI-205",
"SI-206",
"SI-207",
"SI-208",
"SI-209",
"SI-210",
"SI-211",
"SI-212",
"SI-213",
"SK-BC",
"SK-BL",
"SK-KI",
"SK-NI",
"SK-PV",
"SK-TA",
"SK-TC",
"SK-ZI",
"SL-E",
"SL-N",
"SL-NW",
"SL-S",
"SL-W",
"SM-01",
"SM-02",
"SM-03",
"SM-04",
"SM-05",
"SM-06",
"SM-07",
"SM-08",
"SM-09",
"SN-DB",
"SN-DK",
"SN-FK",
"SN-KA",
"SN-KD",
"SN-KE",
"SN-KL",
"SN-LG",
"SN-MT",
"SN-SE",
"SN-SL",
"SN-TC",
"SN-TH",
"SN-ZG",
"SO-AW",
"SO-BK",
"SO-BN",
"SO-BR",
"SO-BY",
"SO-GA",
"SO-GE",
"SO-HI",
"SO-JD",
"SO-JH",
"SO-MU",
"SO-NU",
"SO-SA",
"SO-SD",
"SO-SH",
"SO-SO",
"SO-TO",
"SO-WO",
"SR-BR",
"SR-CM",
"SR-CR",
"SR-MA",
"SR-NI",
"SR-PM",
"SR-PR",
"SR-SA",
"SR-SI",
"SR-WA",
"SS-BN",
"SS-BW",
"SS-EC",
"SS-EE",
"SS-EW",
"SS-JG",
"SS-LK",
"SS-NU",
"SS-UY",
"SS-WR",
"ST-01",
"ST-02",
"ST-03",
"ST-04",
"ST-05",
"ST-06",
"ST-P",
"SV-AH",
"SV-CA",
"SV-CH",
"SV-CU",
"SV-LI",
"SV-MO",
"SV-PA",
"SV-SA",
"SV-SM",
"SV-SO",
"SV-SS",
"SV-SV",
"SV-UN",
"SV-US",
"SY-DI",
"SY-DR",
"SY-DY",
"SY-HA",
"SY-HI",
"SY-HL",
"SY-HM",
"SY-ID",
"SY-LA",
"SY-QU",
"SY-RA",
"SY-RD",
"SY-SU",
"SY-TA",
"SZ-HH",
"SZ-LU",
"SZ-MA",
"SZ-SH",
"TD-BA",
"TD-BG",
"TD-BO",
"TD-CB",
"TD-EE",
"TD-EO",
"TD-GR",
"TD-HL",
"TD-KA",
"TD-LC",
"TD-LO",
"TD-LR",
"TD-MA",
"TD-MC",
"TD-ME",
"TD-MO",
"TD-ND",
"TD-OD",
"TD-SA",
"TD-SI",
"TD-TA",
"TD-TI",
"TD-WF",
"TG-C",
"TG-K",
"TG-M",
"TG-P",
"TG-S",
"TH-10",
"TH-11",
"TH-12",
"TH-13",
"TH-14",
"TH-15",
"TH-16",
"TH-17",
"TH-18",
"TH-19",
"TH-20",
"TH-21",
"TH-22",
"TH-23",
"TH-24",
"TH-25",
"TH-26",
"TH-27",
"TH-30",
"TH-31",
"TH-32",
"TH-33",
"TH-34",
"TH-35",
"TH-36",
"TH-37",
"TH-38",
"TH-39",
"TH-40",
"TH-41",
"TH-42",
"TH-43",
"TH-44",
"TH-45",
"TH-46",
"TH-47",
"TH-48",
"TH-49",
"TH-50",
"TH-51",
"TH-52",
"TH-53",
"TH-54",
"TH-55",
"TH-56",
"TH-57",
"TH-58",
"TH-60",
"TH-61",
"TH-62",
"TH-63",
"TH-64",
"TH-65",
"TH-66",
"TH-67",
"TH-70",
"TH-71",
"TH-72",
"TH-73",
"TH-74",
"TH-75",
"TH-76",
"TH-77",
"TH-80",
"TH-81",
"TH-82",
"TH-83",
"TH-84",
"TH-85",
"TH-86",
"TH-90",
"TH-91",
"TH-92",
"TH-93",
"TH-94",
"TH-95",
"TH-96",
"TH-S",
"TJ-DU",
"TJ-GB",
"TJ-KT",
"TJ-RA",
"TJ-SU",
"TL-AL",
"TL-AN",
"TL-BA",
"TL-BO",
"TL-CO",
"TL-DI",
"TL-ER",
"TL-LA",
"TL-LI",
"TL-MF",
"TL-MT",
"TL-OE",
"TL-VI",
"TM-A",
"TM-B",
"TM-D",
"TM-L",
"TM-M",
"TM-S",
"TN-11",
"TN-12",
"TN-13",
"TN-14",
"TN-21",
"TN-22",
"TN-23",
"TN-31",
"TN-32",
"TN-33",
"TN-34",
"TN-41",
"TN-42",
"TN-43",
"TN-51",
"TN-52",
"TN-53",
"TN-61",
"TN-71",
"TN-72",
"TN-73",
"TN-81",
"TN-82",
"TN-83",
"TO-01",
"TO-02",
"TO-03",
"TO-04",
"TO-05",
"TR-01",
"TR-02",
"TR-03",
"TR-04",
"TR-05",
"TR-06",
"TR-07",
"TR-08",
"TR-09",
"TR-10",
"TR-11",
"TR-12",
"TR-13",
"TR-14",
"TR-15",
"TR-16",
"TR-17",
"TR-18",
"TR-19",
"TR-20",
"TR-21",
"TR-22",
"TR-23",
"TR-24",
"TR-25",
"TR-26",
"TR-27",
"TR-28",
"TR-29",
"TR-30",
"TR-31",
"TR-32",
"TR-33",
"TR-34",
"TR-35",
"TR-36",
"TR-37",
"TR-38",
"TR-39",
"TR-40",
"TR-41",
"TR-42",
"TR-43",
"TR-44",
"TR-45",
"TR-46",
"TR-47",
"TR-48",
"TR-49",
"TR-50",
"TR-51",
"TR-52",
"TR-53",
"TR-54",
"TR-55",
"TR-56",
"TR-57",
"TR-58",
"TR-59",
"TR-60",
"TR-61",
"TR-62",
"TR-63",
"TR-64",
"TR-65",
"TR-66",
"TR-67",
"TR-68",
"TR-69",
"TR-70",
"TR-71",
"TR-72",
"TR-73",
"TR-74",
"TR-75",
"TR-76",
"TR-77",
"TR-78",
"TR-79",
"TR-80",
"TR-81",
"TT-ARI",
"TT-CHA",
"TT-CTT",
"TT-DMN",
"TT-MRC",
"TT-PED",
"TT-POS",
"TT-PRT",
"TT-PTF",
"TT-SFO",
"TT-SGE",
"TT-SIP",
"TT-SJL",
"TT-TOB",
"TT-TUP",
"TV-FUN",
"TV-NIT",
"TV-NKF",
"TV-NKL",
"TV-NMA",
"TV-NMG",
"TV-NUI",
"TV-VAI",
"TW-CHA",
"TW-CYI",
"TW-CYQ",
"TW-HSQ",
"TW-HSZ",
"TW-HUA",
"TW-ILA",
"TW-KEE",
"TW-KHH",
"TW-KIN",
"TW-LIE",
"TW-MIA",
"TW-NAN",
"TW-NWT",
"TW-PEN",
"TW-PIF",
"TW-TAO",
"TW-TNN",
"TW-TPE",
"TW-TTT",
"TW-TXG",
"TW-YUN",
"TZ-01",
"TZ-02",
"TZ-03",
"TZ-04",
"TZ-05",
"TZ-06",
"TZ-07",
"TZ-08",
"TZ-09",
"TZ-10",
"TZ-11",
"TZ-12",
"TZ-13",
"TZ-14",
"TZ-15",
"TZ-16",
"TZ-17",
"TZ-18",
"TZ-19",
"TZ-20",
"TZ-21",
"TZ-22",
"TZ-23",
"TZ-24",
"TZ-25",
"TZ-26",
"TZ-27",
"TZ-28",
"TZ-29",
"TZ-30",
"TZ-31",
"UA-05",
"UA-07",
"UA-09",
"UA-12",
"UA-14",
"UA-18",
"UA-21",
"UA-23",
"UA-26",
"UA-30",
"UA-32",
"UA-35",
"UA-40",
"UA-43",
"UA-46",
"UA-48",
"UA-51",
"UA-53",
"UA-56",
"UA-59",
"UA-61",
"UA-63",
"UA-65",
"UA-68",
"UA-71",
"UA-74",
"UA-77",
"UG-101",
"UG-102",
"UG-103",
"UG-104",
"UG-105",
"UG-106",
"UG-107",
"UG-108",
"UG-109",
"UG-110",
"UG-111",
"UG-112",
"UG-113",
"UG-114",
"UG-115",
"UG-116",
"UG-117",
"UG-118",
"UG-119",
"UG-120",
"UG-121",
"UG-122",
"UG-123",
"UG-124",
"UG-125",
"UG-126",
"UG-201",
"UG-202",
"UG-203",
"UG-204",
"UG-205",
"UG-206",
"UG-207",
"UG-208",
"UG-209",
"UG-210",
"UG-211",
"UG-212",
"UG-213",
"UG-214",
"UG-215",
"UG-216",
"UG-217",
"UG-218",
"UG-219",
"UG-220",
"UG-221",
"UG-222",
"UG-223",
"UG-224",
"UG-225",
"UG-226",
"UG-227",
"UG-228",
"UG-229",
"UG-230",
"UG-231",
"UG-232",
"UG-233",
"UG-234",
"UG-235",
"UG-236",
"UG-237",
"UG-301",
"UG-302",
"UG-303",
"UG-304",
"UG-305",
"UG-306",
"UG-307",
"UG-308",
"UG-309",
"UG-310",
"UG-311",
"UG-312",
"UG-313",
"UG-314",
"UG-315",
"UG-316",
"UG-317",
"UG-318",
"UG-319",
"UG-320",
"UG-321",
"UG-322",
"UG-323",
"UG-324",
"UG-325",
"UG-326",
"UG-327",
"UG-328",
"UG-329",
"UG-330",
"UG-331",
"UG-332",
"UG-333",
"UG-334",
"UG-335",
"UG-336",
"UG-337",
"UG-401",
"UG-402",
"UG-403",
"UG-404",
"UG-405",
"UG-406",
"UG-407",
"UG-408",
"UG-409",
"UG-410",
"UG-411",
"UG-412",
"UG-413",
"UG-414",
"UG-415",
"UG-416",
"UG-417",
"UG-418",
"UG-419",
"UG-420",
"UG-421",
"UG-422",
"UG-423",
"UG-424",
"UG-425",
"UG-426",
"UG-427",
"UG-428",
"UG-429",
"UG-430",
"UG-431",
"UG-432",
"UG-433",
"UG-434",
"UG-435",
"UG-C",
"UG-E",
"UG-N",
"UG-W",
"UM-67",
"UM-71",
"UM-76",
"UM-79",
"UM-81",
"UM-84",
"UM-86",
"UM-89",
"UM-95",
"US-AK",
"US-AL",
"US-AR",
"US-AS",
"US-AZ",
"US-CA",
"US-CO",
"US-CT",
"US-DC",
"US-DE",
"US-FL",
"US-GA",
"US-GU",
"US-HI",
"US-IA",
"US-ID",
"US-IL",
"US-IN",
"US-KS",
"US-KY",
"US-LA",
"US-MA",
"US-MD",
"US-ME",
"US-MI",
"US-MN",
"US-MO",
"US-MP",
"US-MS",
"US-MT",
"US-NC",
"US-ND",
"US-NE",
"US-NH",
"US-NJ",
"US-NM",
"US-NV",
"US-NY",
"US-OH",
"US-OK",
"US-OR",
"US-PA",
"US-PR",
"US-RI",
"US-SC",
"US-SD",
"US-TN",
"US-TX",
"US-UM",
"US-UT",
"US-VA",
"US-VI",
"US-VT",
"US-WA",
"US-WI",
"US-WV",
"US-WY",
"UY-AR",
"UY-CA",
"UY-CL",
"UY-CO",
"UY-DU",
"UY-FD",
"UY-FS",
"UY-LA",
"UY-MA",
"UY-MO",
"UY-PA",
"UY-RN",
"UY-RO",
"UY-RV",
"UY-SA",
"UY-SJ",
"UY-SO",
"UY-TA",
"UY-TT",
"UZ-AN",
"UZ-BU",
"UZ-FA",
"UZ-JI",
"UZ-NG",
"UZ-NW",
"UZ-QA",
"UZ-QR",
"UZ-SA",
"UZ-SI",
"UZ-SU",
"UZ-TK",
"UZ-TO",
"UZ-XO",
"VC-01",
"VC-02",
"VC-03",
"VC-04",
"VC-05",
"VC-06",
"VE-A",
"VE-B",
"VE-C",
"VE-D",
"VE-E",
"VE-F",
"VE-G",
"VE-H",
"VE-I",
"VE-J",
"VE-K",
"VE-L",
"VE-M",
"VE-N",
"VE-O",
"VE-P",
"VE-R",
"VE-S",
"VE-T",
"VE-U",
"VE-V",
"VE-W",
"VE-X",
"VE-Y",
"VE-Z",
"VN-01",
"VN-02",
"VN-03",
"VN-04",
"VN-05",
"VN-06",
"VN-07",
"VN-09",
"VN-13",
"VN-14",
"VN-18",
"VN-20",
"VN-21",
"VN-22",
"VN-23",
"VN-24",
"VN-25",
"VN-26",
"VN-27",
"VN-28",
"VN-29",
"VN-30",
"VN-31",
"VN-32",
"VN-33",
"VN-34",
"VN-35",
"VN-36",
"VN-37",
"VN-39",
"VN-40",
"VN-41",
"VN-43",
"VN-44",
"VN-45",
"VN-46",
"VN-47",
"VN-49",
"VN-50",
"VN-51",
"VN-52",
"VN-53",
"VN-54",
"VN-55",
"VN-56",
"VN-57",
"VN-58",
"VN-59",
"VN-61",
"VN-63",
"VN-66",
"VN-67",
"VN-68",
"VN-69",
"VN-70",
"VN-71",
"VN-72",
"VN-73",
"VN-CT",
"VN-DN",
"VN-HN",
"VN-HP",
"VN-SG",
"VU-MAP",
"VU-PAM",
"VU-SAM",
"VU-SEE",
"VU-TAE",
"VU-TOB",
"WF-AL",
"WF-SG",
"WF-UV",
"WS-AA",
"WS-AL",
"WS-AT",
"WS-FA",
"WS-GE",
"WS-GI",
"WS-PA",
"WS-SA",
"WS-TU",
"WS-VF",
"WS-VS",
"YE-AB",
"YE-AD",
"YE-AM",
"YE-BA",
"YE-DA",
"YE-DH",
"YE-HD",
"YE-HJ",
"YE-HU",
"YE-IB",
"YE-JA",
"YE-LA",
"YE-MA",
"YE-MR",
"YE-MW",
"YE-RA",
"YE-SA",
"YE-SD",
"YE-SH",
"YE-SN",
"YE-SU",
"YE-TA",
"ZA-EC",
"ZA-FS",
"ZA-GP",
"ZA-KZN",
"ZA-LP",
"ZA-MP",
"ZA-NC",
"ZA-NW",
"ZA-WC",
"ZM-01",
"ZM-02",
"ZM-03",
"ZM-04",
"ZM-05",
"ZM-06",
"ZM-07",
"ZM-08",
"ZM-09",
"ZM-10",
"ZW-BU",
"ZW-HA",
"ZW-MA",
"ZW-MC",
"ZW-ME",
"ZW-MI",
"ZW-MN",
"ZW-MS",
"ZW-MV",
"ZW-MW"
]
}
},
"regionBlockList": {
"type": "array",
"items": {
"type": "string",
"enum": [
"EU",
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BA",
"BW",
"BV",
"BR",
"IO",
"VG",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"BQ",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"KP",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"KR",
"SS",
"ES",
"LK",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UM",
"VI",
"UG",
"UA",
"AE",
"GB",
"US",
"UY",
"UZ",
"VU",
"VA",
"VE",
"VN",
"WF",
"EH",
"YE",
"ZM",
"ZW",
"AD-02",
"AD-03",
"AD-04",
"AD-05",
"AD-06",
"AD-07",
"AD-08",
"AE-AJ",
"AE-AZ",
"AE-DU",
"AE-FU",
"AE-RK",
"AE-SH",
"AE-UQ",
"AF-BAL",
"AF-BAM",
"AF-BDG",
"AF-BDS",
"AF-BGL",
"AF-DAY",
"AF-FRA",
"AF-FYB",
"AF-GHA",
"AF-GHO",
"AF-HEL",
"AF-HER",
"AF-JOW",
"AF-KAB",
"AF-KAN",
"AF-KAP",
"AF-KDZ",
"AF-KHO",
"AF-KNR",
"AF-LAG",
"AF-LOG",
"AF-NAN",
"AF-NIM",
"AF-NUR",
"AF-PAN",
"AF-PAR",
"AF-PIA",
"AF-PKA",
"AF-SAM",
"AF-SAR",
"AF-TAK",
"AF-URU",
"AF-WAR",
"AF-ZAB",
"AG-03",
"AG-04",
"AG-05",
"AG-06",
"AG-07",
"AG-08",
"AG-10",
"AG-11",
"AL-01",
"AL-02",
"AL-03",
"AL-04",
"AL-05",
"AL-06",
"AL-07",
"AL-08",
"AL-09",
"AL-10",
"AL-11",
"AL-12",
"AM-AG",
"AM-AR",
"AM-AV",
"AM-ER",
"AM-GR",
"AM-KT",
"AM-LO",
"AM-SH",
"AM-SU",
"AM-TV",
"AM-VD",
"AO-BGO",
"AO-BGU",
"AO-BIE",
"AO-CAB",
"AO-CCU",
"AO-CNN",
"AO-CNO",
"AO-CUS",
"AO-HUA",
"AO-HUI",
"AO-LNO",
"AO-LSU",
"AO-LUA",
"AO-MAL",
"AO-MOX",
"AO-NAM",
"AO-UIG",
"AO-ZAI",
"AR-A",
"AR-B",
"AR-C",
"AR-D",
"AR-E",
"AR-F",
"AR-G",
"AR-H",
"AR-J",
"AR-K",
"AR-L",
"AR-M",
"AR-N",
"AR-P",
"AR-Q",
"AR-R",
"AR-S",
"AR-T",
"AR-U",
"AR-V",
"AR-W",
"AR-X",
"AR-Y",
"AR-Z",
"AT-1",
"AT-2",
"AT-3",
"AT-4",
"AT-5",
"AT-6",
"AT-7",
"AT-8",
"AT-9",
"AU-ACT",
"AU-NSW",
"AU-NT",
"AU-QLD",
"AU-SA",
"AU-TAS",
"AU-VIC",
"AU-WA",
"AZ-ABS",
"AZ-AGA",
"AZ-AGC",
"AZ-AGM",
"AZ-AGS",
"AZ-AGU",
"AZ-AST",
"AZ-BA",
"AZ-BAB",
"AZ-BAL",
"AZ-BAR",
"AZ-BEY",
"AZ-BIL",
"AZ-CAB",
"AZ-CAL",
"AZ-CUL",
"AZ-DAS",
"AZ-FUZ",
"AZ-GA",
"AZ-GAD",
"AZ-GOR",
"AZ-GOY",
"AZ-GYG",
"AZ-HAC",
"AZ-IMI",
"AZ-ISM",
"AZ-KAL",
"AZ-KAN",
"AZ-KUR",
"AZ-LA",
"AZ-LAC",
"AZ-LAN",
"AZ-LER",
"AZ-MAS",
"AZ-MI",
"AZ-NA",
"AZ-NEF",
"AZ-NV",
"AZ-NX",
"AZ-OGU",
"AZ-ORD",
"AZ-QAB",
"AZ-QAX",
"AZ-QAZ",
"AZ-QBA",
"AZ-QBI",
"AZ-QOB",
"AZ-QUS",
"AZ-SA",
"AZ-SAB",
"AZ-SAD",
"AZ-SAH",
"AZ-SAK",
"AZ-SAL",
"AZ-SAR",
"AZ-SAT",
"AZ-SBN",
"AZ-SIY",
"AZ-SKR",
"AZ-SM",
"AZ-SMI",
"AZ-SMX",
"AZ-SR",
"AZ-SUS",
"AZ-TAR",
"AZ-TOV",
"AZ-UCA",
"AZ-XA",
"AZ-XAC",
"AZ-XCI",
"AZ-XIZ",
"AZ-XVD",
"AZ-YAR",
"AZ-YE",
"AZ-YEV",
"AZ-ZAN",
"AZ-ZAQ",
"AZ-ZAR",
"BA-BIH",
"BA-BRC",
"BA-SRP",
"BB-01",
"BB-02",
"BB-03",
"BB-04",
"BB-05",
"BB-06",
"BB-07",
"BB-08",
"BB-09",
"BB-10",
"BB-11",
"BD-01",
"BD-02",
"BD-03",
"BD-04",
"BD-05",
"BD-06",
"BD-07",
"BD-08",
"BD-09",
"BD-10",
"BD-11",
"BD-12",
"BD-13",
"BD-14",
"BD-15",
"BD-16",
"BD-17",
"BD-18",
"BD-19",
"BD-20",
"BD-21",
"BD-22",
"BD-23",
"BD-24",
"BD-25",
"BD-26",
"BD-27",
"BD-28",
"BD-29",
"BD-30",
"BD-31",
"BD-32",
"BD-33",
"BD-34",
"BD-35",
"BD-36",
"BD-37",
"BD-38",
"BD-39",
"BD-40",
"BD-41",
"BD-42",
"BD-43",
"BD-44",
"BD-45",
"BD-46",
"BD-47",
"BD-48",
"BD-49",
"BD-50",
"BD-51",
"BD-52",
"BD-53",
"BD-54",
"BD-55",
"BD-56",
"BD-57",
"BD-58",
"BD-59",
"BD-60",
"BD-61",
"BD-62",
"BD-63",
"BD-64",
"BD-A",
"BD-B",
"BD-C",
"BD-D",
"BD-E",
"BD-F",
"BD-G",
"BD-H",
"BE-BRU",
"BE-VAN",
"BE-VBR",
"BE-VLG",
"BE-VLI",
"BE-VOV",
"BE-VWV",
"BE-WAL",
"BE-WBR",
"BE-WHT",
"BE-WLG",
"BE-WLX",
"BE-WNA",
"BF-01",
"BF-02",
"BF-03",
"BF-04",
"BF-05",
"BF-06",
"BF-07",
"BF-08",
"BF-09",
"BF-10",
"BF-11",
"BF-12",
"BF-13",
"BF-BAL",
"BF-BAM",
"BF-BAN",
"BF-BAZ",
"BF-BGR",
"BF-BLG",
"BF-BLK",
"BF-COM",
"BF-GAN",
"BF-GNA",
"BF-GOU",
"BF-HOU",
"BF-IOB",
"BF-KAD",
"BF-KEN",
"BF-KMD",
"BF-KMP",
"BF-KOP",
"BF-KOS",
"BF-KOT",
"BF-KOW",
"BF-LER",
"BF-LOR",
"BF-MOU",
"BF-NAM",
"BF-NAO",
"BF-NAY",
"BF-NOU",
"BF-OUB",
"BF-OUD",
"BF-PAS",
"BF-PON",
"BF-SEN",
"BF-SIS",
"BF-SMT",
"BF-SNG",
"BF-SOM",
"BF-SOR",
"BF-TAP",
"BF-TUI",
"BF-YAG",
"BF-YAT",
"BF-ZIR",
"BF-ZON",
"BF-ZOU",
"BG-01",
"BG-02",
"BG-03",
"BG-04",
"BG-05",
"BG-06",
"BG-07",
"BG-08",
"BG-09",
"BG-10",
"BG-11",
"BG-12",
"BG-13",
"BG-14",
"BG-15",
"BG-16",
"BG-17",
"BG-18",
"BG-19",
"BG-20",
"BG-21",
"BG-22",
"BG-23",
"BG-24",
"BG-25",
"BG-26",
"BG-27",
"BG-28",
"BH-13",
"BH-14",
"BH-15",
"BH-17",
"BI-BB",
"BI-BL",
"BI-BM",
"BI-BR",
"BI-CA",
"BI-CI",
"BI-GI",
"BI-KI",
"BI-KR",
"BI-KY",
"BI-MA",
"BI-MU",
"BI-MW",
"BI-MY",
"BI-NG",
"BI-RM",
"BI-RT",
"BI-RY",
"BJ-AK",
"BJ-AL",
"BJ-AQ",
"BJ-BO",
"BJ-CO",
"BJ-DO",
"BJ-KO",
"BJ-LI",
"BJ-MO",
"BJ-OU",
"BJ-PL",
"BJ-ZO",
"BN-BE",
"BN-BM",
"BN-TE",
"BN-TU",
"BO-B",
"BO-C",
"BO-H",
"BO-L",
"BO-N",
"BO-O",
"BO-P",
"BO-S",
"BO-T",
"BQ-BO",
"BQ-SA",
"BQ-SE",
"BR-AC",
"BR-AL",
"BR-AM",
"BR-AP",
"BR-BA",
"BR-CE",
"BR-DF",
"BR-ES",
"BR-GO",
"BR-MA",
"BR-MG",
"BR-MS",
"BR-MT",
"BR-PA",
"BR-PB",
"BR-PE",
"BR-PI",
"BR-PR",
"BR-RJ",
"BR-RN",
"BR-RO",
"BR-RR",
"BR-RS",
"BR-SC",
"BR-SE",
"BR-SP",
"BR-TO",
"BS-AK",
"BS-BI",
"BS-BP",
"BS-BY",
"BS-CE",
"BS-CI",
"BS-CK",
"BS-CO",
"BS-CS",
"BS-EG",
"BS-EX",
"BS-FP",
"BS-GC",
"BS-HI",
"BS-HT",
"BS-IN",
"BS-LI",
"BS-MC",
"BS-MG",
"BS-MI",
"BS-NE",
"BS-NO",
"BS-NP",
"BS-NS",
"BS-RC",
"BS-RI",
"BS-SA",
"BS-SE",
"BS-SO",
"BS-SS",
"BS-SW",
"BS-WG",
"BT-11",
"BT-12",
"BT-13",
"BT-14",
"BT-15",
"BT-21",
"BT-22",
"BT-23",
"BT-24",
"BT-31",
"BT-32",
"BT-33",
"BT-34",
"BT-41",
"BT-42",
"BT-43",
"BT-44",
"BT-45",
"BT-GA",
"BT-TY",
"BW-CE",
"BW-CH",
"BW-FR",
"BW-GA",
"BW-GH",
"BW-JW",
"BW-KG",
"BW-KL",
"BW-KW",
"BW-LO",
"BW-NE",
"BW-NW",
"BW-SE",
"BW-SO",
"BW-SP",
"BW-ST",
"BY-BR",
"BY-HM",
"BY-HO",
"BY-HR",
"BY-MA",
"BY-MI",
"BY-VI",
"BZ-BZ",
"BZ-CY",
"BZ-CZL",
"BZ-OW",
"BZ-SC",
"BZ-TOL",
"CA-AB",
"CA-BC",
"CA-MB",
"CA-NB",
"CA-NL",
"CA-NS",
"CA-NT",
"CA-NU",
"CA-ON",
"CA-PE",
"CA-QC",
"CA-SK",
"CA-YT",
"CD-BC",
"CD-BU",
"CD-EQ",
"CD-HK",
"CD-HL",
"CD-HU",
"CD-IT",
"CD-KC",
"CD-KE",
"CD-KG",
"CD-KL",
"CD-KN",
"CD-KS",
"CD-LO",
"CD-LU",
"CD-MA",
"CD-MN",
"CD-MO",
"CD-NK",
"CD-NU",
"CD-SA",
"CD-SK",
"CD-SU",
"CD-TA",
"CD-TO",
"CD-TU",
"CF-AC",
"CF-BB",
"CF-BGF",
"CF-BK",
"CF-HK",
"CF-HM",
"CF-HS",
"CF-KB",
"CF-KG",
"CF-LB",
"CF-MB",
"CF-MP",
"CF-NM",
"CF-OP",
"CF-SE",
"CF-UK",
"CF-VK",
"CG-11",
"CG-12",
"CG-13",
"CG-14",
"CG-15",
"CG-16",
"CG-2",
"CG-5",
"CG-7",
"CG-8",
"CG-9",
"CG-BZV",
"CH-AG",
"CH-AI",
"CH-AR",
"CH-BE",
"CH-BL",
"CH-BS",
"CH-FR",
"CH-GE",
"CH-GL",
"CH-GR",
"CH-JU",
"CH-LU",
"CH-NE",
"CH-NW",
"CH-OW",
"CH-SG",
"CH-SH",
"CH-SO",
"CH-SZ",
"CH-TG",
"CH-TI",
"CH-UR",
"CH-VD",
"CH-VS",
"CH-ZG",
"CH-ZH",
"CI-AB",
"CI-BS",
"CI-CM",
"CI-DN",
"CI-GD",
"CI-LC",
"CI-LG",
"CI-MG",
"CI-SM",
"CI-SV",
"CI-VB",
"CI-WR",
"CI-YM",
"CI-ZZ",
"CL-AI",
"CL-AN",
"CL-AP",
"CL-AR",
"CL-AT",
"CL-BI",
"CL-CO",
"CL-LI",
"CL-LL",
"CL-LR",
"CL-MA",
"CL-ML",
"CL-NB",
"CL-RM",
"CL-TA",
"CL-VS",
"CM-AD",
"CM-CE",
"CM-EN",
"CM-ES",
"CM-LT",
"CM-NO",
"CM-NW",
"CM-OU",
"CM-SU",
"CM-SW",
"CN-AH",
"CN-BJ",
"CN-CQ",
"CN-FJ",
"CN-GD",
"CN-GS",
"CN-GX",
"CN-GZ",
"CN-HA",
"CN-HB",
"CN-HE",
"CN-HI",
"CN-HK",
"CN-HL",
"CN-HN",
"CN-JL",
"CN-JS",
"CN-JX",
"CN-LN",
"CN-MO",
"CN-NM",
"CN-NX",
"CN-QH",
"CN-SC",
"CN-SD",
"CN-SH",
"CN-SN",
"CN-SX",
"CN-TJ",
"CN-TW",
"CN-XJ",
"CN-XZ",
"CN-YN",
"CN-ZJ",
"CO-AMA",
"CO-ANT",
"CO-ARA",
"CO-ATL",
"CO-BOL",
"CO-BOY",
"CO-CAL",
"CO-CAQ",
"CO-CAS",
"CO-CAU",
"CO-CES",
"CO-CHO",
"CO-COR",
"CO-CUN",
"CO-DC",
"CO-GUA",
"CO-GUV",
"CO-HUI",
"CO-LAG",
"CO-MAG",
"CO-MET",
"CO-NAR",
"CO-NSA",
"CO-PUT",
"CO-QUI",
"CO-RIS",
"CO-SAN",
"CO-SAP",
"CO-SUC",
"CO-TOL",
"CO-VAC",
"CO-VAU",
"CO-VID",
"CR-A",
"CR-C",
"CR-G",
"CR-H",
"CR-L",
"CR-P",
"CR-SJ",
"CU-01",
"CU-03",
"CU-04",
"CU-05",
"CU-06",
"CU-07",
"CU-08",
"CU-09",
"CU-10",
"CU-11",
"CU-12",
"CU-13",
"CU-14",
"CU-15",
"CU-16",
"CU-99",
"CV-B",
"CV-BR",
"CV-BV",
"CV-CA",
"CV-CF",
"CV-CR",
"CV-MA",
"CV-MO",
"CV-PA",
"CV-PN",
"CV-PR",
"CV-RB",
"CV-RG",
"CV-RS",
"CV-S",
"CV-SD",
"CV-SF",
"CV-SL",
"CV-SM",
"CV-SO",
"CV-SS",
"CV-SV",
"CV-TA",
"CV-TS",
"CY-01",
"CY-02",
"CY-03",
"CY-04",
"CY-05",
"CY-06",
"CZ-10",
"CZ-20",
"CZ-201",
"CZ-202",
"CZ-203",
"CZ-204",
"CZ-205",
"CZ-206",
"CZ-207",
"CZ-208",
"CZ-209",
"CZ-20A",
"CZ-20B",
"CZ-20C",
"CZ-31",
"CZ-311",
"CZ-312",
"CZ-313",
"CZ-314",
"CZ-315",
"CZ-316",
"CZ-317",
"CZ-32",
"CZ-321",
"CZ-322",
"CZ-323",
"CZ-324",
"CZ-325",
"CZ-326",
"CZ-327",
"CZ-41",
"CZ-411",
"CZ-412",
"CZ-413",
"CZ-42",
"CZ-421",
"CZ-422",
"CZ-423",
"CZ-424",
"CZ-425",
"CZ-426",
"CZ-427",
"CZ-51",
"CZ-511",
"CZ-512",
"CZ-513",
"CZ-514",
"CZ-52",
"CZ-521",
"CZ-522",
"CZ-523",
"CZ-524",
"CZ-525",
"CZ-53",
"CZ-531",
"CZ-532",
"CZ-533",
"CZ-534",
"CZ-63",
"CZ-631",
"CZ-632",
"CZ-633",
"CZ-634",
"CZ-635",
"CZ-64",
"CZ-641",
"CZ-642",
"CZ-643",
"CZ-644",
"CZ-645",
"CZ-646",
"CZ-647",
"CZ-71",
"CZ-711",
"CZ-712",
"CZ-713",
"CZ-714",
"CZ-715",
"CZ-72",
"CZ-721",
"CZ-722",
"CZ-723",
"CZ-724",
"CZ-80",
"CZ-801",
"CZ-802",
"CZ-803",
"CZ-804",
"CZ-805",
"CZ-806",
"DE-BB",
"DE-BE",
"DE-BW",
"DE-BY",
"DE-HB",
"DE-HE",
"DE-HH",
"DE-MV",
"DE-NI",
"DE-NW",
"DE-RP",
"DE-SH",
"DE-SL",
"DE-SN",
"DE-ST",
"DE-TH",
"DJ-AR",
"DJ-AS",
"DJ-DI",
"DJ-DJ",
"DJ-OB",
"DJ-TA",
"DK-81",
"DK-82",
"DK-83",
"DK-84",
"DK-85",
"DM-02",
"DM-03",
"DM-04",
"DM-05",
"DM-06",
"DM-07",
"DM-08",
"DM-09",
"DM-10",
"DM-11",
"DO-01",
"DO-02",
"DO-03",
"DO-04",
"DO-05",
"DO-06",
"DO-07",
"DO-08",
"DO-09",
"DO-10",
"DO-11",
"DO-12",
"DO-13",
"DO-14",
"DO-15",
"DO-16",
"DO-17",
"DO-18",
"DO-19",
"DO-20",
"DO-21",
"DO-22",
"DO-23",
"DO-24",
"DO-25",
"DO-26",
"DO-27",
"DO-28",
"DO-29",
"DO-30",
"DO-31",
"DO-32",
"DO-33",
"DO-34",
"DO-35",
"DO-36",
"DO-37",
"DO-38",
"DO-39",
"DO-40",
"DO-41",
"DO-42",
"DZ-01",
"DZ-02",
"DZ-03",
"DZ-04",
"DZ-05",
"DZ-06",
"DZ-07",
"DZ-08",
"DZ-09",
"DZ-10",
"DZ-11",
"DZ-12",
"DZ-13",
"DZ-14",
"DZ-15",
"DZ-16",
"DZ-17",
"DZ-18",
"DZ-19",
"DZ-20",
"DZ-21",
"DZ-22",
"DZ-23",
"DZ-24",
"DZ-25",
"DZ-26",
"DZ-27",
"DZ-28",
"DZ-29",
"DZ-30",
"DZ-31",
"DZ-32",
"DZ-33",
"DZ-34",
"DZ-35",
"DZ-36",
"DZ-37",
"DZ-38",
"DZ-39",
"DZ-40",
"DZ-41",
"DZ-42",
"DZ-43",
"DZ-44",
"DZ-45",
"DZ-46",
"DZ-47",
"DZ-48",
"EC-A",
"EC-B",
"EC-C",
"EC-D",
"EC-E",
"EC-F",
"EC-G",
"EC-H",
"EC-I",
"EC-L",
"EC-M",
"EC-N",
"EC-O",
"EC-P",
"EC-R",
"EC-S",
"EC-SD",
"EC-SE",
"EC-T",
"EC-U",
"EC-W",
"EC-X",
"EC-Y",
"EC-Z",
"EE-130",
"EE-141",
"EE-142",
"EE-171",
"EE-184",
"EE-191",
"EE-198",
"EE-205",
"EE-214",
"EE-245",
"EE-247",
"EE-251",
"EE-255",
"EE-272",
"EE-283",
"EE-284",
"EE-291",
"EE-293",
"EE-296",
"EE-303",
"EE-305",
"EE-317",
"EE-321",
"EE-338",
"EE-353",
"EE-37",
"EE-39",
"EE-424",
"EE-430",
"EE-431",
"EE-432",
"EE-441",
"EE-442",
"EE-446",
"EE-45",
"EE-478",
"EE-480",
"EE-486",
"EE-50",
"EE-503",
"EE-511",
"EE-514",
"EE-52",
"EE-528",
"EE-557",
"EE-56",
"EE-567",
"EE-586",
"EE-60",
"EE-615",
"EE-618",
"EE-622",
"EE-624",
"EE-638",
"EE-64",
"EE-651",
"EE-653",
"EE-661",
"EE-663",
"EE-668",
"EE-68",
"EE-689",
"EE-698",
"EE-708",
"EE-71",
"EE-712",
"EE-714",
"EE-719",
"EE-726",
"EE-732",
"EE-735",
"EE-74",
"EE-784",
"EE-79",
"EE-792",
"EE-793",
"EE-796",
"EE-803",
"EE-809",
"EE-81",
"EE-824",
"EE-834",
"EE-84",
"EE-855",
"EE-87",
"EE-890",
"EE-897",
"EE-899",
"EE-901",
"EE-903",
"EE-907",
"EE-917",
"EE-919",
"EE-928",
"EG-ALX",
"EG-ASN",
"EG-AST",
"EG-BA",
"EG-BH",
"EG-BNS",
"EG-C",
"EG-DK",
"EG-DT",
"EG-FYM",
"EG-GH",
"EG-GZ",
"EG-IS",
"EG-JS",
"EG-KB",
"EG-KFS",
"EG-KN",
"EG-LX",
"EG-MN",
"EG-MNF",
"EG-MT",
"EG-PTS",
"EG-SHG",
"EG-SHR",
"EG-SIN",
"EG-SUZ",
"EG-WAD",
"ER-AN",
"ER-DK",
"ER-DU",
"ER-GB",
"ER-MA",
"ER-SK",
"ES-A",
"ES-AB",
"ES-AL",
"ES-AN",
"ES-AR",
"ES-AS",
"ES-AV",
"ES-B",
"ES-BA",
"ES-BI",
"ES-BU",
"ES-C",
"ES-CA",
"ES-CB",
"ES-CC",
"ES-CE",
"ES-CL",
"ES-CM",
"ES-CN",
"ES-CO",
"ES-CR",
"ES-CS",
"ES-CT",
"ES-CU",
"ES-EX",
"ES-GA",
"ES-GC",
"ES-GI",
"ES-GR",
"ES-GU",
"ES-H",
"ES-HU",
"ES-IB",
"ES-J",
"ES-L",
"ES-LE",
"ES-LO",
"ES-LU",
"ES-M",
"ES-MA",
"ES-MC",
"ES-MD",
"ES-ML",
"ES-MU",
"ES-NA",
"ES-NC",
"ES-O",
"ES-OR",
"ES-P",
"ES-PM",
"ES-PO",
"ES-PV",
"ES-RI",
"ES-S",
"ES-SA",
"ES-SE",
"ES-SG",
"ES-SO",
"ES-SS",
"ES-T",
"ES-TE",
"ES-TF",
"ES-TO",
"ES-V",
"ES-VA",
"ES-VC",
"ES-VI",
"ES-Z",
"ES-ZA",
"ET-AA",
"ET-AF",
"ET-AM",
"ET-BE",
"ET-DD",
"ET-GA",
"ET-HA",
"ET-OR",
"ET-SN",
"ET-SO",
"ET-TI",
"FI-01",
"FI-02",
"FI-03",
"FI-04",
"FI-05",
"FI-06",
"FI-07",
"FI-08",
"FI-09",
"FI-10",
"FI-11",
"FI-12",
"FI-13",
"FI-14",
"FI-15",
"FI-16",
"FI-17",
"FI-18",
"FI-19",
"FJ-01",
"FJ-02",
"FJ-03",
"FJ-04",
"FJ-05",
"FJ-06",
"FJ-07",
"FJ-08",
"FJ-09",
"FJ-10",
"FJ-11",
"FJ-12",
"FJ-13",
"FJ-14",
"FJ-C",
"FJ-E",
"FJ-N",
"FJ-R",
"FJ-W",
"FM-KSA",
"FM-PNI",
"FM-TRK",
"FM-YAP",
"FR-01",
"FR-02",
"FR-03",
"FR-04",
"FR-05",
"FR-06",
"FR-07",
"FR-08",
"FR-09",
"FR-10",
"FR-11",
"FR-12",
"FR-13",
"FR-14",
"FR-15",
"FR-16",
"FR-17",
"FR-18",
"FR-19",
"FR-20R",
"FR-21",
"FR-22",
"FR-23",
"FR-24",
"FR-25",
"FR-26",
"FR-27",
"FR-28",
"FR-29",
"FR-2A",
"FR-2B",
"FR-30",
"FR-31",
"FR-32",
"FR-33",
"FR-34",
"FR-35",
"FR-36",
"FR-37",
"FR-38",
"FR-39",
"FR-40",
"FR-41",
"FR-42",
"FR-43",
"FR-44",
"FR-45",
"FR-46",
"FR-47",
"FR-48",
"FR-49",
"FR-50",
"FR-51",
"FR-52",
"FR-53",
"FR-54",
"FR-55",
"FR-56",
"FR-57",
"FR-58",
"FR-59",
"FR-60",
"FR-61",
"FR-62",
"FR-63",
"FR-64",
"FR-65",
"FR-66",
"FR-67",
"FR-68",
"FR-69",
"FR-70",
"FR-71",
"FR-72",
"FR-73",
"FR-74",
"FR-75",
"FR-76",
"FR-77",
"FR-78",
"FR-79",
"FR-80",
"FR-81",
"FR-82",
"FR-83",
"FR-84",
"FR-85",
"FR-86",
"FR-87",
"FR-88",
"FR-89",
"FR-90",
"FR-91",
"FR-92",
"FR-93",
"FR-94",
"FR-95",
"FR-971",
"FR-972",
"FR-973",
"FR-974",
"FR-976",
"FR-ARA",
"FR-BFC",
"FR-BL",
"FR-BRE",
"FR-CP",
"FR-CVL",
"FR-GES",
"FR-GF",
"FR-GP",
"FR-HDF",
"FR-IDF",
"FR-MF",
"FR-MQ",
"FR-NAQ",
"FR-NC",
"FR-NOR",
"FR-OCC",
"FR-PAC",
"FR-PDL",
"FR-PF",
"FR-PM",
"FR-RE",
"FR-TF",
"FR-WF",
"FR-YT",
"GA-1",
"GA-2",
"GA-3",
"GA-4",
"GA-5",
"GA-6",
"GA-7",
"GA-8",
"GA-9",
"GB-ABC",
"GB-ABD",
"GB-ABE",
"GB-AGB",
"GB-AGY",
"GB-AND",
"GB-ANN",
"GB-ANS",
"GB-BAS",
"GB-BBD",
"GB-BCP",
"GB-BDF",
"GB-BDG",
"GB-BEN",
"GB-BEX",
"GB-BFS",
"GB-BGE",
"GB-BGW",
"GB-BIR",
"GB-BKM",
"GB-BNE",
"GB-BNH",
"GB-BNS",
"GB-BOL",
"GB-BPL",
"GB-BRC",
"GB-BRD",
"GB-BRY",
"GB-BST",
"GB-BUR",
"GB-CAM",
"GB-CAY",
"GB-CBF",
"GB-CCG",
"GB-CGN",
"GB-CHE",
"GB-CHW",
"GB-CLD",
"GB-CLK",
"GB-CMA",
"GB-CMD",
"GB-CMN",
"GB-CON",
"GB-COV",
"GB-CRF",
"GB-CRY",
"GB-CWY",
"GB-DAL",
"GB-DBY",
"GB-DEN",
"GB-DER",
"GB-DEV",
"GB-DGY",
"GB-DNC",
"GB-DND",
"GB-DOR",
"GB-DRS",
"GB-DUD",
"GB-DUR",
"GB-EAL",
"GB-EAW",
"GB-EAY",
"GB-EDH",
"GB-EDU",
"GB-ELN",
"GB-ELS",
"GB-ENF",
"GB-ENG",
"GB-ERW",
"GB-ERY",
"GB-ESS",
"GB-ESX",
"GB-FAL",
"GB-FIF",
"GB-FLN",
"GB-FMO",
"GB-GAT",
"GB-GBN",
"GB-GLG",
"GB-GLS",
"GB-GRE",
"GB-GWN",
"GB-HAL",
"GB-HAM",
"GB-HAV",
"GB-HCK",
"GB-HEF",
"GB-HIL",
"GB-HLD",
"GB-HMF",
"GB-HNS",
"GB-HPL",
"GB-HRT",
"GB-HRW",
"GB-HRY",
"GB-IOS",
"GB-IOW",
"GB-ISL",
"GB-IVC",
"GB-KEC",
"GB-KEN",
"GB-KHL",
"GB-KIR",
"GB-KTT",
"GB-KWL",
"GB-LAN",
"GB-LBC",
"GB-LBH",
"GB-LCE",
"GB-LDS",
"GB-LEC",
"GB-LEW",
"GB-LIN",
"GB-LIV",
"GB-LND",
"GB-LUT",
"GB-MAN",
"GB-MDB",
"GB-MDW",
"GB-MEA",
"GB-MIK",
"GB-MLN",
"GB-MON",
"GB-MRT",
"GB-MRY",
"GB-MTY",
"GB-MUL",
"GB-NAY",
"GB-NBL",
"GB-NEL",
"GB-NET",
"GB-NFK",
"GB-NGM",
"GB-NIR",
"GB-NLK",
"GB-NLN",
"GB-NMD",
"GB-NSM",
"GB-NTH",
"GB-NTL",
"GB-NTT",
"GB-NTY",
"GB-NWM",
"GB-NWP",
"GB-NYK",
"GB-OLD",
"GB-ORK",
"GB-OXF",
"GB-PEM",
"GB-PKN",
"GB-PLY",
"GB-POR",
"GB-POW",
"GB-PTE",
"GB-RCC",
"GB-RCH",
"GB-RCT",
"GB-RDB",
"GB-RDG",
"GB-RFW",
"GB-RIC",
"GB-ROT",
"GB-RUT",
"GB-SAW",
"GB-SAY",
"GB-SCB",
"GB-SCT",
"GB-SFK",
"GB-SFT",
"GB-SGC",
"GB-SHF",
"GB-SHN",
"GB-SHR",
"GB-SKP",
"GB-SLF",
"GB-SLG",
"GB-SLK",
"GB-SND",
"GB-SOL",
"GB-SOM",
"GB-SOS",
"GB-SRY",
"GB-STE",
"GB-STG",
"GB-STH",
"GB-STN",
"GB-STS",
"GB-STT",
"GB-STY",
"GB-SWA",
"GB-SWD",
"GB-SWK",
"GB-TAM",
"GB-TFW",
"GB-THR",
"GB-TOB",
"GB-TOF",
"GB-TRF",
"GB-TWH",
"GB-UKM",
"GB-VGL",
"GB-WAR",
"GB-WBK",
"GB-WDU",
"GB-WFT",
"GB-WGN",
"GB-WIL",
"GB-WKF",
"GB-WLL",
"GB-WLN",
"GB-WLS",
"GB-WLV",
"GB-WND",
"GB-WNM",
"GB-WOK",
"GB-WOR",
"GB-WRL",
"GB-WRT",
"GB-WRX",
"GB-WSM",
"GB-WSX",
"GB-YOR",
"GB-ZET",
"GD-01",
"GD-02",
"GD-03",
"GD-04",
"GD-05",
"GD-06",
"GD-10",
"GE-AB",
"GE-AJ",
"GE-GU",
"GE-IM",
"GE-KA",
"GE-KK",
"GE-MM",
"GE-RL",
"GE-SJ",
"GE-SK",
"GE-SZ",
"GE-TB",
"GH-AA",
"GH-AF",
"GH-AH",
"GH-BA",
"GH-BE",
"GH-BO",
"GH-CP",
"GH-EP",
"GH-NE",
"GH-NP",
"GH-OT",
"GH-SV",
"GH-TV",
"GH-UE",
"GH-UW",
"GH-WN",
"GH-WP",
"GL-AV",
"GL-KU",
"GL-QE",
"GL-QT",
"GL-SM",
"GM-B",
"GM-L",
"GM-M",
"GM-N",
"GM-U",
"GM-W",
"GN-B",
"GN-BE",
"GN-BF",
"GN-BK",
"GN-C",
"GN-CO",
"GN-D",
"GN-DB",
"GN-DI",
"GN-DL",
"GN-DU",
"GN-F",
"GN-FA",
"GN-FO",
"GN-FR",
"GN-GA",
"GN-GU",
"GN-K",
"GN-KA",
"GN-KB",
"GN-KD",
"GN-KE",
"GN-KN",
"GN-KO",
"GN-KS",
"GN-L",
"GN-LA",
"GN-LE",
"GN-LO",
"GN-M",
"GN-MC",
"GN-MD",
"GN-ML",
"GN-MM",
"GN-N",
"GN-NZ",
"GN-PI",
"GN-SI",
"GN-TE",
"GN-TO",
"GN-YO",
"GQ-AN",
"GQ-BN",
"GQ-BS",
"GQ-C",
"GQ-CS",
"GQ-DJ",
"GQ-I",
"GQ-KN",
"GQ-LI",
"GQ-WN",
"GR-69",
"GR-A",
"GR-B",
"GR-C",
"GR-D",
"GR-E",
"GR-F",
"GR-G",
"GR-H",
"GR-I",
"GR-J",
"GR-K",
"GR-L",
"GR-M",
"GT-AV",
"GT-BV",
"GT-CM",
"GT-CQ",
"GT-ES",
"GT-GU",
"GT-HU",
"GT-IZ",
"GT-JA",
"GT-JU",
"GT-PE",
"GT-PR",
"GT-QC",
"GT-QZ",
"GT-RE",
"GT-SA",
"GT-SM",
"GT-SO",
"GT-SR",
"GT-SU",
"GT-TO",
"GT-ZA",
"GW-BA",
"GW-BL",
"GW-BM",
"GW-BS",
"GW-CA",
"GW-GA",
"GW-L",
"GW-N",
"GW-OI",
"GW-QU",
"GW-S",
"GW-TO",
"GY-BA",
"GY-CU",
"GY-DE",
"GY-EB",
"GY-ES",
"GY-MA",
"GY-PM",
"GY-PT",
"GY-UD",
"GY-UT",
"HN-AT",
"HN-CH",
"HN-CL",
"HN-CM",
"HN-CP",
"HN-CR",
"HN-EP",
"HN-FM",
"HN-GD",
"HN-IB",
"HN-IN",
"HN-LE",
"HN-LP",
"HN-OC",
"HN-OL",
"HN-SB",
"HN-VA",
"HN-YO",
"HR-01",
"HR-02",
"HR-03",
"HR-04",
"HR-05",
"HR-06",
"HR-07",
"HR-08",
"HR-09",
"HR-10",
"HR-11",
"HR-12",
"HR-13",
"HR-14",
"HR-15",
"HR-16",
"HR-17",
"HR-18",
"HR-19",
"HR-20",
"HR-21",
"HT-AR",
"HT-CE",
"HT-GA",
"HT-ND",
"HT-NE",
"HT-NI",
"HT-NO",
"HT-OU",
"HT-SD",
"HT-SE",
"HU-BA",
"HU-BC",
"HU-BE",
"HU-BK",
"HU-BU",
"HU-BZ",
"HU-CS",
"HU-DE",
"HU-DU",
"HU-EG",
"HU-ER",
"HU-FE",
"HU-GS",
"HU-GY",
"HU-HB",
"HU-HE",
"HU-HV",
"HU-JN",
"HU-KE",
"HU-KM",
"HU-KV",
"HU-MI",
"HU-NK",
"HU-NO",
"HU-NY",
"HU-PE",
"HU-PS",
"HU-SD",
"HU-SF",
"HU-SH",
"HU-SK",
"HU-SN",
"HU-SO",
"HU-SS",
"HU-ST",
"HU-SZ",
"HU-TB",
"HU-TO",
"HU-VA",
"HU-VE",
"HU-VM",
"HU-ZA",
"HU-ZE",
"ID-AC",
"ID-BA",
"ID-BB",
"ID-BE",
"ID-BT",
"ID-GO",
"ID-JA",
"ID-JB",
"ID-JI",
"ID-JK",
"ID-JT",
"ID-JW",
"ID-KA",
"ID-KB",
"ID-KI",
"ID-KR",
"ID-KS",
"ID-KT",
"ID-KU",
"ID-LA",
"ID-MA",
"ID-ML",
"ID-MU",
"ID-NB",
"ID-NT",
"ID-NU",
"ID-PA",
"ID-PB",
"ID-PP",
"ID-RI",
"ID-SA",
"ID-SB",
"ID-SG",
"ID-SL",
"ID-SM",
"ID-SN",
"ID-SR",
"ID-SS",
"ID-ST",
"ID-SU",
"ID-YO",
"IE-C",
"IE-CE",
"IE-CN",
"IE-CO",
"IE-CW",
"IE-D",
"IE-DL",
"IE-G",
"IE-KE",
"IE-KK",
"IE-KY",
"IE-L",
"IE-LD",
"IE-LH",
"IE-LK",
"IE-LM",
"IE-LS",
"IE-M",
"IE-MH",
"IE-MN",
"IE-MO",
"IE-OY",
"IE-RN",
"IE-SO",
"IE-TA",
"IE-U",
"IE-WD",
"IE-WH",
"IE-WW",
"IE-WX",
"IL-D",
"IL-HA",
"IL-JM",
"IL-M",
"IL-TA",
"IL-Z",
"IN-AN",
"IN-AP",
"IN-AR",
"IN-AS",
"IN-BR",
"IN-CH",
"IN-CT",
"IN-DH",
"IN-DL",
"IN-GA",
"IN-GJ",
"IN-HP",
"IN-HR",
"IN-JH",
"IN-JK",
"IN-KA",
"IN-KL",
"IN-LA",
"IN-LD",
"IN-MH",
"IN-ML",
"IN-MN",
"IN-MP",
"IN-MZ",
"IN-NL",
"IN-OR",
"IN-PB",
"IN-PY",
"IN-RJ",
"IN-SK",
"IN-TG",
"IN-TN",
"IN-TR",
"IN-UP",
"IN-UT",
"IN-WB",
"IQ-AN",
"IQ-AR",
"IQ-BA",
"IQ-BB",
"IQ-BG",
"IQ-DA",
"IQ-DI",
"IQ-DQ",
"IQ-HA",
"IQ-KA",
"IQ-KI",
"IQ-MA",
"IQ-MU",
"IQ-NA",
"IQ-NI",
"IQ-QA",
"IQ-SD",
"IQ-SU",
"IQ-WA",
"IR-00",
"IR-01",
"IR-02",
"IR-03",
"IR-04",
"IR-05",
"IR-06",
"IR-07",
"IR-08",
"IR-09",
"IR-10",
"IR-11",
"IR-12",
"IR-13",
"IR-14",
"IR-15",
"IR-16",
"IR-17",
"IR-18",
"IR-19",
"IR-20",
"IR-21",
"IR-22",
"IR-23",
"IR-24",
"IR-25",
"IR-26",
"IR-27",
"IR-28",
"IR-29",
"IR-30",
"IS-1",
"IS-2",
"IS-3",
"IS-4",
"IS-5",
"IS-6",
"IS-7",
"IS-8",
"IS-AKH",
"IS-AKN",
"IS-AKU",
"IS-ARN",
"IS-ASA",
"IS-BFJ",
"IS-BLA",
"IS-BLO",
"IS-BOG",
"IS-BOL",
"IS-DAB",
"IS-DAV",
"IS-DJU",
"IS-EOM",
"IS-EYF",
"IS-FJD",
"IS-FJL",
"IS-FLA",
"IS-FLD",
"IS-FLR",
"IS-GAR",
"IS-GOG",
"IS-GRN",
"IS-GRU",
"IS-GRY",
"IS-HAF",
"IS-HEL",
"IS-HRG",
"IS-HRU",
"IS-HUT",
"IS-HUV",
"IS-HVA",
"IS-HVE",
"IS-ISA",
"IS-KAL",
"IS-KJO",
"IS-KOP",
"IS-LAN",
"IS-MOS",
"IS-MYR",
"IS-NOR",
"IS-RGE",
"IS-RGY",
"IS-RHH",
"IS-RKN",
"IS-RKV",
"IS-SBH",
"IS-SBT",
"IS-SDN",
"IS-SDV",
"IS-SEL",
"IS-SEY",
"IS-SFA",
"IS-SHF",
"IS-SKF",
"IS-SKG",
"IS-SKO",
"IS-SKU",
"IS-SNF",
"IS-SOG",
"IS-SOL",
"IS-SSF",
"IS-SSS",
"IS-STR",
"IS-STY",
"IS-SVG",
"IS-TAL",
"IS-THG",
"IS-TJO",
"IS-VEM",
"IS-VER",
"IS-VOP",
"IT-21",
"IT-23",
"IT-25",
"IT-32",
"IT-34",
"IT-36",
"IT-42",
"IT-45",
"IT-52",
"IT-55",
"IT-57",
"IT-62",
"IT-65",
"IT-67",
"IT-72",
"IT-75",
"IT-77",
"IT-78",
"IT-82",
"IT-88",
"IT-AG",
"IT-AL",
"IT-AN",
"IT-AP",
"IT-AQ",
"IT-AR",
"IT-AT",
"IT-AV",
"IT-BA",
"IT-BG",
"IT-BI",
"IT-BL",
"IT-BN",
"IT-BO",
"IT-BR",
"IT-BS",
"IT-BT",
"IT-BZ",
"IT-CA",
"IT-CB",
"IT-CE",
"IT-CH",
"IT-CL",
"IT-CN",
"IT-CO",
"IT-CR",
"IT-CS",
"IT-CT",
"IT-CZ",
"IT-EN",
"IT-FC",
"IT-FE",
"IT-FG",
"IT-FI",
"IT-FM",
"IT-FR",
"IT-GE",
"IT-GO",
"IT-GR",
"IT-IM",
"IT-IS",
"IT-KR",
"IT-LC",
"IT-LE",
"IT-LI",
"IT-LO",
"IT-LT",
"IT-LU",
"IT-MB",
"IT-MC",
"IT-ME",
"IT-MI",
"IT-MN",
"IT-MO",
"IT-MS",
"IT-MT",
"IT-NA",
"IT-NO",
"IT-NU",
"IT-OR",
"IT-PA",
"IT-PC",
"IT-PD",
"IT-PE",
"IT-PG",
"IT-PI",
"IT-PN",
"IT-PO",
"IT-PR",
"IT-PT",
"IT-PU",
"IT-PV",
"IT-PZ",
"IT-RA",
"IT-RC",
"IT-RE",
"IT-RG",
"IT-RI",
"IT-RM",
"IT-RN",
"IT-RO",
"IT-SA",
"IT-SI",
"IT-SO",
"IT-SP",
"IT-SR",
"IT-SS",
"IT-SU",
"IT-SV",
"IT-TA",
"IT-TE",
"IT-TN",
"IT-TO",
"IT-TP",
"IT-TR",
"IT-TS",
"IT-TV",
"IT-UD",
"IT-VA",
"IT-VB",
"IT-VC",
"IT-VE",
"IT-VI",
"IT-VR",
"IT-VT",
"IT-VV",
"JM-01",
"JM-02",
"JM-03",
"JM-04",
"JM-05",
"JM-06",
"JM-07",
"JM-08",
"JM-09",
"JM-10",
"JM-11",
"JM-12",
"JM-13",
"JM-14",
"JO-AJ",
"JO-AM",
"JO-AQ",
"JO-AT",
"JO-AZ",
"JO-BA",
"JO-IR",
"JO-JA",
"JO-KA",
"JO-MA",
"JO-MD",
"JO-MN",
"JP-01",
"JP-02",
"JP-03",
"JP-04",
"JP-05",
"JP-06",
"JP-07",
"JP-08",
"JP-09",
"JP-10",
"JP-11",
"JP-12",
"JP-13",
"JP-14",
"JP-15",
"JP-16",
"JP-17",
"JP-18",
"JP-19",
"JP-20",
"JP-21",
"JP-22",
"JP-23",
"JP-24",
"JP-25",
"JP-26",
"JP-27",
"JP-28",
"JP-29",
"JP-30",
"JP-31",
"JP-32",
"JP-33",
"JP-34",
"JP-35",
"JP-36",
"JP-37",
"JP-38",
"JP-39",
"JP-40",
"JP-41",
"JP-42",
"JP-43",
"JP-44",
"JP-45",
"JP-46",
"JP-47",
"KE-01",
"KE-02",
"KE-03",
"KE-04",
"KE-05",
"KE-06",
"KE-07",
"KE-08",
"KE-09",
"KE-10",
"KE-11",
"KE-12",
"KE-13",
"KE-14",
"KE-15",
"KE-16",
"KE-17",
"KE-18",
"KE-19",
"KE-20",
"KE-21",
"KE-22",
"KE-23",
"KE-24",
"KE-25",
"KE-26",
"KE-27",
"KE-28",
"KE-29",
"KE-30",
"KE-31",
"KE-32",
"KE-33",
"KE-34",
"KE-35",
"KE-36",
"KE-37",
"KE-38",
"KE-39",
"KE-40",
"KE-41",
"KE-42",
"KE-43",
"KE-44",
"KE-45",
"KE-46",
"KE-47",
"KG-B",
"KG-C",
"KG-GB",
"KG-GO",
"KG-J",
"KG-N",
"KG-O",
"KG-T",
"KG-Y",
"KH-1",
"KH-10",
"KH-11",
"KH-12",
"KH-13",
"KH-14",
"KH-15",
"KH-16",
"KH-17",
"KH-18",
"KH-19",
"KH-2",
"KH-20",
"KH-21",
"KH-22",
"KH-23",
"KH-24",
"KH-25",
"KH-3",
"KH-4",
"KH-5",
"KH-6",
"KH-7",
"KH-8",
"KH-9",
"KI-G",
"KI-L",
"KI-P",
"KM-A",
"KM-G",
"KM-M",
"KN-01",
"KN-02",
"KN-03",
"KN-04",
"KN-05",
"KN-06",
"KN-07",
"KN-08",
"KN-09",
"KN-10",
"KN-11",
"KN-12",
"KN-13",
"KN-15",
"KN-K",
"KN-N",
"KP-01",
"KP-02",
"KP-03",
"KP-04",
"KP-05",
"KP-06",
"KP-07",
"KP-08",
"KP-09",
"KP-10",
"KP-13",
"KP-14",
"KR-11",
"KR-26",
"KR-27",
"KR-28",
"KR-29",
"KR-30",
"KR-31",
"KR-41",
"KR-42",
"KR-43",
"KR-44",
"KR-45",
"KR-46",
"KR-47",
"KR-48",
"KR-49",
"KR-50",
"KW-AH",
"KW-FA",
"KW-HA",
"KW-JA",
"KW-KU",
"KW-MU",
"KZ-AKM",
"KZ-AKT",
"KZ-ALA",
"KZ-ALM",
"KZ-AST",
"KZ-ATY",
"KZ-KAR",
"KZ-KUS",
"KZ-KZY",
"KZ-MAN",
"KZ-PAV",
"KZ-SEV",
"KZ-SHY",
"KZ-VOS",
"KZ-YUZ",
"KZ-ZAP",
"KZ-ZHA",
"LA-AT",
"LA-BK",
"LA-BL",
"LA-CH",
"LA-HO",
"LA-KH",
"LA-LM",
"LA-LP",
"LA-OU",
"LA-PH",
"LA-SL",
"LA-SV",
"LA-VI",
"LA-VT",
"LA-XA",
"LA-XE",
"LA-XI",
"LA-XS",
"LB-AK",
"LB-AS",
"LB-BA",
"LB-BH",
"LB-BI",
"LB-JA",
"LB-JL",
"LB-NA",
"LC-01",
"LC-02",
"LC-03",
"LC-05",
"LC-06",
"LC-07",
"LC-08",
"LC-10",
"LC-11",
"LC-12",
"LI-01",
"LI-02",
"LI-03",
"LI-04",
"LI-05",
"LI-06",
"LI-07",
"LI-08",
"LI-09",
"LI-10",
"LI-11",
"LK-1",
"LK-11",
"LK-12",
"LK-13",
"LK-2",
"LK-21",
"LK-22",
"LK-23",
"LK-3",
"LK-31",
"LK-32",
"LK-33",
"LK-4",
"LK-41",
"LK-42",
"LK-43",
"LK-44",
"LK-45",
"LK-5",
"LK-51",
"LK-52",
"LK-53",
"LK-6",
"LK-61",
"LK-62",
"LK-7",
"LK-71",
"LK-72",
"LK-8",
"LK-81",
"LK-82",
"LK-9",
"LK-91",
"LK-92",
"LR-BG",
"LR-BM",
"LR-CM",
"LR-GB",
"LR-GG",
"LR-GK",
"LR-GP",
"LR-LO",
"LR-MG",
"LR-MO",
"LR-MY",
"LR-NI",
"LR-RG",
"LR-RI",
"LR-SI",
"LS-A",
"LS-B",
"LS-C",
"LS-D",
"LS-E",
"LS-F",
"LS-G",
"LS-H",
"LS-J",
"LS-K",
"LT-01",
"LT-02",
"LT-03",
"LT-04",
"LT-05",
"LT-06",
"LT-07",
"LT-08",
"LT-09",
"LT-10",
"LT-11",
"LT-12",
"LT-13",
"LT-14",
"LT-15",
"LT-16",
"LT-17",
"LT-18",
"LT-19",
"LT-20",
"LT-21",
"LT-22",
"LT-23",
"LT-24",
"LT-25",
"LT-26",
"LT-27",
"LT-28",
"LT-29",
"LT-30",
"LT-31",
"LT-32",
"LT-33",
"LT-34",
"LT-35",
"LT-36",
"LT-37",
"LT-38",
"LT-39",
"LT-40",
"LT-41",
"LT-42",
"LT-43",
"LT-44",
"LT-45",
"LT-46",
"LT-47",
"LT-48",
"LT-49",
"LT-50",
"LT-51",
"LT-52",
"LT-53",
"LT-54",
"LT-55",
"LT-56",
"LT-57",
"LT-58",
"LT-59",
"LT-60",
"LT-AL",
"LT-KL",
"LT-KU",
"LT-MR",
"LT-PN",
"LT-SA",
"LT-TA",
"LT-TE",
"LT-UT",
"LT-VL",
"LU-CA",
"LU-CL",
"LU-DI",
"LU-EC",
"LU-ES",
"LU-GR",
"LU-LU",
"LU-ME",
"LU-RD",
"LU-RM",
"LU-VD",
"LU-WI",
"LV-001",
"LV-002",
"LV-003",
"LV-004",
"LV-005",
"LV-006",
"LV-007",
"LV-008",
"LV-009",
"LV-010",
"LV-011",
"LV-012",
"LV-013",
"LV-014",
"LV-015",
"LV-016",
"LV-017",
"LV-018",
"LV-019",
"LV-020",
"LV-021",
"LV-022",
"LV-023",
"LV-024",
"LV-025",
"LV-026",
"LV-027",
"LV-028",
"LV-029",
"LV-030",
"LV-031",
"LV-032",
"LV-033",
"LV-034",
"LV-035",
"LV-036",
"LV-037",
"LV-038",
"LV-039",
"LV-040",
"LV-041",
"LV-042",
"LV-043",
"LV-044",
"LV-045",
"LV-046",
"LV-047",
"LV-048",
"LV-049",
"LV-050",
"LV-051",
"LV-052",
"LV-053",
"LV-054",
"LV-055",
"LV-056",
"LV-057",
"LV-058",
"LV-059",
"LV-060",
"LV-061",
"LV-062",
"LV-063",
"LV-064",
"LV-065",
"LV-066",
"LV-067",
"LV-068",
"LV-069",
"LV-070",
"LV-071",
"LV-072",
"LV-073",
"LV-074",
"LV-075",
"LV-076",
"LV-077",
"LV-078",
"LV-079",
"LV-080",
"LV-081",
"LV-082",
"LV-083",
"LV-084",
"LV-085",
"LV-086",
"LV-087",
"LV-088",
"LV-089",
"LV-090",
"LV-091",
"LV-092",
"LV-093",
"LV-094",
"LV-095",
"LV-096",
"LV-097",
"LV-098",
"LV-099",
"LV-100",
"LV-101",
"LV-102",
"LV-103",
"LV-104",
"LV-105",
"LV-106",
"LV-107",
"LV-108",
"LV-109",
"LV-110",
"LV-DGV",
"LV-JEL",
"LV-JKB",
"LV-JUR",
"LV-LPX",
"LV-REZ",
"LV-RIX",
"LV-VEN",
"LV-VMR",
"LY-BA",
"LY-BU",
"LY-DR",
"LY-GT",
"LY-JA",
"LY-JG",
"LY-JI",
"LY-JU",
"LY-KF",
"LY-MB",
"LY-MI",
"LY-MJ",
"LY-MQ",
"LY-NL",
"LY-NQ",
"LY-SB",
"LY-SR",
"LY-TB",
"LY-WA",
"LY-WD",
"LY-WS",
"LY-ZA",
"MA-01",
"MA-02",
"MA-03",
"MA-04",
"MA-05",
"MA-06",
"MA-07",
"MA-08",
"MA-09",
"MA-10",
"MA-11",
"MA-12",
"MA-AGD",
"MA-AOU",
"MA-ASZ",
"MA-AZI",
"MA-BEM",
"MA-BER",
"MA-BES",
"MA-BOD",
"MA-BOM",
"MA-BRR",
"MA-CAS",
"MA-CHE",
"MA-CHI",
"MA-CHT",
"MA-DRI",
"MA-ERR",
"MA-ESI",
"MA-ESM",
"MA-FAH",
"MA-FES",
"MA-FIG",
"MA-FQH",
"MA-GUE",
"MA-GUF",
"MA-HAJ",
"MA-HAO",
"MA-HOC",
"MA-IFR",
"MA-INE",
"MA-JDI",
"MA-JRA",
"MA-KEN",
"MA-KES",
"MA-KHE",
"MA-KHN",
"MA-KHO",
"MA-LAA",
"MA-LAR",
"MA-MAR",
"MA-MDF",
"MA-MED",
"MA-MEK",
"MA-MID",
"MA-MOH",
"MA-MOU",
"MA-NAD",
"MA-NOU",
"MA-OUA",
"MA-OUD",
"MA-OUJ",
"MA-OUZ",
"MA-RAB",
"MA-REH",
"MA-SAF",
"MA-SAL",
"MA-SEF",
"MA-SET",
"MA-SIB",
"MA-SIF",
"MA-SIK",
"MA-SIL",
"MA-SKH",
"MA-TAF",
"MA-TAI",
"MA-TAO",
"MA-TAR",
"MA-TAT",
"MA-TAZ",
"MA-TET",
"MA-TIN",
"MA-TIZ",
"MA-TNG",
"MA-TNT",
"MA-YUS",
"MA-ZAG",
"MC-CL",
"MC-CO",
"MC-FO",
"MC-GA",
"MC-JE",
"MC-LA",
"MC-MA",
"MC-MC",
"MC-MG",
"MC-MO",
"MC-MU",
"MC-PH",
"MC-SD",
"MC-SO",
"MC-SP",
"MC-SR",
"MC-VR",
"MD-AN",
"MD-BA",
"MD-BD",
"MD-BR",
"MD-BS",
"MD-CA",
"MD-CL",
"MD-CM",
"MD-CR",
"MD-CS",
"MD-CT",
"MD-CU",
"MD-DO",
"MD-DR",
"MD-DU",
"MD-ED",
"MD-FA",
"MD-FL",
"MD-GA",
"MD-GL",
"MD-HI",
"MD-IA",
"MD-LE",
"MD-NI",
"MD-OC",
"MD-OR",
"MD-RE",
"MD-RI",
"MD-SD",
"MD-SI",
"MD-SN",
"MD-SO",
"MD-ST",
"MD-SV",
"MD-TA",
"MD-TE",
"MD-UN",
"ME-01",
"ME-02",
"ME-03",
"ME-04",
"ME-05",
"ME-06",
"ME-07",
"ME-08",
"ME-09",
"ME-10",
"ME-11",
"ME-12",
"ME-13",
"ME-14",
"ME-15",
"ME-16",
"ME-17",
"ME-18",
"ME-19",
"ME-20",
"ME-21",
"ME-22",
"ME-23",
"ME-24",
"MG-A",
"MG-D",
"MG-F",
"MG-M",
"MG-T",
"MG-U",
"MH-ALK",
"MH-ALL",
"MH-ARN",
"MH-AUR",
"MH-EBO",
"MH-ENI",
"MH-JAB",
"MH-JAL",
"MH-KIL",
"MH-KWA",
"MH-L",
"MH-LAE",
"MH-LIB",
"MH-LIK",
"MH-MAJ",
"MH-MAL",
"MH-MEJ",
"MH-MIL",
"MH-NMK",
"MH-NMU",
"MH-RON",
"MH-T",
"MH-UJA",
"MH-UTI",
"MH-WTH",
"MH-WTJ",
"MK-101",
"MK-102",
"MK-103",
"MK-104",
"MK-105",
"MK-106",
"MK-107",
"MK-108",
"MK-109",
"MK-201",
"MK-202",
"MK-203",
"MK-204",
"MK-205",
"MK-206",
"MK-207",
"MK-208",
"MK-209",
"MK-210",
"MK-211",
"MK-301",
"MK-303",
"MK-304",
"MK-307",
"MK-308",
"MK-310",
"MK-311",
"MK-312",
"MK-313",
"MK-401",
"MK-402",
"MK-403",
"MK-404",
"MK-405",
"MK-406",
"MK-407",
"MK-408",
"MK-409",
"MK-410",
"MK-501",
"MK-502",
"MK-503",
"MK-504",
"MK-505",
"MK-506",
"MK-507",
"MK-508",
"MK-509",
"MK-601",
"MK-602",
"MK-603",
"MK-604",
"MK-605",
"MK-606",
"MK-607",
"MK-608",
"MK-609",
"MK-701",
"MK-702",
"MK-703",
"MK-704",
"MK-705",
"MK-706",
"MK-801",
"MK-802",
"MK-803",
"MK-804",
"MK-805",
"MK-806",
"MK-807",
"MK-808",
"MK-809",
"MK-810",
"MK-811",
"MK-812",
"MK-813",
"MK-814",
"MK-815",
"MK-816",
"MK-817",
"ML-1",
"ML-10",
"ML-2",
"ML-3",
"ML-4",
"ML-5",
"ML-6",
"ML-7",
"ML-8",
"ML-9",
"ML-BKO",
"MM-01",
"MM-02",
"MM-03",
"MM-04",
"MM-05",
"MM-06",
"MM-07",
"MM-11",
"MM-12",
"MM-13",
"MM-14",
"MM-15",
"MM-16",
"MM-17",
"MM-18",
"MN-035",
"MN-037",
"MN-039",
"MN-041",
"MN-043",
"MN-046",
"MN-047",
"MN-049",
"MN-051",
"MN-053",
"MN-055",
"MN-057",
"MN-059",
"MN-061",
"MN-063",
"MN-064",
"MN-065",
"MN-067",
"MN-069",
"MN-071",
"MN-073",
"MN-1",
"MR-01",
"MR-02",
"MR-03",
"MR-04",
"MR-05",
"MR-06",
"MR-07",
"MR-08",
"MR-09",
"MR-10",
"MR-11",
"MR-12",
"MR-13",
"MR-14",
"MR-15",
"MT-01",
"MT-02",
"MT-03",
"MT-04",
"MT-05",
"MT-06",
"MT-07",
"MT-08",
"MT-09",
"MT-10",
"MT-11",
"MT-12",
"MT-13",
"MT-14",
"MT-15",
"MT-16",
"MT-17",
"MT-18",
"MT-19",
"MT-20",
"MT-21",
"MT-22",
"MT-23",
"MT-24",
"MT-25",
"MT-26",
"MT-27",
"MT-28",
"MT-29",
"MT-30",
"MT-31",
"MT-32",
"MT-33",
"MT-34",
"MT-35",
"MT-36",
"MT-37",
"MT-38",
"MT-39",
"MT-40",
"MT-41",
"MT-42",
"MT-43",
"MT-44",
"MT-45",
"MT-46",
"MT-47",
"MT-48",
"MT-49",
"MT-50",
"MT-51",
"MT-52",
"MT-53",
"MT-54",
"MT-55",
"MT-56",
"MT-57",
"MT-58",
"MT-59",
"MT-60",
"MT-61",
"MT-62",
"MT-63",
"MT-64",
"MT-65",
"MT-66",
"MT-67",
"MT-68",
"MU-AG",
"MU-BL",
"MU-CC",
"MU-FL",
"MU-GP",
"MU-MO",
"MU-PA",
"MU-PL",
"MU-PW",
"MU-RO",
"MU-RR",
"MU-SA",
"MV-00",
"MV-01",
"MV-02",
"MV-03",
"MV-04",
"MV-05",
"MV-07",
"MV-08",
"MV-12",
"MV-13",
"MV-14",
"MV-17",
"MV-20",
"MV-23",
"MV-24",
"MV-25",
"MV-26",
"MV-27",
"MV-28",
"MV-29",
"MV-MLE",
"MW-BA",
"MW-BL",
"MW-C",
"MW-CK",
"MW-CR",
"MW-CT",
"MW-DE",
"MW-DO",
"MW-KR",
"MW-KS",
"MW-LI",
"MW-LK",
"MW-MC",
"MW-MG",
"MW-MH",
"MW-MU",
"MW-MW",
"MW-MZ",
"MW-N",
"MW-NB",
"MW-NE",
"MW-NI",
"MW-NK",
"MW-NS",
"MW-NU",
"MW-PH",
"MW-RU",
"MW-S",
"MW-SA",
"MW-TH",
"MW-ZO",
"MX-AGU",
"MX-BCN",
"MX-BCS",
"MX-CAM",
"MX-CHH",
"MX-CHP",
"MX-CMX",
"MX-COA",
"MX-COL",
"MX-DUR",
"MX-GRO",
"MX-GUA",
"MX-HID",
"MX-JAL",
"MX-MEX",
"MX-MIC",
"MX-MOR",
"MX-NAY",
"MX-NLE",
"MX-OAX",
"MX-PUE",
"MX-QUE",
"MX-ROO",
"MX-SIN",
"MX-SLP",
"MX-SON",
"MX-TAB",
"MX-TAM",
"MX-TLA",
"MX-VER",
"MX-YUC",
"MX-ZAC",
"MY-01",
"MY-02",
"MY-03",
"MY-04",
"MY-05",
"MY-06",
"MY-07",
"MY-08",
"MY-09",
"MY-10",
"MY-11",
"MY-12",
"MY-13",
"MY-14",
"MY-15",
"MY-16",
"MZ-A",
"MZ-B",
"MZ-G",
"MZ-I",
"MZ-L",
"MZ-MPM",
"MZ-N",
"MZ-P",
"MZ-Q",
"MZ-S",
"MZ-T",
"NA-CA",
"NA-ER",
"NA-HA",
"NA-KA",
"NA-KE",
"NA-KH",
"NA-KU",
"NA-KW",
"NA-OD",
"NA-OH",
"NA-ON",
"NA-OS",
"NA-OT",
"NA-OW",
"NE-1",
"NE-2",
"NE-3",
"NE-4",
"NE-5",
"NE-6",
"NE-7",
"NE-8",
"NG-AB",
"NG-AD",
"NG-AK",
"NG-AN",
"NG-BA",
"NG-BE",
"NG-BO",
"NG-BY",
"NG-CR",
"NG-DE",
"NG-EB",
"NG-ED",
"NG-EK",
"NG-EN",
"NG-FC",
"NG-GO",
"NG-IM",
"NG-JI",
"NG-KD",
"NG-KE",
"NG-KN",
"NG-KO",
"NG-KT",
"NG-KW",
"NG-LA",
"NG-NA",
"NG-NI",
"NG-OG",
"NG-ON",
"NG-OS",
"NG-OY",
"NG-PL",
"NG-RI",
"NG-SO",
"NG-TA",
"NG-YO",
"NG-ZA",
"NI-AN",
"NI-AS",
"NI-BO",
"NI-CA",
"NI-CI",
"NI-CO",
"NI-ES",
"NI-GR",
"NI-JI",
"NI-LE",
"NI-MD",
"NI-MN",
"NI-MS",
"NI-MT",
"NI-NS",
"NI-RI",
"NI-SJ",
"NL-AW",
"NL-BQ1",
"NL-BQ2",
"NL-BQ3",
"NL-CW",
"NL-DR",
"NL-FL",
"NL-FR",
"NL-GE",
"NL-GR",
"NL-LI",
"NL-NB",
"NL-NH",
"NL-OV",
"NL-SX",
"NL-UT",
"NL-ZE",
"NL-ZH",
"NO-03",
"NO-11",
"NO-15",
"NO-18",
"NO-21",
"NO-22",
"NO-30",
"NO-34",
"NO-38",
"NO-42",
"NO-46",
"NO-50",
"NO-54",
"NP-1",
"NP-2",
"NP-3",
"NP-4",
"NP-5",
"NP-BA",
"NP-BH",
"NP-DH",
"NP-GA",
"NP-JA",
"NP-KA",
"NP-KO",
"NP-LU",
"NP-MA",
"NP-ME",
"NP-NA",
"NP-P1",
"NP-P2",
"NP-P3",
"NP-P4",
"NP-P5",
"NP-P6",
"NP-P7",
"NP-RA",
"NP-SA",
"NP-SE",
"NR-01",
"NR-02",
"NR-03",
"NR-04",
"NR-05",
"NR-06",
"NR-07",
"NR-08",
"NR-09",
"NR-10",
"NR-11",
"NR-12",
"NR-13",
"NR-14",
"NZ-AUK",
"NZ-BOP",
"NZ-CAN",
"NZ-CIT",
"NZ-GIS",
"NZ-HKB",
"NZ-MBH",
"NZ-MWT",
"NZ-NSN",
"NZ-NTL",
"NZ-OTA",
"NZ-STL",
"NZ-TAS",
"NZ-TKI",
"NZ-WGN",
"NZ-WKO",
"NZ-WTC",
"OM-BJ",
"OM-BS",
"OM-BU",
"OM-DA",
"OM-MA",
"OM-MU",
"OM-SJ",
"OM-SS",
"OM-WU",
"OM-ZA",
"OM-ZU",
"PA-1",
"PA-10",
"PA-2",
"PA-3",
"PA-4",
"PA-5",
"PA-6",
"PA-7",
"PA-8",
"PA-9",
"PA-EM",
"PA-KY",
"PA-NB",
"PE-AMA",
"PE-ANC",
"PE-APU",
"PE-ARE",
"PE-AYA",
"PE-CAJ",
"PE-CAL",
"PE-CUS",
"PE-HUC",
"PE-HUV",
"PE-ICA",
"PE-JUN",
"PE-LAL",
"PE-LAM",
"PE-LIM",
"PE-LMA",
"PE-LOR",
"PE-MDD",
"PE-MOQ",
"PE-PAS",
"PE-PIU",
"PE-PUN",
"PE-SAM",
"PE-TAC",
"PE-TUM",
"PE-UCA",
"PG-CPK",
"PG-CPM",
"PG-EBR",
"PG-EHG",
"PG-EPW",
"PG-ESW",
"PG-GPK",
"PG-HLA",
"PG-JWK",
"PG-MBA",
"PG-MPL",
"PG-MPM",
"PG-MRL",
"PG-NCD",
"PG-NIK",
"PG-NPP",
"PG-NSB",
"PG-SAN",
"PG-SHM",
"PG-WBK",
"PG-WHM",
"PG-WPD",
"PH-00",
"PH-01",
"PH-02",
"PH-03",
"PH-05",
"PH-06",
"PH-07",
"PH-08",
"PH-09",
"PH-10",
"PH-11",
"PH-12",
"PH-13",
"PH-14",
"PH-15",
"PH-40",
"PH-41",
"PH-ABR",
"PH-AGN",
"PH-AGS",
"PH-AKL",
"PH-ALB",
"PH-ANT",
"PH-APA",
"PH-AUR",
"PH-BAN",
"PH-BAS",
"PH-BEN",
"PH-BIL",
"PH-BOH",
"PH-BTG",
"PH-BTN",
"PH-BUK",
"PH-BUL",
"PH-CAG",
"PH-CAM",
"PH-CAN",
"PH-CAP",
"PH-CAS",
"PH-CAT",
"PH-CAV",
"PH-CEB",
"PH-COM",
"PH-DAO",
"PH-DAS",
"PH-DAV",
"PH-DIN",
"PH-DVO",
"PH-EAS",
"PH-GUI",
"PH-IFU",
"PH-ILI",
"PH-ILN",
"PH-ILS",
"PH-ISA",
"PH-KAL",
"PH-LAG",
"PH-LAN",
"PH-LAS",
"PH-LEY",
"PH-LUN",
"PH-MAD",
"PH-MAG",
"PH-MAS",
"PH-MDC",
"PH-MDR",
"PH-MOU",
"PH-MSC",
"PH-MSR",
"PH-NCO",
"PH-NEC",
"PH-NER",
"PH-NSA",
"PH-NUE",
"PH-NUV",
"PH-PAM",
"PH-PAN",
"PH-PLW",
"PH-QUE",
"PH-QUI",
"PH-RIZ",
"PH-ROM",
"PH-SAR",
"PH-SCO",
"PH-SIG",
"PH-SLE",
"PH-SLU",
"PH-SOR",
"PH-SUK",
"PH-SUN",
"PH-SUR",
"PH-TAR",
"PH-TAW",
"PH-WSA",
"PH-ZAN",
"PH-ZAS",
"PH-ZMB",
"PH-ZSI",
"PK-BA",
"PK-GB",
"PK-IS",
"PK-JK",
"PK-KP",
"PK-PB",
"PK-SD",
"PK-TA",
"PL-02",
"PL-04",
"PL-06",
"PL-08",
"PL-10",
"PL-12",
"PL-14",
"PL-16",
"PL-18",
"PL-20",
"PL-22",
"PL-24",
"PL-26",
"PL-28",
"PL-30",
"PL-32",
"PS-BTH",
"PS-DEB",
"PS-GZA",
"PS-HBN",
"PS-JEM",
"PS-JEN",
"PS-JRH",
"PS-KYS",
"PS-NBS",
"PS-NGZ",
"PS-QQA",
"PS-RBH",
"PS-RFH",
"PS-SLT",
"PS-TBS",
"PS-TKM",
"PT-01",
"PT-02",
"PT-03",
"PT-04",
"PT-05",
"PT-06",
"PT-07",
"PT-08",
"PT-09",
"PT-10",
"PT-11",
"PT-12",
"PT-13",
"PT-14",
"PT-15",
"PT-16",
"PT-17",
"PT-18",
"PT-20",
"PT-30",
"PW-002",
"PW-004",
"PW-010",
"PW-050",
"PW-100",
"PW-150",
"PW-212",
"PW-214",
"PW-218",
"PW-222",
"PW-224",
"PW-226",
"PW-227",
"PW-228",
"PW-350",
"PW-370",
"PY-1",
"PY-10",
"PY-11",
"PY-12",
"PY-13",
"PY-14",
"PY-15",
"PY-16",
"PY-19",
"PY-2",
"PY-3",
"PY-4",
"PY-5",
"PY-6",
"PY-7",
"PY-8",
"PY-9",
"PY-ASU",
"QA-DA",
"QA-KH",
"QA-MS",
"QA-RA",
"QA-SH",
"QA-US",
"QA-WA",
"QA-ZA",
"RO-AB",
"RO-AG",
"RO-AR",
"RO-B",
"RO-BC",
"RO-BH",
"RO-BN",
"RO-BR",
"RO-BT",
"RO-BV",
"RO-BZ",
"RO-CJ",
"RO-CL",
"RO-CS",
"RO-CT",
"RO-CV",
"RO-DB",
"RO-DJ",
"RO-GJ",
"RO-GL",
"RO-GR",
"RO-HD",
"RO-HR",
"RO-IF",
"RO-IL",
"RO-IS",
"RO-MH",
"RO-MM",
"RO-MS",
"RO-NT",
"RO-OT",
"RO-PH",
"RO-SB",
"RO-SJ",
"RO-SM",
"RO-SV",
"RO-TL",
"RO-TM",
"RO-TR",
"RO-VL",
"RO-VN",
"RO-VS",
"RS-00",
"RS-01",
"RS-02",
"RS-03",
"RS-04",
"RS-05",
"RS-06",
"RS-07",
"RS-08",
"RS-09",
"RS-10",
"RS-11",
"RS-12",
"RS-13",
"RS-14",
"RS-15",
"RS-16",
"RS-17",
"RS-18",
"RS-19",
"RS-20",
"RS-21",
"RS-22",
"RS-23",
"RS-24",
"RS-25",
"RS-26",
"RS-27",
"RS-28",
"RS-29",
"RS-KM",
"RS-VO",
"RU-AD",
"RU-AL",
"RU-ALT",
"RU-AMU",
"RU-ARK",
"RU-AST",
"RU-BA",
"RU-BEL",
"RU-BRY",
"RU-BU",
"RU-CE",
"RU-CHE",
"RU-CHU",
"RU-CU",
"RU-DA",
"RU-IN",
"RU-IRK",
"RU-IVA",
"RU-KAM",
"RU-KB",
"RU-KC",
"RU-KDA",
"RU-KEM",
"RU-KGD",
"RU-KGN",
"RU-KHA",
"RU-KHM",
"RU-KIR",
"RU-KK",
"RU-KL",
"RU-KLU",
"RU-KO",
"RU-KOS",
"RU-KR",
"RU-KRS",
"RU-KYA",
"RU-LEN",
"RU-LIP",
"RU-MAG",
"RU-ME",
"RU-MO",
"RU-MOS",
"RU-MOW",
"RU-MUR",
"RU-NEN",
"RU-NGR",
"RU-NIZ",
"RU-NVS",
"RU-OMS",
"RU-ORE",
"RU-ORL",
"RU-PER",
"RU-PNZ",
"RU-PRI",
"RU-PSK",
"RU-ROS",
"RU-RYA",
"RU-SA",
"RU-SAK",
"RU-SAM",
"RU-SAR",
"RU-SE",
"RU-SMO",
"RU-SPE",
"RU-STA",
"RU-SVE",
"RU-TA",
"RU-TAM",
"RU-TOM",
"RU-TUL",
"RU-TVE",
"RU-TY",
"RU-TYU",
"RU-UD",
"RU-ULY",
"RU-VGG",
"RU-VLA",
"RU-VLG",
"RU-VOR",
"RU-YAN",
"RU-YAR",
"RU-YEV",
"RU-ZAB",
"RW-01",
"RW-02",
"RW-03",
"RW-04",
"RW-05",
"SA-01",
"SA-02",
"SA-03",
"SA-04",
"SA-05",
"SA-06",
"SA-07",
"SA-08",
"SA-09",
"SA-10",
"SA-11",
"SA-12",
"SA-14",
"SB-CE",
"SB-CH",
"SB-CT",
"SB-GU",
"SB-IS",
"SB-MK",
"SB-ML",
"SB-RB",
"SB-TE",
"SB-WE",
"SC-01",
"SC-02",
"SC-03",
"SC-04",
"SC-05",
"SC-06",
"SC-07",
"SC-08",
"SC-09",
"SC-10",
"SC-11",
"SC-12",
"SC-13",
"SC-14",
"SC-15",
"SC-16",
"SC-17",
"SC-18",
"SC-19",
"SC-20",
"SC-21",
"SC-22",
"SC-23",
"SC-24",
"SC-25",
"SC-26",
"SC-27",
"SD-DC",
"SD-DE",
"SD-DN",
"SD-DS",
"SD-DW",
"SD-GD",
"SD-GK",
"SD-GZ",
"SD-KA",
"SD-KH",
"SD-KN",
"SD-KS",
"SD-NB",
"SD-NO",
"SD-NR",
"SD-NW",
"SD-RS",
"SD-SI",
"SE-AB",
"SE-AC",
"SE-BD",
"SE-C",
"SE-D",
"SE-E",
"SE-F",
"SE-G",
"SE-H",
"SE-I",
"SE-K",
"SE-M",
"SE-N",
"SE-O",
"SE-S",
"SE-T",
"SE-U",
"SE-W",
"SE-X",
"SE-Y",
"SE-Z",
"SG-01",
"SG-02",
"SG-03",
"SG-04",
"SG-05",
"SH-AC",
"SH-HL",
"SH-TA",
"SI-001",
"SI-002",
"SI-003",
"SI-004",
"SI-005",
"SI-006",
"SI-007",
"SI-008",
"SI-009",
"SI-010",
"SI-011",
"SI-012",
"SI-013",
"SI-014",
"SI-015",
"SI-016",
"SI-017",
"SI-018",
"SI-019",
"SI-020",
"SI-021",
"SI-022",
"SI-023",
"SI-024",
"SI-025",
"SI-026",
"SI-027",
"SI-028",
"SI-029",
"SI-030",
"SI-031",
"SI-032",
"SI-033",
"SI-034",
"SI-035",
"SI-036",
"SI-037",
"SI-038",
"SI-039",
"SI-040",
"SI-041",
"SI-042",
"SI-043",
"SI-044",
"SI-045",
"SI-046",
"SI-047",
"SI-048",
"SI-049",
"SI-050",
"SI-051",
"SI-052",
"SI-053",
"SI-054",
"SI-055",
"SI-056",
"SI-057",
"SI-058",
"SI-059",
"SI-060",
"SI-061",
"SI-062",
"SI-063",
"SI-064",
"SI-065",
"SI-066",
"SI-067",
"SI-068",
"SI-069",
"SI-070",
"SI-071",
"SI-072",
"SI-073",
"SI-074",
"SI-075",
"SI-076",
"SI-077",
"SI-078",
"SI-079",
"SI-080",
"SI-081",
"SI-082",
"SI-083",
"SI-084",
"SI-085",
"SI-086",
"SI-087",
"SI-088",
"SI-089",
"SI-090",
"SI-091",
"SI-092",
"SI-093",
"SI-094",
"SI-095",
"SI-096",
"SI-097",
"SI-098",
"SI-099",
"SI-100",
"SI-101",
"SI-102",
"SI-103",
"SI-104",
"SI-105",
"SI-106",
"SI-107",
"SI-108",
"SI-109",
"SI-110",
"SI-111",
"SI-112",
"SI-113",
"SI-114",
"SI-115",
"SI-116",
"SI-117",
"SI-118",
"SI-119",
"SI-120",
"SI-121",
"SI-122",
"SI-123",
"SI-124",
"SI-125",
"SI-126",
"SI-127",
"SI-128",
"SI-129",
"SI-130",
"SI-131",
"SI-132",
"SI-133",
"SI-134",
"SI-135",
"SI-136",
"SI-137",
"SI-138",
"SI-139",
"SI-140",
"SI-141",
"SI-142",
"SI-143",
"SI-144",
"SI-146",
"SI-147",
"SI-148",
"SI-149",
"SI-150",
"SI-151",
"SI-152",
"SI-153",
"SI-154",
"SI-155",
"SI-156",
"SI-157",
"SI-158",
"SI-159",
"SI-160",
"SI-161",
"SI-162",
"SI-163",
"SI-164",
"SI-165",
"SI-166",
"SI-167",
"SI-168",
"SI-169",
"SI-170",
"SI-171",
"SI-172",
"SI-173",
"SI-174",
"SI-175",
"SI-176",
"SI-177",
"SI-178",
"SI-179",
"SI-180",
"SI-181",
"SI-182",
"SI-183",
"SI-184",
"SI-185",
"SI-186",
"SI-187",
"SI-188",
"SI-189",
"SI-190",
"SI-191",
"SI-192",
"SI-193",
"SI-194",
"SI-195",
"SI-196",
"SI-197",
"SI-198",
"SI-199",
"SI-200",
"SI-201",
"SI-202",
"SI-203",
"SI-204",
"SI-205",
"SI-206",
"SI-207",
"SI-208",
"SI-209",
"SI-210",
"SI-211",
"SI-212",
"SI-213",
"SK-BC",
"SK-BL",
"SK-KI",
"SK-NI",
"SK-PV",
"SK-TA",
"SK-TC",
"SK-ZI",
"SL-E",
"SL-N",
"SL-NW",
"SL-S",
"SL-W",
"SM-01",
"SM-02",
"SM-03",
"SM-04",
"SM-05",
"SM-06",
"SM-07",
"SM-08",
"SM-09",
"SN-DB",
"SN-DK",
"SN-FK",
"SN-KA",
"SN-KD",
"SN-KE",
"SN-KL",
"SN-LG",
"SN-MT",
"SN-SE",
"SN-SL",
"SN-TC",
"SN-TH",
"SN-ZG",
"SO-AW",
"SO-BK",
"SO-BN",
"SO-BR",
"SO-BY",
"SO-GA",
"SO-GE",
"SO-HI",
"SO-JD",
"SO-JH",
"SO-MU",
"SO-NU",
"SO-SA",
"SO-SD",
"SO-SH",
"SO-SO",
"SO-TO",
"SO-WO",
"SR-BR",
"SR-CM",
"SR-CR",
"SR-MA",
"SR-NI",
"SR-PM",
"SR-PR",
"SR-SA",
"SR-SI",
"SR-WA",
"SS-BN",
"SS-BW",
"SS-EC",
"SS-EE",
"SS-EW",
"SS-JG",
"SS-LK",
"SS-NU",
"SS-UY",
"SS-WR",
"ST-01",
"ST-02",
"ST-03",
"ST-04",
"ST-05",
"ST-06",
"ST-P",
"SV-AH",
"SV-CA",
"SV-CH",
"SV-CU",
"SV-LI",
"SV-MO",
"SV-PA",
"SV-SA",
"SV-SM",
"SV-SO",
"SV-SS",
"SV-SV",
"SV-UN",
"SV-US",
"SY-DI",
"SY-DR",
"SY-DY",
"SY-HA",
"SY-HI",
"SY-HL",
"SY-HM",
"SY-ID",
"SY-LA",
"SY-QU",
"SY-RA",
"SY-RD",
"SY-SU",
"SY-TA",
"SZ-HH",
"SZ-LU",
"SZ-MA",
"SZ-SH",
"TD-BA",
"TD-BG",
"TD-BO",
"TD-CB",
"TD-EE",
"TD-EO",
"TD-GR",
"TD-HL",
"TD-KA",
"TD-LC",
"TD-LO",
"TD-LR",
"TD-MA",
"TD-MC",
"TD-ME",
"TD-MO",
"TD-ND",
"TD-OD",
"TD-SA",
"TD-SI",
"TD-TA",
"TD-TI",
"TD-WF",
"TG-C",
"TG-K",
"TG-M",
"TG-P",
"TG-S",
"TH-10",
"TH-11",
"TH-12",
"TH-13",
"TH-14",
"TH-15",
"TH-16",
"TH-17",
"TH-18",
"TH-19",
"TH-20",
"TH-21",
"TH-22",
"TH-23",
"TH-24",
"TH-25",
"TH-26",
"TH-27",
"TH-30",
"TH-31",
"TH-32",
"TH-33",
"TH-34",
"TH-35",
"TH-36",
"TH-37",
"TH-38",
"TH-39",
"TH-40",
"TH-41",
"TH-42",
"TH-43",
"TH-44",
"TH-45",
"TH-46",
"TH-47",
"TH-48",
"TH-49",
"TH-50",
"TH-51",
"TH-52",
"TH-53",
"TH-54",
"TH-55",
"TH-56",
"TH-57",
"TH-58",
"TH-60",
"TH-61",
"TH-62",
"TH-63",
"TH-64",
"TH-65",
"TH-66",
"TH-67",
"TH-70",
"TH-71",
"TH-72",
"TH-73",
"TH-74",
"TH-75",
"TH-76",
"TH-77",
"TH-80",
"TH-81",
"TH-82",
"TH-83",
"TH-84",
"TH-85",
"TH-86",
"TH-90",
"TH-91",
"TH-92",
"TH-93",
"TH-94",
"TH-95",
"TH-96",
"TH-S",
"TJ-DU",
"TJ-GB",
"TJ-KT",
"TJ-RA",
"TJ-SU",
"TL-AL",
"TL-AN",
"TL-BA",
"TL-BO",
"TL-CO",
"TL-DI",
"TL-ER",
"TL-LA",
"TL-LI",
"TL-MF",
"TL-MT",
"TL-OE",
"TL-VI",
"TM-A",
"TM-B",
"TM-D",
"TM-L",
"TM-M",
"TM-S",
"TN-11",
"TN-12",
"TN-13",
"TN-14",
"TN-21",
"TN-22",
"TN-23",
"TN-31",
"TN-32",
"TN-33",
"TN-34",
"TN-41",
"TN-42",
"TN-43",
"TN-51",
"TN-52",
"TN-53",
"TN-61",
"TN-71",
"TN-72",
"TN-73",
"TN-81",
"TN-82",
"TN-83",
"TO-01",
"TO-02",
"TO-03",
"TO-04",
"TO-05",
"TR-01",
"TR-02",
"TR-03",
"TR-04",
"TR-05",
"TR-06",
"TR-07",
"TR-08",
"TR-09",
"TR-10",
"TR-11",
"TR-12",
"TR-13",
"TR-14",
"TR-15",
"TR-16",
"TR-17",
"TR-18",
"TR-19",
"TR-20",
"TR-21",
"TR-22",
"TR-23",
"TR-24",
"TR-25",
"TR-26",
"TR-27",
"TR-28",
"TR-29",
"TR-30",
"TR-31",
"TR-32",
"TR-33",
"TR-34",
"TR-35",
"TR-36",
"TR-37",
"TR-38",
"TR-39",
"TR-40",
"TR-41",
"TR-42",
"TR-43",
"TR-44",
"TR-45",
"TR-46",
"TR-47",
"TR-48",
"TR-49",
"TR-50",
"TR-51",
"TR-52",
"TR-53",
"TR-54",
"TR-55",
"TR-56",
"TR-57",
"TR-58",
"TR-59",
"TR-60",
"TR-61",
"TR-62",
"TR-63",
"TR-64",
"TR-65",
"TR-66",
"TR-67",
"TR-68",
"TR-69",
"TR-70",
"TR-71",
"TR-72",
"TR-73",
"TR-74",
"TR-75",
"TR-76",
"TR-77",
"TR-78",
"TR-79",
"TR-80",
"TR-81",
"TT-ARI",
"TT-CHA",
"TT-CTT",
"TT-DMN",
"TT-MRC",
"TT-PED",
"TT-POS",
"TT-PRT",
"TT-PTF",
"TT-SFO",
"TT-SGE",
"TT-SIP",
"TT-SJL",
"TT-TOB",
"TT-TUP",
"TV-FUN",
"TV-NIT",
"TV-NKF",
"TV-NKL",
"TV-NMA",
"TV-NMG",
"TV-NUI",
"TV-VAI",
"TW-CHA",
"TW-CYI",
"TW-CYQ",
"TW-HSQ",
"TW-HSZ",
"TW-HUA",
"TW-ILA",
"TW-KEE",
"TW-KHH",
"TW-KIN",
"TW-LIE",
"TW-MIA",
"TW-NAN",
"TW-NWT",
"TW-PEN",
"TW-PIF",
"TW-TAO",
"TW-TNN",
"TW-TPE",
"TW-TTT",
"TW-TXG",
"TW-YUN",
"TZ-01",
"TZ-02",
"TZ-03",
"TZ-04",
"TZ-05",
"TZ-06",
"TZ-07",
"TZ-08",
"TZ-09",
"TZ-10",
"TZ-11",
"TZ-12",
"TZ-13",
"TZ-14",
"TZ-15",
"TZ-16",
"TZ-17",
"TZ-18",
"TZ-19",
"TZ-20",
"TZ-21",
"TZ-22",
"TZ-23",
"TZ-24",
"TZ-25",
"TZ-26",
"TZ-27",
"TZ-28",
"TZ-29",
"TZ-30",
"TZ-31",
"UA-05",
"UA-07",
"UA-09",
"UA-12",
"UA-14",
"UA-18",
"UA-21",
"UA-23",
"UA-26",
"UA-30",
"UA-32",
"UA-35",
"UA-40",
"UA-43",
"UA-46",
"UA-48",
"UA-51",
"UA-53",
"UA-56",
"UA-59",
"UA-61",
"UA-63",
"UA-65",
"UA-68",
"UA-71",
"UA-74",
"UA-77",
"UG-101",
"UG-102",
"UG-103",
"UG-104",
"UG-105",
"UG-106",
"UG-107",
"UG-108",
"UG-109",
"UG-110",
"UG-111",
"UG-112",
"UG-113",
"UG-114",
"UG-115",
"UG-116",
"UG-117",
"UG-118",
"UG-119",
"UG-120",
"UG-121",
"UG-122",
"UG-123",
"UG-124",
"UG-125",
"UG-126",
"UG-201",
"UG-202",
"UG-203",
"UG-204",
"UG-205",
"UG-206",
"UG-207",
"UG-208",
"UG-209",
"UG-210",
"UG-211",
"UG-212",
"UG-213",
"UG-214",
"UG-215",
"UG-216",
"UG-217",
"UG-218",
"UG-219",
"UG-220",
"UG-221",
"UG-222",
"UG-223",
"UG-224",
"UG-225",
"UG-226",
"UG-227",
"UG-228",
"UG-229",
"UG-230",
"UG-231",
"UG-232",
"UG-233",
"UG-234",
"UG-235",
"UG-236",
"UG-237",
"UG-301",
"UG-302",
"UG-303",
"UG-304",
"UG-305",
"UG-306",
"UG-307",
"UG-308",
"UG-309",
"UG-310",
"UG-311",
"UG-312",
"UG-313",
"UG-314",
"UG-315",
"UG-316",
"UG-317",
"UG-318",
"UG-319",
"UG-320",
"UG-321",
"UG-322",
"UG-323",
"UG-324",
"UG-325",
"UG-326",
"UG-327",
"UG-328",
"UG-329",
"UG-330",
"UG-331",
"UG-332",
"UG-333",
"UG-334",
"UG-335",
"UG-336",
"UG-337",
"UG-401",
"UG-402",
"UG-403",
"UG-404",
"UG-405",
"UG-406",
"UG-407",
"UG-408",
"UG-409",
"UG-410",
"UG-411",
"UG-412",
"UG-413",
"UG-414",
"UG-415",
"UG-416",
"UG-417",
"UG-418",
"UG-419",
"UG-420",
"UG-421",
"UG-422",
"UG-423",
"UG-424",
"UG-425",
"UG-426",
"UG-427",
"UG-428",
"UG-429",
"UG-430",
"UG-431",
"UG-432",
"UG-433",
"UG-434",
"UG-435",
"UG-C",
"UG-E",
"UG-N",
"UG-W",
"UM-67",
"UM-71",
"UM-76",
"UM-79",
"UM-81",
"UM-84",
"UM-86",
"UM-89",
"UM-95",
"US-AK",
"US-AL",
"US-AR",
"US-AS",
"US-AZ",
"US-CA",
"US-CO",
"US-CT",
"US-DC",
"US-DE",
"US-FL",
"US-GA",
"US-GU",
"US-HI",
"US-IA",
"US-ID",
"US-IL",
"US-IN",
"US-KS",
"US-KY",
"US-LA",
"US-MA",
"US-MD",
"US-ME",
"US-MI",
"US-MN",
"US-MO",
"US-MP",
"US-MS",
"US-MT",
"US-NC",
"US-ND",
"US-NE",
"US-NH",
"US-NJ",
"US-NM",
"US-NV",
"US-NY",
"US-OH",
"US-OK",
"US-OR",
"US-PA",
"US-PR",
"US-RI",
"US-SC",
"US-SD",
"US-TN",
"US-TX",
"US-UM",
"US-UT",
"US-VA",
"US-VI",
"US-VT",
"US-WA",
"US-WI",
"US-WV",
"US-WY",
"UY-AR",
"UY-CA",
"UY-CL",
"UY-CO",
"UY-DU",
"UY-FD",
"UY-FS",
"UY-LA",
"UY-MA",
"UY-MO",
"UY-PA",
"UY-RN",
"UY-RO",
"UY-RV",
"UY-SA",
"UY-SJ",
"UY-SO",
"UY-TA",
"UY-TT",
"UZ-AN",
"UZ-BU",
"UZ-FA",
"UZ-JI",
"UZ-NG",
"UZ-NW",
"UZ-QA",
"UZ-QR",
"UZ-SA",
"UZ-SI",
"UZ-SU",
"UZ-TK",
"UZ-TO",
"UZ-XO",
"VC-01",
"VC-02",
"VC-03",
"VC-04",
"VC-05",
"VC-06",
"VE-A",
"VE-B",
"VE-C",
"VE-D",
"VE-E",
"VE-F",
"VE-G",
"VE-H",
"VE-I",
"VE-J",
"VE-K",
"VE-L",
"VE-M",
"VE-N",
"VE-O",
"VE-P",
"VE-R",
"VE-S",
"VE-T",
"VE-U",
"VE-V",
"VE-W",
"VE-X",
"VE-Y",
"VE-Z",
"VN-01",
"VN-02",
"VN-03",
"VN-04",
"VN-05",
"VN-06",
"VN-07",
"VN-09",
"VN-13",
"VN-14",
"VN-18",
"VN-20",
"VN-21",
"VN-22",
"VN-23",
"VN-24",
"VN-25",
"VN-26",
"VN-27",
"VN-28",
"VN-29",
"VN-30",
"VN-31",
"VN-32",
"VN-33",
"VN-34",
"VN-35",
"VN-36",
"VN-37",
"VN-39",
"VN-40",
"VN-41",
"VN-43",
"VN-44",
"VN-45",
"VN-46",
"VN-47",
"VN-49",
"VN-50",
"VN-51",
"VN-52",
"VN-53",
"VN-54",
"VN-55",
"VN-56",
"VN-57",
"VN-58",
"VN-59",
"VN-61",
"VN-63",
"VN-66",
"VN-67",
"VN-68",
"VN-69",
"VN-70",
"VN-71",
"VN-72",
"VN-73",
"VN-CT",
"VN-DN",
"VN-HN",
"VN-HP",
"VN-SG",
"VU-MAP",
"VU-PAM",
"VU-SAM",
"VU-SEE",
"VU-TAE",
"VU-TOB",
"WF-AL",
"WF-SG",
"WF-UV",
"WS-AA",
"WS-AL",
"WS-AT",
"WS-FA",
"WS-GE",
"WS-GI",
"WS-PA",
"WS-SA",
"WS-TU",
"WS-VF",
"WS-VS",
"YE-AB",
"YE-AD",
"YE-AM",
"YE-BA",
"YE-DA",
"YE-DH",
"YE-HD",
"YE-HJ",
"YE-HU",
"YE-IB",
"YE-JA",
"YE-LA",
"YE-MA",
"YE-MR",
"YE-MW",
"YE-RA",
"YE-SA",
"YE-SD",
"YE-SH",
"YE-SN",
"YE-SU",
"YE-TA",
"ZA-EC",
"ZA-FS",
"ZA-GP",
"ZA-KZN",
"ZA-LP",
"ZA-MP",
"ZA-NC",
"ZA-NW",
"ZA-WC",
"ZM-01",
"ZM-02",
"ZM-03",
"ZM-04",
"ZM-05",
"ZM-06",
"ZM-07",
"ZM-08",
"ZM-09",
"ZM-10",
"ZW-BU",
"ZW-HA",
"ZW-MA",
"ZW-MC",
"ZW-ME",
"ZW-MI",
"ZW-MN",
"ZW-MS",
"ZW-MV",
"ZW-MW"
]
}
}
}
}
]
}
},
"identifiers": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name", "type"],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"regex": {
"type": "string"
},
"selectOptions": {
"type": "array",
"items": {
"type": "string"
}
},
"privacyCenterVisibility": {
"type": "array",
"items": {
"type": "string",
"enum": [
"AUTOMATED_DECISION_MAKING_OPT_OUT",
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
"CONTACT_OPT_OUT",
"SALE_OPT_OUT",
"TRACKING_OPT_OUT",
"CUSTOM_OPT_OUT",
"AUTOMATED_DECISION_MAKING_OPT_IN",
"USE_OF_SENSITIVE_INFORMATION_OPT_IN",
"SALE_OPT_IN",
"TRACKING_OPT_IN",
"CONTACT_OPT_IN",
"CUSTOM_OPT_IN",
"ACCESS",
"ERASURE",
"RECTIFICATION",
"RESTRICTION",
"BUSINESS_PURPOSE",
"PLACE_ON_LEGAL_HOLD",
"REMOVE_FROM_LEGAL_HOLD"
]
}
},
"dataSubjects": {
"type": "array",
"items": {
"type": "string"
}
},
"isRequiredInForm": {
"type": "boolean"
},
"placeholder": {
"type": "string"
},
"displayTitle": {
"type": "string"
},
"displayDescription": {
"type": "string"
}
}
}
]
}
},
"data-silos": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["title", "integrationName"],
"properties": {
"title": {
"type": "string"
},
"integrationName": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"outer-type": {
"type": "string"
},
"description": {
"type": "string"
},
"url": {
"type": "string"
},
"api-key-title": {
"type": "string"
},
"headers": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name", "value"],
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"isSecret": {
"type": "boolean"
}
}
}
]
}
},
"data-subjects": {
"type": "array",
"items": {
"type": "string"
}
},
"identity-keys": {
"type": "array",
"items": {
"type": "string"
}
},
"deletion-dependencies": {
"type": "array",
"items": {
"type": "string"
}
},
"owners": {
"type": "array",
"items": {
"type": "string"
}
},
"teams": {
"type": "array",
"items": {
"type": "string"
}
},
"disabled": {
"type": "boolean"
},
"datapoints": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["key"],
"properties": {
"key": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"path": {
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"data-collection-tag": {
"type": "string"
},
"privacy-action-queries": {
"type": "object",
"properties": {
"ACCESS": {
"type": "string"
},
"ERASURE": {
"type": "string"
},
"RECTIFICATION": {
"type": "string"
},
"RESTRICTION": {
"type": "string"
},
"BUSINESS_PURPOSE": {
"type": "string"
},
"PLACE_ON_LEGAL_HOLD": {
"type": "string"
},
"REMOVE_FROM_LEGAL_HOLD": {
"type": "string"
},
"AUTOMATED_DECISION_MAKING_OPT_OUT": {
"type": "string"
},
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT": {
"type": "string"
},
"CONTACT_OPT_OUT": {
"type": "string"
},
"SALE_OPT_OUT": {
"type": "string"
},
"TRACKING_OPT_OUT": {
"type": "string"
},
"CUSTOM_OPT_OUT": {
"type": "string"
},
"AUTOMATED_DECISION_MAKING_OPT_IN": {
"type": "string"
},
"USE_OF_SENSITIVE_INFORMATION_OPT_IN": {
"type": "string"
},
"SALE_OPT_IN": {
"type": "string"
},
"TRACKING_OPT_IN": {
"type": "string"
},
"CONTACT_OPT_IN": {
"type": "string"
},
"CUSTOM_OPT_IN": {
"type": "string"
}
}
},
"privacy-actions": {
"type": "array",
"items": {
"type": "string",
"enum": [
"ACCESS",
"ERASURE",
"RECTIFICATION",
"RESTRICTION",
"BUSINESS_PURPOSE",
"PLACE_ON_LEGAL_HOLD",
"REMOVE_FROM_LEGAL_HOLD",
"AUTOMATED_DECISION_MAKING_OPT_OUT",
"USE_OF_SENSITIVE_INFORMATION_OPT_OUT",
"CONTACT_OPT_OUT",
"SALE_OPT_OUT",
"TRACKING_OPT_OUT",
"CUSTOM_OPT_OUT",
"AUTOMATED_DECISION_MAKING_OPT_IN",
"USE_OF_SENSITIVE_INFORMATION_OPT_IN",
"SALE_OPT_IN",
"TRACKING_OPT_IN",
"CONTACT_OPT_IN",
"CUSTOM_OPT_IN"
]
}
},
"fields": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["key"],
"properties": {
"key": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"title": {
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"purposes": {
"type": "array",
"items": {
"type": "object",
"required": ["purpose", "name"],
"properties": {
"purpose": {
"type": "string",
"enum": [
"ESSENTIAL",
"ADDITIONAL_FUNCTIONALITY",
"ADVERTISING",
"MARKETING",
"ANALYTICS",
"PERSONALIZATION",
"OPERATION_SECURITY",
"LEGAL",
"TRANSFER",
"SALE",
"HR",
"OTHER",
"UNSPECIFIED"
]
},
"name": {
"type": "string"
}
}
}
},
"categories": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["category"],
"properties": {
"category": {
"type": "string",
"enum": [
"FINANCIAL",
"HEALTH",
"CONTACT",
"LOCATION",
"DEMOGRAPHIC",
"ID",
"ONLINE_ACTIVITY",
"USER_PROFILE",
"SOCIAL_MEDIA",
"CONNECTION",
"TRACKING",
"DEVICE",
"SURVEY",
"OTHER",
"UNSPECIFIED",
"NOT_PERSONAL_DATA"
]
}
}
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
]
}
},
"access-request-visibility-enabled": {
"type": "boolean"
},
"erasure-request-redaction-enabled": {
"type": "boolean"
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "values"],
"properties": {
"key": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
]
}
}
}
}
]
}
},
"email-settings": {
"type": "object",
"properties": {
"notify-email-address": {
"type": "string"
},
"send-frequency": {
"type": "number"
},
"send-type": {
"type": "string",
"enum": ["PER_DSR", "CROSS_DSR"]
},
"include-identifiers-attachment": {
"type": "boolean"
},
"completion-link-type": {
"type": "string",
"enum": [
"LOGGED_IN_USER",
"UNAUTHENTICATED_EXTERNAL_USER",
"NO_LINK_MARK_DATAPOINT_AS_RESOLVED"
]
},
"manual-work-retry-frequency": {
"type": "string"
}
}
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "values"],
"properties": {
"key": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
]
}
},
"data-flows": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["value", "type"],
"properties": {
"value": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["HOST", "PATH", "QUERY_PARAM", "REGEX", "CSP"]
}
}
},
{
"type": "object",
"properties": {
"description": {
"type": "string"
},
"trackingPurposes": {
"type": "array",
"items": {
"type": "string"
}
},
"service": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["LIVE", "NEEDS_REVIEW"]
},
"owners": {
"type": "array",
"items": {
"type": "string"
}
},
"teams": {
"type": "array",
"items": {
"type": "string"
}
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "values"],
"properties": {
"key": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
]
}
},
"cookies": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"isRegex": {
"type": "boolean"
},
"description": {
"type": "string"
},
"trackingPurposes": {
"type": "array",
"items": {
"type": "string"
}
},
"service": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["LIVE", "NEEDS_REVIEW"]
},
"owners": {
"type": "array",
"items": {
"type": "string"
}
},
"teams": {
"type": "array",
"items": {
"type": "string"
}
},
"attributes": {
"type": "array",
"items": {
"type": "object",
"required": ["key", "values"],
"properties": {
"key": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
]
}
},
"consent-manager": {
"type": "object",
"properties": {
"bundleUrls": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"domains": {
"type": "array",
"items": {
"type": "string"
}
},
"partition": {
"type": "string"
},
"consentPrecedence": {
"type": "string",
"enum": ["user", "signal"]
},
"unknownRequestPolicy": {
"type": "string",
"enum": ["ALLOW", "REQUIRE_FULL_CONSENT", "BLOCK"]
},
"unknownCookiePolicy": {
"type": "string",
"enum": ["ALLOW", "REQUIRE_FULL_CONSENT", "BLOCK"]
},
"syncEndpoint": {
"type": "string"
},
"telemetryPartitioning": {
"type": "string",
"enum": ["origin", "path", "url"]
},
"signedIabAgreement": {
"type": "string",
"enum": ["yes", "no", "unknown"]
},
"uspapi": {
"type": "string",
"enum": ["on", "off"]
},
"experiences": {
"type": "array",
"items": {
"allOf": [
{
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"regions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"countrySubDivision": {
"type": "string",
"enum": [
"AD-02",
"AD-03",
"AD-04",
"AD-05",
"AD-06",
"AD-07",
"AD-08",
"AE-AJ",
"AE-AZ",
"AE-DU",
"AE-FU",
"AE-RK",
"AE-SH",
"AE-UQ",
"AF-BAL",
"AF-BAM",
"AF-BDG",
"AF-BDS",
"AF-BGL",
"AF-DAY",
"AF-FRA",
"AF-FYB",
"AF-GHA",
"AF-GHO",
"AF-HEL",
"AF-HER",
"AF-JOW",
"AF-KAB",
"AF-KAN",
"AF-KAP",
"AF-KDZ",
"AF-KHO",
"AF-KNR",
"AF-LAG",
"AF-LOG",
"AF-NAN",
"AF-NIM",
"AF-NUR",
"AF-PAN",
"AF-PAR",
"AF-PIA",
"AF-PKA",
"AF-SAM",
"AF-SAR",
"AF-TAK",
"AF-URU",
"AF-WAR",
"AF-ZAB",
"AG-03",
"AG-04",
"AG-05",
"AG-06",
"AG-07",
"AG-08",
"AG-10",
"AG-11",
"AL-01",
"AL-02",
"AL-03",
"AL-04",
"AL-05",
"AL-06",
"AL-07",
"AL-08",
"AL-09",
"AL-10",
"AL-11",
"AL-12",
"AM-AG",
"AM-AR",
"AM-AV",
"AM-ER",
"AM-GR",
"AM-KT",
"AM-LO",
"AM-SH",
"AM-SU",
"AM-TV",
"AM-VD",
"AO-BGO",
"AO-BGU",
"AO-BIE",
"AO-CAB",
"AO-CCU",
"AO-CNN",
"AO-CNO",
"AO-CUS",
"AO-HUA",
"AO-HUI",
"AO-LNO",
"AO-LSU",
"AO-LUA",
"AO-MAL",
"AO-MOX",
"AO-NAM",
"AO-UIG",
"AO-ZAI",
"AR-A",
"AR-B",
"AR-C",
"AR-D",
"AR-E",
"AR-F",
"AR-G",
"AR-H",
"AR-J",
"AR-K",
"AR-L",
"AR-M",
"AR-N",
"AR-P",
"AR-Q",
"AR-R",
"AR-S",
"AR-T",
"AR-U",
"AR-V",
"AR-W",
"AR-X",
"AR-Y",
"AR-Z",
"AT-1",
"AT-2",
"AT-3",
"AT-4",
"AT-5",
"AT-6",
"AT-7",
"AT-8",
"AT-9",
"AU-ACT",
"AU-NSW",
"AU-NT",
"AU-QLD",
"AU-SA",
"AU-TAS",
"AU-VIC",
"AU-WA",
"AZ-ABS",
"AZ-AGA",
"AZ-AGC",
"AZ-AGM",
"AZ-AGS",
"AZ-AGU",
"AZ-AST",
"AZ-BA",
"AZ-BAB",
"AZ-BAL",
"AZ-BAR",
"AZ-BEY",
"AZ-BIL",
"AZ-CAB",
"AZ-CAL",
"AZ-CUL",
"AZ-DAS",
"AZ-FUZ",
"AZ-GA",
"AZ-GAD",
"AZ-GOR",
"AZ-GOY",
"AZ-GYG",
"AZ-HAC",
"AZ-IMI",
"AZ-ISM",
"AZ-KAL",
"AZ-KAN",
"AZ-KUR",
"AZ-LA",
"AZ-LAC",
"AZ-LAN",
"AZ-LER",
"AZ-MAS",
"AZ-MI",
"AZ-NA",
"AZ-NEF",
"AZ-NV",
"AZ-NX",
"AZ-OGU",
"AZ-ORD",
"AZ-QAB",
"AZ-QAX",
"AZ-QAZ",
"AZ-QBA",
"AZ-QBI",
"AZ-QOB",
"AZ-QUS",
"AZ-SA",
"AZ-SAB",
"AZ-SAD",
"AZ-SAH",
"AZ-SAK",
"AZ-SAL",
"AZ-SAR",
"AZ-SAT",
"AZ-SBN",
"AZ-SIY",
"AZ-SKR",
"AZ-SM",
"AZ-SMI",
"AZ-SMX",
"AZ-SR",
"AZ-SUS",
"AZ-TAR",
"AZ-TOV",
"AZ-UCA",
"AZ-XA",
"AZ-XAC",
"AZ-XCI",
"AZ-XIZ",
"AZ-XVD",
"AZ-YAR",
"AZ-YE",
"AZ-YEV",
"AZ-ZAN",
"AZ-ZAQ",
"AZ-ZAR",
"BA-BIH",
"BA-BRC",
"BA-SRP",
"BB-01",
"BB-02",
"BB-03",
"BB-04",
"BB-05",
"BB-06",
"BB-07",
"BB-08",
"BB-09",
"BB-10",
"BB-11",
"BD-01",
"BD-02",
"BD-03",
"BD-04",
"BD-05",
"BD-06",
"BD-07",
"BD-08",
"BD-09",
"BD-10",
"BD-11",
"BD-12",
"BD-13",
"BD-14",
"BD-15",
"BD-16",
"BD-17",
"BD-18",
"BD-19",
"BD-20",
"BD-21",
"BD-22",
"BD-23",
"BD-24",
"BD-25",
"BD-26",
"BD-27",
"BD-28",
"BD-29",
"BD-30",
"BD-31",
"BD-32",
"BD-33",
"BD-34",
"BD-35",
"BD-36",
"BD-37",
"BD-38",
"BD-39",
"BD-40",
"BD-41",
"BD-42",
"BD-43",
"BD-44",
"BD-45",
"BD-46",
"BD-47",
"BD-48",
"BD-49",
"BD-50",
"BD-51",
"BD-52",
"BD-53",
"BD-54",
"BD-55",
"BD-56",
"BD-57",
"BD-58",
"BD-59",
"BD-60",
"BD-61",
"BD-62",
"BD-63",
"BD-64",
"BD-A",
"BD-B",
"BD-C",
"BD-D",
"BD-E",
"BD-F",
"BD-G",
"BD-H",
"BE-BRU",
"BE-VAN",
"BE-VBR",
"BE-VLG",
"BE-VLI",
"BE-VOV",
"BE-VWV",
"BE-WAL",
"BE-WBR",
"BE-WHT",
"BE-WLG",
"BE-WLX",
"BE-WNA",
"BF-01",
"BF-02",
"BF-03",
"BF-04",
"BF-05",
"BF-06",
"BF-07",
"BF-08",
"BF-09",
"BF-10",
"BF-11",
"BF-12",
"BF-13",
"BF-BAL",
"BF-BAM",
"BF-BAN",
"BF-BAZ",
"BF-BGR",
"BF-BLG",
"BF-BLK",
"BF-COM",
"BF-GAN",
"BF-GNA",
"BF-GOU",
"BF-HOU",
"BF-IOB",
"BF-KAD",
"BF-KEN",
"BF-KMD",
"BF-KMP",
"BF-KOP",
"BF-KOS",
"BF-KOT",
"BF-KOW",
"BF-LER",
"BF-LOR",
"BF-MOU",
"BF-NAM",
"BF-NAO",
"BF-NAY",
"BF-NOU",
"BF-OUB",
"BF-OUD",
"BF-PAS",
"BF-PON",
"BF-SEN",
"BF-SIS",
"BF-SMT",
"BF-SNG",
"BF-SOM",
"BF-SOR",
"BF-TAP",
"BF-TUI",
"BF-YAG",
"BF-YAT",
"BF-ZIR",
"BF-ZON",
"BF-ZOU",
"BG-01",
"BG-02",
"BG-03",
"BG-04",
"BG-05",
"BG-06",
"BG-07",
"BG-08",
"BG-09",
"BG-10",
"BG-11",
"BG-12",
"BG-13",
"BG-14",
"BG-15",
"BG-16",
"BG-17",
"BG-18",
"BG-19",
"BG-20",
"BG-21",
"BG-22",
"BG-23",
"BG-24",
"BG-25",
"BG-26",
"BG-27",
"BG-28",
"BH-13",
"BH-14",
"BH-15",
"BH-17",
"BI-BB",
"BI-BL",
"BI-BM",
"BI-BR",
"BI-CA",
"BI-CI",
"BI-GI",
"BI-KI",
"BI-KR",
"BI-KY",
"BI-MA",
"BI-MU",
"BI-MW",
"BI-MY",
"BI-NG",
"BI-RM",
"BI-RT",
"BI-RY",
"BJ-AK",
"BJ-AL",
"BJ-AQ",
"BJ-BO",
"BJ-CO",
"BJ-DO",
"BJ-KO",
"BJ-LI",
"BJ-MO",
"BJ-OU",
"BJ-PL",
"BJ-ZO",
"BN-BE",
"BN-BM",
"BN-TE",
"BN-TU",
"BO-B",
"BO-C",
"BO-H",
"BO-L",
"BO-N",
"BO-O",
"BO-P",
"BO-S",
"BO-T",
"BQ-BO",
"BQ-SA",
"BQ-SE",
"BR-AC",
"BR-AL",
"BR-AM",
"BR-AP",
"BR-BA",
"BR-CE",
"BR-DF",
"BR-ES",
"BR-GO",
"BR-MA",
"BR-MG",
"BR-MS",
"BR-MT",
"BR-PA",
"BR-PB",
"BR-PE",
"BR-PI",
"BR-PR",
"BR-RJ",
"BR-RN",
"BR-RO",
"BR-RR",
"BR-RS",
"BR-SC",
"BR-SE",
"BR-SP",
"BR-TO",
"BS-AK",
"BS-BI",
"BS-BP",
"BS-BY",
"BS-CE",
"BS-CI",
"BS-CK",
"BS-CO",
"BS-CS",
"BS-EG",
"BS-EX",
"BS-FP",
"BS-GC",
"BS-HI",
"BS-HT",
"BS-IN",
"BS-LI",
"BS-MC",
"BS-MG",
"BS-MI",
"BS-NE",
"BS-NO",
"BS-NP",
"BS-NS",
"BS-RC",
"BS-RI",
"BS-SA",
"BS-SE",
"BS-SO",
"BS-SS",
"BS-SW",
"BS-WG",
"BT-11",
"BT-12",
"BT-13",
"BT-14",
"BT-15",
"BT-21",
"BT-22",
"BT-23",
"BT-24",
"BT-31",
"BT-32",
"BT-33",
"BT-34",
"BT-41",
"BT-42",
"BT-43",
"BT-44",
"BT-45",
"BT-GA",
"BT-TY",
"BW-CE",
"BW-CH",
"BW-FR",
"BW-GA",
"BW-GH",
"BW-JW",
"BW-KG",
"BW-KL",
"BW-KW",
"BW-LO",
"BW-NE",
"BW-NW",
"BW-SE",
"BW-SO",
"BW-SP",
"BW-ST",
"BY-BR",
"BY-HM",
"BY-HO",
"BY-HR",
"BY-MA",
"BY-MI",
"BY-VI",
"BZ-BZ",
"BZ-CY",
"BZ-CZL",
"BZ-OW",
"BZ-SC",
"BZ-TOL",
"CA-AB",
"CA-BC",
"CA-MB",
"CA-NB",
"CA-NL",
"CA-NS",
"CA-NT",
"CA-NU",
"CA-ON",
"CA-PE",
"CA-QC",
"CA-SK",
"CA-YT",
"CD-BC",
"CD-BU",
"CD-EQ",
"CD-HK",
"CD-HL",
"CD-HU",
"CD-IT",
"CD-KC",
"CD-KE",
"CD-KG",
"CD-KL",
"CD-KN",
"CD-KS",
"CD-LO",
"CD-LU",
"CD-MA",
"CD-MN",
"CD-MO",
"CD-NK",
"CD-NU",
"CD-SA",
"CD-SK",
"CD-SU",
"CD-TA",
"CD-TO",
"CD-TU",
"CF-AC",
"CF-BB",
"CF-BGF",
"CF-BK",
"CF-HK",
"CF-HM",
"CF-HS",
"CF-KB",
"CF-KG",
"CF-LB",
"CF-MB",
"CF-MP",
"CF-NM",
"CF-OP",
"CF-SE",
"CF-UK",
"CF-VK",
"CG-11",
"CG-12",
"CG-13",
"CG-14",
"CG-15",
"CG-16",
"CG-2",
"CG-5",
"CG-7",
"CG-8",
"CG-9",
"CG-BZV",
"CH-AG",
"CH-AI",
"CH-AR",
"CH-BE",
"CH-BL",
"CH-BS",
"CH-FR",
"CH-GE",
"CH-GL",
"CH-GR",
"CH-JU",
"CH-LU",
"CH-NE",
"CH-NW",
"CH-OW",
"CH-SG",
"CH-SH",
"CH-SO",
"CH-SZ",
"CH-TG",
"CH-TI",
"CH-UR",
"CH-VD",
"CH-VS",
"CH-ZG",
"CH-ZH",
"CI-AB",
"CI-BS",
"CI-CM",
"CI-DN",
"CI-GD",
"CI-LC",
"CI-LG",
"CI-MG",
"CI-SM",
"CI-SV",
"CI-VB",
"CI-WR",
"CI-YM",
"CI-ZZ",
"CL-AI",
"CL-AN",
"CL-AP",
"CL-AR",
"CL-AT",
"CL-BI",
"CL-CO",
"CL-LI",
"CL-LL",
"CL-LR",
"CL-MA",
"CL-ML",
"CL-NB",
"CL-RM",
"CL-TA",
"CL-VS",
"CM-AD",
"CM-CE",
"CM-EN",
"CM-ES",
"CM-LT",
"CM-NO",
"CM-NW",
"CM-OU",
"CM-SU",
"CM-SW",
"CN-AH",
"CN-BJ",
"CN-CQ",
"CN-FJ",
"CN-GD",
"CN-GS",
"CN-GX",
"CN-GZ",
"CN-HA",
"CN-HB",
"CN-HE",
"CN-HI",
"CN-HK",
"CN-HL",
"CN-HN",
"CN-JL",
"CN-JS",
"CN-JX",
"CN-LN",
"CN-MO",
"CN-NM",
"CN-NX",
"CN-QH",
"CN-SC",
"CN-SD",
"CN-SH",
"CN-SN",
"CN-SX",
"CN-TJ",
"CN-TW",
"CN-XJ",
"CN-XZ",
"CN-YN",
"CN-ZJ",
"CO-AMA",
"CO-ANT",
"CO-ARA",
"CO-ATL",
"CO-BOL",
"CO-BOY",
"CO-CAL",
"CO-CAQ",
"CO-CAS",
"CO-CAU",
"CO-CES",
"CO-CHO",
"CO-COR",
"CO-CUN",
"CO-DC",
"CO-GUA",
"CO-GUV",
"CO-HUI",
"CO-LAG",
"CO-MAG",
"CO-MET",
"CO-NAR",
"CO-NSA",
"CO-PUT",
"CO-QUI",
"CO-RIS",
"CO-SAN",
"CO-SAP",
"CO-SUC",
"CO-TOL",
"CO-VAC",
"CO-VAU",
"CO-VID",
"CR-A",
"CR-C",
"CR-G",
"CR-H",
"CR-L",
"CR-P",
"CR-SJ",
"CU-01",
"CU-03",
"CU-04",
"CU-05",
"CU-06",
"CU-07",
"CU-08",
"CU-09",
"CU-10",
"CU-11",
"CU-12",
"CU-13",
"CU-14",
"CU-15",
"CU-16",
"CU-99",
"CV-B",
"CV-BR",
"CV-BV",
"CV-CA",
"CV-CF",
"CV-CR",
"CV-MA",
"CV-MO",
"CV-PA",
"CV-PN",
"CV-PR",
"CV-RB",
"CV-RG",
"CV-RS",
"CV-S",
"CV-SD",
"CV-SF",
"CV-SL",
"CV-SM",
"CV-SO",
"CV-SS",
"CV-SV",
"CV-TA",
"CV-TS",
"CY-01",
"CY-02",
"CY-03",
"CY-04",
"CY-05",
"CY-06",
"CZ-10",
"CZ-20",
"CZ-201",
"CZ-202",
"CZ-203",
"CZ-204",
"CZ-205",
"CZ-206",
"CZ-207",
"CZ-208",
"CZ-209",
"CZ-20A",
"CZ-20B",
"CZ-20C",
"CZ-31",
"CZ-311",
"CZ-312",
"CZ-313",
"CZ-314",
"CZ-315",
"CZ-316",
"CZ-317",
"CZ-32",
"CZ-321",
"CZ-322",
"CZ-323",
"CZ-324",
"CZ-325",
"CZ-326",
"CZ-327",
"CZ-41",
"CZ-411",
"CZ-412",
"CZ-413",
"CZ-42",
"CZ-421",
"CZ-422",
"CZ-423",
"CZ-424",
"CZ-425",
"CZ-426",
"CZ-427",
"CZ-51",
"CZ-511",
"CZ-512",
"CZ-513",
"CZ-514",
"CZ-52",
"CZ-521",
"CZ-522",
"CZ-523",
"CZ-524",
"CZ-525",
"CZ-53",
"CZ-531",
"CZ-532",
"CZ-533",
"CZ-534",
"CZ-63",
"CZ-631",
"CZ-632",
"CZ-633",
"CZ-634",
"CZ-635",
"CZ-64",
"CZ-641",
"CZ-642",
"CZ-643",
"CZ-644",
"CZ-645",
"CZ-646",
"CZ-647",
"CZ-71",
"CZ-711",
"CZ-712",
"CZ-713",
"CZ-714",
"CZ-715",
"CZ-72",
"CZ-721",
"CZ-722",
"CZ-723",
"CZ-724",
"CZ-80",
"CZ-801",
"CZ-802",
"CZ-803",
"CZ-804",
"CZ-805",
"CZ-806",
"DE-BB",
"DE-BE",
"DE-BW",
"DE-BY",
"DE-HB",
"DE-HE",
"DE-HH",
"DE-MV",
"DE-NI",
"DE-NW",
"DE-RP",
"DE-SH",
"DE-SL",
"DE-SN",
"DE-ST",
"DE-TH",
"DJ-AR",
"DJ-AS",
"DJ-DI",
"DJ-DJ",
"DJ-OB",
"DJ-TA",
"DK-81",
"DK-82",
"DK-83",
"DK-84",
"DK-85",
"DM-02",
"DM-03",
"DM-04",
"DM-05",
"DM-06",
"DM-07",
"DM-08",
"DM-09",
"DM-10",
"DM-11",
"DO-01",
"DO-02",
"DO-03",
"DO-04",
"DO-05",
"DO-06",
"DO-07",
"DO-08",
"DO-09",
"DO-10",
"DO-11",
"DO-12",
"DO-13",
"DO-14",
"DO-15",
"DO-16",
"DO-17",
"DO-18",
"DO-19",
"DO-20",
"DO-21",
"DO-22",
"DO-23",
"DO-24",
"DO-25",
"DO-26",
"DO-27",
"DO-28",
"DO-29",
"DO-30",
"DO-31",
"DO-32",
"DO-33",
"DO-34",
"DO-35",
"DO-36",
"DO-37",
"DO-38",
"DO-39",
"DO-40",
"DO-41",
"DO-42",
"DZ-01",
"DZ-02",
"DZ-03",
"DZ-04",
"DZ-05",
"DZ-06",
"DZ-07",
"DZ-08",
"DZ-09",
"DZ-10",
"DZ-11",
"DZ-12",
"DZ-13",
"DZ-14",
"DZ-15",
"DZ-16",
"DZ-17",
"DZ-18",
"DZ-19",
"DZ-20",
"DZ-21",
"DZ-22",
"DZ-23",
"DZ-24",
"DZ-25",
"DZ-26",
"DZ-27",
"DZ-28",
"DZ-29",
"DZ-30",
"DZ-31",
"DZ-32",
"DZ-33",
"DZ-34",
"DZ-35",
"DZ-36",
"DZ-37",
"DZ-38",
"DZ-39",
"DZ-40",
"DZ-41",
"DZ-42",
"DZ-43",
"DZ-44",
"DZ-45",
"DZ-46",
"DZ-47",
"DZ-48",
"EC-A",
"EC-B",
"EC-C",
"EC-D",
"EC-E",
"EC-F",
"EC-G",
"EC-H",
"EC-I",
"EC-L",
"EC-M",
"EC-N",
"EC-O",
"EC-P",
"EC-R",
"EC-S",
"EC-SD",
"EC-SE",
"EC-T",
"EC-U",
"EC-W",
"EC-X",
"EC-Y",
"EC-Z",
"EE-130",
"EE-141",
"EE-142",
"EE-171",
"EE-184",
"EE-191",
"EE-198",
"EE-205",
"EE-214",
"EE-245",
"EE-247",
"EE-251",
"EE-255",
"EE-272",
"EE-283",
"EE-284",
"EE-291",
"EE-293",
"EE-296",
"EE-303",
"EE-305",
"EE-317",
"EE-321",
"EE-338",
"EE-353",
"EE-37",
"EE-39",
"EE-424",
"EE-430",
"EE-431",
"EE-432",
"EE-441",
"EE-442",
"EE-446",
"EE-45",
"EE-478",
"EE-480",
"EE-486",
"EE-50",
"EE-503",
"EE-511",
"EE-514",
"EE-52",
"EE-528",
"EE-557",
"EE-56",
"EE-567",
"EE-586",
"EE-60",
"EE-615",
"EE-618",
"EE-622",
"EE-624",
"EE-638",
"EE-64",
"EE-651",
"EE-653",
"EE-661",
"EE-663",
"EE-668",
"EE-68",
"EE-689",
"EE-698",
"EE-708",
"EE-71",
"EE-712",
"EE-714",
"EE-719",
"EE-726",
"EE-732",
"EE-735",
"EE-74",
"EE-784",
"EE-79",
"EE-792",
"EE-793",
"EE-796",
"EE-803",
"EE-809",
"EE-81",
"EE-824",
"EE-834",
"EE-84",
"EE-855",
"EE-87",
"EE-890",
"EE-897",
"EE-899",
"EE-901",
"EE-903",
"EE-907",
"EE-917",
"EE-919",
"EE-928",
"EG-ALX",
"EG-ASN",
"EG-AST",
"EG-BA",
"EG-BH",
"EG-BNS",
"EG-C",
"EG-DK",
"EG-DT",
"EG-FYM",
"EG-GH",
"EG-GZ",
"EG-IS",
"EG-JS",
"EG-KB",
"EG-KFS",
"EG-KN",
"EG-LX",
"EG-MN",
"EG-MNF",
"EG-MT",
"EG-PTS",
"EG-SHG",
"EG-SHR",
"EG-SIN",
"EG-SUZ",
"EG-WAD",
"ER-AN",
"ER-DK",
"ER-DU",
"ER-GB",
"ER-MA",
"ER-SK",
"ES-A",
"ES-AB",
"ES-AL",
"ES-AN",
"ES-AR",
"ES-AS",
"ES-AV",
"ES-B",
"ES-BA",
"ES-BI",
"ES-BU",
"ES-C",
"ES-CA",
"ES-CB",
"ES-CC",
"ES-CE",
"ES-CL",
"ES-CM",
"ES-CN",
"ES-CO",
"ES-CR",
"ES-CS",
"ES-CT",
"ES-CU",
"ES-EX",
"ES-GA",
"ES-GC",
"ES-GI",
"ES-GR",
"ES-GU",
"ES-H",
"ES-HU",
"ES-IB",
"ES-J",
"ES-L",
"ES-LE",
"ES-LO",
"ES-LU",
"ES-M",
"ES-MA",
"ES-MC",
"ES-MD",
"ES-ML",
"ES-MU",
"ES-NA",
"ES-NC",
"ES-O",
"ES-OR",
"ES-P",
"ES-PM",
"ES-PO",
"ES-PV",
"ES-RI",
"ES-S",
"ES-SA",
"ES-SE",
"ES-SG",
"ES-SO",
"ES-SS",
"ES-T",
"ES-TE",
"ES-TF",
"ES-TO",
"ES-V",
"ES-VA",
"ES-VC",
"ES-VI",
"ES-Z",
"ES-ZA",
"ET-AA",
"ET-AF",
"ET-AM",
"ET-BE",
"ET-DD",
"ET-GA",
"ET-HA",
"ET-OR",
"ET-SN",
"ET-SO",
"ET-TI",
"FI-01",
"FI-02",
"FI-03",
"FI-04",
"FI-05",
"FI-06",
"FI-07",
"FI-08",
"FI-09",
"FI-10",
"FI-11",
"FI-12",
"FI-13",
"FI-14",
"FI-15",
"FI-16",
"FI-17",
"FI-18",
"FI-19",
"FJ-01",
"FJ-02",
"FJ-03",
"FJ-04",
"FJ-05",
"FJ-06",
"FJ-07",
"FJ-08",
"FJ-09",
"FJ-10",
"FJ-11",
"FJ-12",
"FJ-13",
"FJ-14",
"FJ-C",
"FJ-E",
"FJ-N",
"FJ-R",
"FJ-W",
"FM-KSA",
"FM-PNI",
"FM-TRK",
"FM-YAP",
"FR-01",
"FR-02",
"FR-03",
"FR-04",
"FR-05",
"FR-06",
"FR-07",
"FR-08",
"FR-09",
"FR-10",
"FR-11",
"FR-12",
"FR-13",
"FR-14",
"FR-15",
"FR-16",
"FR-17",
"FR-18",
"FR-19",
"FR-20R",
"FR-21",
"FR-22",
"FR-23",
"FR-24",
"FR-25",
"FR-26",
"FR-27",
"FR-28",
"FR-29",
"FR-2A",
"FR-2B",
"FR-30",
"FR-31",
"FR-32",
"FR-33",
"FR-34",
"FR-35",
"FR-36",
"FR-37",
"FR-38",
"FR-39",
"FR-40",
"FR-41",
"FR-42",
"FR-43",
"FR-44",
"FR-45",
"FR-46",
"FR-47",
"FR-48",
"FR-49",
"FR-50",
"FR-51",
"FR-52",
"FR-53",
"FR-54",
"FR-55",
"FR-56",
"FR-57",
"FR-58",
"FR-59",
"FR-60",
"FR-61",
"FR-62",
"FR-63",
"FR-64",
"FR-65",
"FR-66",
"FR-67",
"FR-68",
"FR-69",
"FR-70",
"FR-71",
"FR-72",
"FR-73",
"FR-74",
"FR-75",
"FR-76",
"FR-77",
"FR-78",
"FR-79",
"FR-80",
"FR-81",
"FR-82",
"FR-83",
"FR-84",
"FR-85",
"FR-86",
"FR-87",
"FR-88",
"FR-89",
"FR-90",
"FR-91",
"FR-92",
"FR-93",
"FR-94",
"FR-95",
"FR-971",
"FR-972",
"FR-973",
"FR-974",
"FR-976",
"FR-ARA",
"FR-BFC",
"FR-BL",
"FR-BRE",
"FR-CP",
"FR-CVL",
"FR-GES",
"FR-GF",
"FR-GP",
"FR-HDF",
"FR-IDF",
"FR-MF",
"FR-MQ",
"FR-NAQ",
"FR-NC",
"FR-NOR",
"FR-OCC",
"FR-PAC",
"FR-PDL",
"FR-PF",
"FR-PM",
"FR-RE",
"FR-TF",
"FR-WF",
"FR-YT",
"GA-1",
"GA-2",
"GA-3",
"GA-4",
"GA-5",
"GA-6",
"GA-7",
"GA-8",
"GA-9",
"GB-ABC",
"GB-ABD",
"GB-ABE",
"GB-AGB",
"GB-AGY",
"GB-AND",
"GB-ANN",
"GB-ANS",
"GB-BAS",
"GB-BBD",
"GB-BCP",
"GB-BDF",
"GB-BDG",
"GB-BEN",
"GB-BEX",
"GB-BFS",
"GB-BGE",
"GB-BGW",
"GB-BIR",
"GB-BKM",
"GB-BNE",
"GB-BNH",
"GB-BNS",
"GB-BOL",
"GB-BPL",
"GB-BRC",
"GB-BRD",
"GB-BRY",
"GB-BST",
"GB-BUR",
"GB-CAM",
"GB-CAY",
"GB-CBF",
"GB-CCG",
"GB-CGN",
"GB-CHE",
"GB-CHW",
"GB-CLD",
"GB-CLK",
"GB-CMA",
"GB-CMD",
"GB-CMN",
"GB-CON",
"GB-COV",
"GB-CRF",
"GB-CRY",
"GB-CWY",
"GB-DAL",
"GB-DBY",
"GB-DEN",
"GB-DER",
"GB-DEV",
"GB-DGY",
"GB-DNC",
"GB-DND",
"GB-DOR",
"GB-DRS",
"GB-DUD",
"GB-DUR",
"GB-EAL",
"GB-EAW",
"GB-EAY",
"GB-EDH",
"GB-EDU",
"GB-ELN",
"GB-ELS",
"GB-ENF",
"GB-ENG",
"GB-ERW",
"GB-ERY",
"GB-ESS",
"GB-ESX",
"GB-FAL",
"GB-FIF",
"GB-FLN",
"GB-FMO",
"GB-GAT",
"GB-GBN",
"GB-GLG",
"GB-GLS",
"GB-GRE",
"GB-GWN",
"GB-HAL",
"GB-HAM",
"GB-HAV",
"GB-HCK",
"GB-HEF",
"GB-HIL",
"GB-HLD",
"GB-HMF",
"GB-HNS",
"GB-HPL",
"GB-HRT",
"GB-HRW",
"GB-HRY",
"GB-IOS",
"GB-IOW",
"GB-ISL",
"GB-IVC",
"GB-KEC",
"GB-KEN",
"GB-KHL",
"GB-KIR",
"GB-KTT",
"GB-KWL",
"GB-LAN",
"GB-LBC",
"GB-LBH",
"GB-LCE",
"GB-LDS",
"GB-LEC",
"GB-LEW",
"GB-LIN",
"GB-LIV",
"GB-LND",
"GB-LUT",
"GB-MAN",
"GB-MDB",
"GB-MDW",
"GB-MEA",
"GB-MIK",
"GB-MLN",
"GB-MON",
"GB-MRT",
"GB-MRY",
"GB-MTY",
"GB-MUL",
"GB-NAY",
"GB-NBL",
"GB-NEL",
"GB-NET",
"GB-NFK",
"GB-NGM",
"GB-NIR",
"GB-NLK",
"GB-NLN",
"GB-NMD",
"GB-NSM",
"GB-NTH",
"GB-NTL",
"GB-NTT",
"GB-NTY",
"GB-NWM",
"GB-NWP",
"GB-NYK",
"GB-OLD",
"GB-ORK",
"GB-OXF",
"GB-PEM",
"GB-PKN",
"GB-PLY",
"GB-POR",
"GB-POW",
"GB-PTE",
"GB-RCC",
"GB-RCH",
"GB-RCT",
"GB-RDB",
"GB-RDG",
"GB-RFW",
"GB-RIC",
"GB-ROT",
"GB-RUT",
"GB-SAW",
"GB-SAY",
"GB-SCB",
"GB-SCT",
"GB-SFK",
"GB-SFT",
"GB-SGC",
"GB-SHF",
"GB-SHN",
"GB-SHR",
"GB-SKP",
"GB-SLF",
"GB-SLG",
"GB-SLK",
"GB-SND",
"GB-SOL",
"GB-SOM",
"GB-SOS",
"GB-SRY",
"GB-STE",
"GB-STG",
"GB-STH",
"GB-STN",
"GB-STS",
"GB-STT",
"GB-STY",
"GB-SWA",
"GB-SWD",
"GB-SWK",
"GB-TAM",
"GB-TFW",
"GB-THR",
"GB-TOB",
"GB-TOF",
"GB-TRF",
"GB-TWH",
"GB-UKM",
"GB-VGL",
"GB-WAR",
"GB-WBK",
"GB-WDU",
"GB-WFT",
"GB-WGN",
"GB-WIL",
"GB-WKF",
"GB-WLL",
"GB-WLN",
"GB-WLS",
"GB-WLV",
"GB-WND",
"GB-WNM",
"GB-WOK",
"GB-WOR",
"GB-WRL",
"GB-WRT",
"GB-WRX",
"GB-WSM",
"GB-WSX",
"GB-YOR",
"GB-ZET",
"GD-01",
"GD-02",
"GD-03",
"GD-04",
"GD-05",
"GD-06",
"GD-10",
"GE-AB",
"GE-AJ",
"GE-GU",
"GE-IM",
"GE-KA",
"GE-KK",
"GE-MM",
"GE-RL",
"GE-SJ",
"GE-SK",
"GE-SZ",
"GE-TB",
"GH-AA",
"GH-AF",
"GH-AH",
"GH-BA",
"GH-BE",
"GH-BO",
"GH-CP",
"GH-EP",
"GH-NE",
"GH-NP",
"GH-OT",
"GH-SV",
"GH-TV",
"GH-UE",
"GH-UW",
"GH-WN",
"GH-WP",
"GL-AV",
"GL-KU",
"GL-QE",
"GL-QT",
"GL-SM",
"GM-B",
"GM-L",
"GM-M",
"GM-N",
"GM-U",
"GM-W",
"GN-B",
"GN-BE",
"GN-BF",
"GN-BK",
"GN-C",
"GN-CO",
"GN-D",
"GN-DB",
"GN-DI",
"GN-DL",
"GN-DU",
"GN-F",
"GN-FA",
"GN-FO",
"GN-FR",
"GN-GA",
"GN-GU",
"GN-K",
"GN-KA",
"GN-KB",
"GN-KD",
"GN-KE",
"GN-KN",
"GN-KO",
"GN-KS",
"GN-L",
"GN-LA",
"GN-LE",
"GN-LO",
"GN-M",
"GN-MC",
"GN-MD",
"GN-ML",
"GN-MM",
"GN-N",
"GN-NZ",
"GN-PI",
"GN-SI",
"GN-TE",
"GN-TO",
"GN-YO",
"GQ-AN",
"GQ-BN",
"GQ-BS",
"GQ-C",
"GQ-CS",
"GQ-DJ",
"GQ-I",
"GQ-KN",
"GQ-LI",
"GQ-WN",
"GR-69",
"GR-A",
"GR-B",
"GR-C",
"GR-D",
"GR-E",
"GR-F",
"GR-G",
"GR-H",
"GR-I",
"GR-J",
"GR-K",
"GR-L",
"GR-M",
"GT-AV",
"GT-BV",
"GT-CM",
"GT-CQ",
"GT-ES",
"GT-GU",
"GT-HU",
"GT-IZ",
"GT-JA",
"GT-JU",
"GT-PE",
"GT-PR",
"GT-QC",
"GT-QZ",
"GT-RE",
"GT-SA",
"GT-SM",
"GT-SO",
"GT-SR",
"GT-SU",
"GT-TO",
"GT-ZA",
"GW-BA",
"GW-BL",
"GW-BM",
"GW-BS",
"GW-CA",
"GW-GA",
"GW-L",
"GW-N",
"GW-OI",
"GW-QU",
"GW-S",
"GW-TO",
"GY-BA",
"GY-CU",
"GY-DE",
"GY-EB",
"GY-ES",
"GY-MA",
"GY-PM",
"GY-PT",
"GY-UD",
"GY-UT",
"HN-AT",
"HN-CH",
"HN-CL",
"HN-CM",
"HN-CP",
"HN-CR",
"HN-EP",
"HN-FM",
"HN-GD",
"HN-IB",
"HN-IN",
"HN-LE",
"HN-LP",
"HN-OC",
"HN-OL",
"HN-SB",
"HN-VA",
"HN-YO",
"HR-01",
"HR-02",
"HR-03",
"HR-04",
"HR-05",
"HR-06",
"HR-07",
"HR-08",
"HR-09",
"HR-10",
"HR-11",
"HR-12",
"HR-13",
"HR-14",
"HR-15",
"HR-16",
"HR-17",
"HR-18",
"HR-19",
"HR-20",
"HR-21",
"HT-AR",
"HT-CE",
"HT-GA",
"HT-ND",
"HT-NE",
"HT-NI",
"HT-NO",
"HT-OU",
"HT-SD",
"HT-SE",
"HU-BA",
"HU-BC",
"HU-BE",
"HU-BK",
"HU-BU",
"HU-BZ",
"HU-CS",
"HU-DE",
"HU-DU",
"HU-EG",
"HU-ER",
"HU-FE",
"HU-GS",
"HU-GY",
"HU-HB",
"HU-HE",
"HU-HV",
"HU-JN",
"HU-KE",
"HU-KM",
"HU-KV",
"HU-MI",
"HU-NK",
"HU-NO",
"HU-NY",
"HU-PE",
"HU-PS",
"HU-SD",
"HU-SF",
"HU-SH",
"HU-SK",
"HU-SN",
"HU-SO",
"HU-SS",
"HU-ST",
"HU-SZ",
"HU-TB",
"HU-TO",
"HU-VA",
"HU-VE",
"HU-VM",
"HU-ZA",
"HU-ZE",
"ID-AC",
"ID-BA",
"ID-BB",
"ID-BE",
"ID-BT",
"ID-GO",
"ID-JA",
"ID-JB",
"ID-JI",
"ID-JK",
"ID-JT",
"ID-JW",
"ID-KA",
"ID-KB",
"ID-KI",
"ID-KR",
"ID-KS",
"ID-KT",
"ID-KU",
"ID-LA",
"ID-MA",
"ID-ML",
"ID-MU",
"ID-NB",
"ID-NT",
"ID-NU",
"ID-PA",
"ID-PB",
"ID-PP",
"ID-RI",
"ID-SA",
"ID-SB",
"ID-SG",
"ID-SL",
"ID-SM",
"ID-SN",
"ID-SR",
"ID-SS",
"ID-ST",
"ID-SU",
"ID-YO",
"IE-C",
"IE-CE",
"IE-CN",
"IE-CO",
"IE-CW",
"IE-D",
"IE-DL",
"IE-G",
"IE-KE",
"IE-KK",
"IE-KY",
"IE-L",
"IE-LD",
"IE-LH",
"IE-LK",
"IE-LM",
"IE-LS",
"IE-M",
"IE-MH",
"IE-MN",
"IE-MO",
"IE-OY",
"IE-RN",
"IE-SO",
"IE-TA",
"IE-U",
"IE-WD",
"IE-WH",
"IE-WW",
"IE-WX",
"IL-D",
"IL-HA",
"IL-JM",
"IL-M",
"IL-TA",
"IL-Z",
"IN-AN",
"IN-AP",
"IN-AR",
"IN-AS",
"IN-BR",
"IN-CH",
"IN-CT",
"IN-DH",
"IN-DL",
"IN-GA",
"IN-GJ",
"IN-HP",
"IN-HR",
"IN-JH",
"IN-JK",
"IN-KA",
"IN-KL",
"IN-LA",
"IN-LD",
"IN-MH",
"IN-ML",
"IN-MN",
"IN-MP",
"IN-MZ",
"IN-NL",
"IN-OR",
"IN-PB",
"IN-PY",
"IN-RJ",
"IN-SK",
"IN-TG",
"IN-TN",
"IN-TR",
"IN-UP",
"IN-UT",
"IN-WB",
"IQ-AN",
"IQ-AR",
"IQ-BA",
"IQ-BB",
"IQ-BG",
"IQ-DA",
"IQ-DI",
"IQ-DQ",
"IQ-HA",
"IQ-KA",
"IQ-KI",
"IQ-MA",
"IQ-MU",
"IQ-NA",
"IQ-NI",
"IQ-QA",
"IQ-SD",
"IQ-SU",
"IQ-WA",
"IR-00",
"IR-01",
"IR-02",
"IR-03",
"IR-04",
"IR-05",
"IR-06",
"IR-07",
"IR-08",
"IR-09",
"IR-10",
"IR-11",
"IR-12",
"IR-13",
"IR-14",
"IR-15",
"IR-16",
"IR-17",
"IR-18",
"IR-19",
"IR-20",
"IR-21",
"IR-22",
"IR-23",
"IR-24",
"IR-25",
"IR-26",
"IR-27",
"IR-28",
"IR-29",
"IR-30",
"IS-1",
"IS-2",
"IS-3",
"IS-4",
"IS-5",
"IS-6",
"IS-7",
"IS-8",
"IS-AKH",
"IS-AKN",
"IS-AKU",
"IS-ARN",
"IS-ASA",
"IS-BFJ",
"IS-BLA",
"IS-BLO",
"IS-BOG",
"IS-BOL",
"IS-DAB",
"IS-DAV",
"IS-DJU",
"IS-EOM",
"IS-EYF",
"IS-FJD",
"IS-FJL",
"IS-FLA",
"IS-FLD",
"IS-FLR",
"IS-GAR",
"IS-GOG",
"IS-GRN",
"IS-GRU",
"IS-GRY",
"IS-HAF",
"IS-HEL",
"IS-HRG",
"IS-HRU",
"IS-HUT",
"IS-HUV",
"IS-HVA",
"IS-HVE",
"IS-ISA",
"IS-KAL",
"IS-KJO",
"IS-KOP",
"IS-LAN",
"IS-MOS",
"IS-MYR",
"IS-NOR",
"IS-RGE",
"IS-RGY",
"IS-RHH",
"IS-RKN",
"IS-RKV",
"IS-SBH",
"IS-SBT",
"IS-SDN",
"IS-SDV",
"IS-SEL",
"IS-SEY",
"IS-SFA",
"IS-SHF",
"IS-SKF",
"IS-SKG",
"IS-SKO",
"IS-SKU",
"IS-SNF",
"IS-SOG",
"IS-SOL",
"IS-SSF",
"IS-SSS",
"IS-STR",
"IS-STY",
"IS-SVG",
"IS-TAL",
"IS-THG",
"IS-TJO",
"IS-VEM",
"IS-VER",
"IS-VOP",
"IT-21",
"IT-23",
"IT-25",
"IT-32",
"IT-34",
"IT-36",
"IT-42",
"IT-45",
"IT-52",
"IT-55",
"IT-57",
"IT-62",
"IT-65",
"IT-67",
"IT-72",
"IT-75",
"IT-77",
"IT-78",
"IT-82",
"IT-88",
"IT-AG",
"IT-AL",
"IT-AN",
"IT-AP",
"IT-AQ",
"IT-AR",
"IT-AT",
"IT-AV",
"IT-BA",
"IT-BG",
"IT-BI",
"IT-BL",
"IT-BN",
"IT-BO",
"IT-BR",
"IT-BS",
"IT-BT",
"IT-BZ",
"IT-CA",
"IT-CB",
"IT-CE",
"IT-CH",
"IT-CL",
"IT-CN",
"IT-CO",
"IT-CR",
"IT-CS",
"IT-CT",
"IT-CZ",
"IT-EN",
"IT-FC",
"IT-FE",
"IT-FG",
"IT-FI",
"IT-FM",
"IT-FR",
"IT-GE",
"IT-GO",
"IT-GR",
"IT-IM",
"IT-IS",
"IT-KR",
"IT-LC",
"IT-LE",
"IT-LI",
"IT-LO",
"IT-LT",
"IT-LU",
"IT-MB",
"IT-MC",
"IT-ME",
"IT-MI",
"IT-MN",
"IT-MO",
"IT-MS",
"IT-MT",
"IT-NA",
"IT-NO",
"IT-NU",
"IT-OR",
"IT-PA",
"IT-PC",
"IT-PD",
"IT-PE",
"IT-PG",
"IT-PI",
"IT-PN",
"IT-PO",
"IT-PR",
"IT-PT",
"IT-PU",
"IT-PV",
"IT-PZ",
"IT-RA",
"IT-RC",
"IT-RE",
"IT-RG",
"IT-RI",
"IT-RM",
"IT-RN",
"IT-RO",
"IT-SA",
"IT-SI",
"IT-SO",
"IT-SP",
"IT-SR",
"IT-SS",
"IT-SU",
"IT-SV",
"IT-TA",
"IT-TE",
"IT-TN",
"IT-TO",
"IT-TP",
"IT-TR",
"IT-TS",
"IT-TV",
"IT-UD",
"IT-VA",
"IT-VB",
"IT-VC",
"IT-VE",
"IT-VI",
"IT-VR",
"IT-VT",
"IT-VV",
"JM-01",
"JM-02",
"JM-03",
"JM-04",
"JM-05",
"JM-06",
"JM-07",
"JM-08",
"JM-09",
"JM-10",
"JM-11",
"JM-12",
"JM-13",
"JM-14",
"JO-AJ",
"JO-AM",
"JO-AQ",
"JO-AT",
"JO-AZ",
"JO-BA",
"JO-IR",
"JO-JA",
"JO-KA",
"JO-MA",
"JO-MD",
"JO-MN",
"JP-01",
"JP-02",
"JP-03",
"JP-04",
"JP-05",
"JP-06",
"JP-07",
"JP-08",
"JP-09",
"JP-10",
"JP-11",
"JP-12",
"JP-13",
"JP-14",
"JP-15",
"JP-16",
"JP-17",
"JP-18",
"JP-19",
"JP-20",
"JP-21",
"JP-22",
"JP-23",
"JP-24",
"JP-25",
"JP-26",
"JP-27",
"JP-28",
"JP-29",
"JP-30",
"JP-31",
"JP-32",
"JP-33",
"JP-34",
"JP-35",
"JP-36",
"JP-37",
"JP-38",
"JP-39",
"JP-40",
"JP-41",
"JP-42",
"JP-43",
"JP-44",
"JP-45",
"JP-46",
"JP-47",
"KE-01",
"KE-02",
"KE-03",
"KE-04",
"KE-05",
"KE-06",
"KE-07",
"KE-08",
"KE-09",
"KE-10",
"KE-11",
"KE-12",
"KE-13",
"KE-14",
"KE-15",
"KE-16",
"KE-17",
"KE-18",
"KE-19",
"KE-20",
"KE-21",
"KE-22",
"KE-23",
"KE-24",
"KE-25",
"KE-26",
"KE-27",
"KE-28",
"KE-29",
"KE-30",
"KE-31",
"KE-32",
"KE-33",
"KE-34",
"KE-35",
"KE-36",
"KE-37",
"KE-38",
"KE-39",
"KE-40",
"KE-41",
"KE-42",
"KE-43",
"KE-44",
"KE-45",
"KE-46",
"KE-47",
"KG-B",
"KG-C",
"KG-GB",
"KG-GO",
"KG-J",
"KG-N",
"KG-O",
"KG-T",
"KG-Y",
"KH-1",
"KH-10",
"KH-11",
"KH-12",
"KH-13",
"KH-14",
"KH-15",
"KH-16",
"KH-17",
"KH-18",
"KH-19",
"KH-2",
"KH-20",
"KH-21",
"KH-22",
"KH-23",
"KH-24",
"KH-25",
"KH-3",
"KH-4",
"KH-5",
"KH-6",
"KH-7",
"KH-8",
"KH-9",
"KI-G",
"KI-L",
"KI-P",
"KM-A",
"KM-G",
"KM-M",
"KN-01",
"KN-02",
"KN-03",
"KN-04",
"KN-05",
"KN-06",
"KN-07",
"KN-08",
"KN-09",
"KN-10",
"KN-11",
"KN-12",
"KN-13",
"KN-15",
"KN-K",
"KN-N",
"KP-01",
"KP-02",
"KP-03",
"KP-04",
"KP-05",
"KP-06",
"KP-07",
"KP-08",
"KP-09",
"KP-10",
"KP-13",
"KP-14",
"KR-11",
"KR-26",
"KR-27",
"KR-28",
"KR-29",
"KR-30",
"KR-31",
"KR-41",
"KR-42",
"KR-43",
"KR-44",
"KR-45",
"KR-46",
"KR-47",
"KR-48",
"KR-49",
"KR-50",
"KW-AH",
"KW-FA",
"KW-HA",
"KW-JA",
"KW-KU",
"KW-MU",
"KZ-AKM",
"KZ-AKT",
"KZ-ALA",
"KZ-ALM",
"KZ-AST",
"KZ-ATY",
"KZ-KAR",
"KZ-KUS",
"KZ-KZY",
"KZ-MAN",
"KZ-PAV",
"KZ-SEV",
"KZ-SHY",
"KZ-VOS",
"KZ-YUZ",
"KZ-ZAP",
"KZ-ZHA",
"LA-AT",
"LA-BK",
"LA-BL",
"LA-CH",
"LA-HO",
"LA-KH",
"LA-LM",
"LA-LP",
"LA-OU",
"LA-PH",
"LA-SL",
"LA-SV",
"LA-VI",
"LA-VT",
"LA-XA",
"LA-XE",
"LA-XI",
"LA-XS",
"LB-AK",
"LB-AS",
"LB-BA",
"LB-BH",
"LB-BI",
"LB-JA",
"LB-JL",
"LB-NA",
"LC-01",
"LC-02",
"LC-03",
"LC-05",
"LC-06",
"LC-07",
"LC-08",
"LC-10",
"LC-11",
"LC-12",
"LI-01",
"LI-02",
"LI-03",
"LI-04",
"LI-05",
"LI-06",
"LI-07",
"LI-08",
"LI-09",
"LI-10",
"LI-11",
"LK-1",
"LK-11",
"LK-12",
"LK-13",
"LK-2",
"LK-21",
"LK-22",
"LK-23",
"LK-3",
"LK-31",
"LK-32",
"LK-33",
"LK-4",
"LK-41",
"LK-42",
"LK-43",
"LK-44",
"LK-45",
"LK-5",
"LK-51",
"LK-52",
"LK-53",
"LK-6",
"LK-61",
"LK-62",
"LK-7",
"LK-71",
"LK-72",
"LK-8",
"LK-81",
"LK-82",
"LK-9",
"LK-91",
"LK-92",
"LR-BG",
"LR-BM",
"LR-CM",
"LR-GB",
"LR-GG",
"LR-GK",
"LR-GP",
"LR-LO",
"LR-MG",
"LR-MO",
"LR-MY",
"LR-NI",
"LR-RG",
"LR-RI",
"LR-SI",
"LS-A",
"LS-B",
"LS-C",
"LS-D",
"LS-E",
"LS-F",
"LS-G",
"LS-H",
"LS-J",
"LS-K",
"LT-01",
"LT-02",
"LT-03",
"LT-04",
"LT-05",
"LT-06",
"LT-07",
"LT-08",
"LT-09",
"LT-10",
"LT-11",
"LT-12",
"LT-13",
"LT-14",
"LT-15",
"LT-16",
"LT-17",
"LT-18",
"LT-19",
"LT-20",
"LT-21",
"LT-22",
"LT-23",
"LT-24",
"LT-25",
"LT-26",
"LT-27",
"LT-28",
"LT-29",
"LT-30",
"LT-31",
"LT-32",
"LT-33",
"LT-34",
"LT-35",
"LT-36",
"LT-37",
"LT-38",
"LT-39",
"LT-40",
"LT-41",
"LT-42",
"LT-43",
"LT-44",
"LT-45",
"LT-46",
"LT-47",
"LT-48",
"LT-49",
"LT-50",
"LT-51",
"LT-52",
"LT-53",
"LT-54",
"LT-55",
"LT-56",
"LT-57",
"LT-58",
"LT-59",
"LT-60",
"LT-AL",
"LT-KL",
"LT-KU",
"LT-MR",
"LT-PN",
"LT-SA",
"LT-TA",
"LT-TE",
"LT-UT",
"LT-VL",
"LU-CA",
"LU-CL",
"LU-DI",
"LU-EC",
"LU-ES",
"LU-GR",
"LU-LU",
"LU-ME",
"LU-RD",
"LU-RM",
"LU-VD",
"LU-WI",
"LV-001",
"LV-002",
"LV-003",
"LV-004",
"LV-005",
"LV-006",
"LV-007",
"LV-008",
"LV-009",
"LV-010",
"LV-011",
"LV-012",
"LV-013",
"LV-014",
"LV-015",
"LV-016",
"LV-017",
"LV-018",
"LV-019",
"LV-020",
"LV-021",
"LV-022",
"LV-023",
"LV-024",
"LV-025",
"LV-026",
"LV-027",
"LV-028",
"LV-029",
"LV-030",
"LV-031",
"LV-032",
"LV-033",
"LV-034",
"LV-035",
"LV-036",
"LV-037",
"LV-038",
"LV-039",
"LV-040",
"LV-041",
"LV-042",
"LV-043",
"LV-044",
"LV-045",
"LV-046",
"LV-047",
"LV-048",
"LV-049",
"LV-050",
"LV-051",
"LV-052",
"LV-053",
"LV-054",
"LV-055",
"LV-056",
"LV-057",
"LV-058",
"LV-059",
"LV-060",
"LV-061",
"LV-062",
"LV-063",
"LV-064",
"LV-065",
"LV-066",
"LV-067",
"LV-068",
"LV-069",
"LV-070",
"LV-071",
"LV-072",
"LV-073",
"LV-074",
"LV-075",
"LV-076",
"LV-077",
"LV-078",
"LV-079",
"LV-080",
"LV-081",
"LV-082",
"LV-083",
"LV-084",
"LV-085",
"LV-086",
"LV-087",
"LV-088",
"LV-089",
"LV-090",
"LV-091",
"LV-092",
"LV-093",
"LV-094",
"LV-095",
"LV-096",
"LV-097",
"LV-098",
"LV-099",
"LV-100",
"LV-101",
"LV-102",
"LV-103",
"LV-104",
"LV-105",
"LV-106",
"LV-107",
"LV-108",
"LV-109",
"LV-110",
"LV-DGV",
"LV-JEL",
"LV-JKB",
"LV-JUR",
"LV-LPX",
"LV-REZ",
"LV-RIX",
"LV-VEN",
"LV-VMR",
"LY-BA",
"LY-BU",
"LY-DR",
"LY-GT",
"LY-JA",
"LY-JG",
"LY-JI",
"LY-JU",
"LY-KF",
"LY-MB",
"LY-MI",
"LY-MJ",
"LY-MQ",
"LY-NL",
"LY-NQ",
"LY-SB",
"LY-SR",
"LY-TB",
"LY-WA",
"LY-WD",
"LY-WS",
"LY-ZA",
"MA-01",
"MA-02",
"MA-03",
"MA-04",
"MA-05",
"MA-06",
"MA-07",
"MA-08",
"MA-09",
"MA-10",
"MA-11",
"MA-12",
"MA-AGD",
"MA-AOU",
"MA-ASZ",
"MA-AZI",
"MA-BEM",
"MA-BER",
"MA-BES",
"MA-BOD",
"MA-BOM",
"MA-BRR",
"MA-CAS",
"MA-CHE",
"MA-CHI",
"MA-CHT",
"MA-DRI",
"MA-ERR",
"MA-ESI",
"MA-ESM",
"MA-FAH",
"MA-FES",
"MA-FIG",
"MA-FQH",
"MA-GUE",
"MA-GUF",
"MA-HAJ",
"MA-HAO",
"MA-HOC",
"MA-IFR",
"MA-INE",
"MA-JDI",
"MA-JRA",
"MA-KEN",
"MA-KES",
"MA-KHE",
"MA-KHN",
"MA-KHO",
"MA-LAA",
"MA-LAR",
"MA-MAR",
"MA-MDF",
"MA-MED",
"MA-MEK",
"MA-MID",
"MA-MOH",
"MA-MOU",
"MA-NAD",
"MA-NOU",
"MA-OUA",
"MA-OUD",
"MA-OUJ",
"MA-OUZ",
"MA-RAB",
"MA-REH",
"MA-SAF",
"MA-SAL",
"MA-SEF",
"MA-SET",
"MA-SIB",
"MA-SIF",
"MA-SIK",
"MA-SIL",
"MA-SKH",
"MA-TAF",
"MA-TAI",
"MA-TAO",
"MA-TAR",
"MA-TAT",
"MA-TAZ",
"MA-TET",
"MA-TIN",
"MA-TIZ",
"MA-TNG",
"MA-TNT",
"MA-YUS",
"MA-ZAG",
"MC-CL",
"MC-CO",
"MC-FO",
"MC-GA",
"MC-JE",
"MC-LA",
"MC-MA",
"MC-MC",
"MC-MG",
"MC-MO",
"MC-MU",
"MC-PH",
"MC-SD",
"MC-SO",
"MC-SP",
"MC-SR",
"MC-VR",
"MD-AN",
"MD-BA",
"MD-BD",
"MD-BR",
"MD-BS",
"MD-CA",
"MD-CL",
"MD-CM",
"MD-CR",
"MD-CS",
"MD-CT",
"MD-CU",
"MD-DO",
"MD-DR",
"MD-DU",
"MD-ED",
"MD-FA",
"MD-FL",
"MD-GA",
"MD-GL",
"MD-HI",
"MD-IA",
"MD-LE",
"MD-NI",
"MD-OC",
"MD-OR",
"MD-RE",
"MD-RI",
"MD-SD",
"MD-SI",
"MD-SN",
"MD-SO",
"MD-ST",
"MD-SV",
"MD-TA",
"MD-TE",
"MD-UN",
"ME-01",
"ME-02",
"ME-03",
"ME-04",
"ME-05",
"ME-06",
"ME-07",
"ME-08",
"ME-09",
"ME-10",
"ME-11",
"ME-12",
"ME-13",
"ME-14",
"ME-15",
"ME-16",
"ME-17",
"ME-18",
"ME-19",
"ME-20",
"ME-21",
"ME-22",
"ME-23",
"ME-24",
"MG-A",
"MG-D",
"MG-F",
"MG-M",
"MG-T",
"MG-U",
"MH-ALK",
"MH-ALL",
"MH-ARN",
"MH-AUR",
"MH-EBO",
"MH-ENI",
"MH-JAB",
"MH-JAL",
"MH-KIL",
"MH-KWA",
"MH-L",
"MH-LAE",
"MH-LIB",
"MH-LIK",
"MH-MAJ",
"MH-MAL",
"MH-MEJ",
"MH-MIL",
"MH-NMK",
"MH-NMU",
"MH-RON",
"MH-T",
"MH-UJA",
"MH-UTI",
"MH-WTH",
"MH-WTJ",
"MK-101",
"MK-102",
"MK-103",
"MK-104",
"MK-105",
"MK-106",
"MK-107",
"MK-108",
"MK-109",
"MK-201",
"MK-202",
"MK-203",
"MK-204",
"MK-205",
"MK-206",
"MK-207",
"MK-208",
"MK-209",
"MK-210",
"MK-211",
"MK-301",
"MK-303",
"MK-304",
"MK-307",
"MK-308",
"MK-310",
"MK-311",
"MK-312",
"MK-313",
"MK-401",
"MK-402",
"MK-403",
"MK-404",
"MK-405",
"MK-406",
"MK-407",
"MK-408",
"MK-409",
"MK-410",
"MK-501",
"MK-502",
"MK-503",
"MK-504",
"MK-505",
"MK-506",
"MK-507",
"MK-508",
"MK-509",
"MK-601",
"MK-602",
"MK-603",
"MK-604",
"MK-605",
"MK-606",
"MK-607",
"MK-608",
"MK-609",
"MK-701",
"MK-702",
"MK-703",
"MK-704",
"MK-705",
"MK-706",
"MK-801",
"MK-802",
"MK-803",
"MK-804",
"MK-805",
"MK-806",
"MK-807",
"MK-808",
"MK-809",
"MK-810",
"MK-811",
"MK-812",
"MK-813",
"MK-814",
"MK-815",
"MK-816",
"MK-817",
"ML-1",
"ML-10",
"ML-2",
"ML-3",
"ML-4",
"ML-5",
"ML-6",
"ML-7",
"ML-8",
"ML-9",
"ML-BKO",
"MM-01",
"MM-02",
"MM-03",
"MM-04",
"MM-05",
"MM-06",
"MM-07",
"MM-11",
"MM-12",
"MM-13",
"MM-14",
"MM-15",
"MM-16",
"MM-17",
"MM-18",
"MN-035",
"MN-037",
"MN-039",
"MN-041",
"MN-043",
"MN-046",
"MN-047",
"MN-049",
"MN-051",
"MN-053",
"MN-055",
"MN-057",
"MN-059",
"MN-061",
"MN-063",
"MN-064",
"MN-065",
"MN-067",
"MN-069",
"MN-071",
"MN-073",
"MN-1",
"MR-01",
"MR-02",
"MR-03",
"MR-04",
"MR-05",
"MR-06",
"MR-07",
"MR-08",
"MR-09",
"MR-10",
"MR-11",
"MR-12",
"MR-13",
"MR-14",
"MR-15",
"MT-01",
"MT-02",
"MT-03",
"MT-04",
"MT-05",
"MT-06",
"MT-07",
"MT-08",
"MT-09",
"MT-10",
"MT-11",
"MT-12",
"MT-13",
"MT-14",
"MT-15",
"MT-16",
"MT-17",
"MT-18",
"MT-19",
"MT-20",
"MT-21",
"MT-22",
"MT-23",
"MT-24",
"MT-25",
"MT-26",
"MT-27",
"MT-28",
"MT-29",
"MT-30",
"MT-31",
"MT-32",
"MT-33",
"MT-34",
"MT-35",
"MT-36",
"MT-37",
"MT-38",
"MT-39",
"MT-40",
"MT-41",
"MT-42",
"MT-43",
"MT-44",
"MT-45",
"MT-46",
"MT-47",
"MT-48",
"MT-49",
"MT-50",
"MT-51",
"MT-52",
"MT-53",
"MT-54",
"MT-55",
"MT-56",
"MT-57",
"MT-58",
"MT-59",
"MT-60",
"MT-61",
"MT-62",
"MT-63",
"MT-64",
"MT-65",
"MT-66",
"MT-67",
"MT-68",
"MU-AG",
"MU-BL",
"MU-CC",
"MU-FL",
"MU-GP",
"MU-MO",
"MU-PA",
"MU-PL",
"MU-PW",
"MU-RO",
"MU-RR",
"MU-SA",
"MV-00",
"MV-01",
"MV-02",
"MV-03",
"MV-04",
"MV-05",
"MV-07",
"MV-08",
"MV-12",
"MV-13",
"MV-14",
"MV-17",
"MV-20",
"MV-23",
"MV-24",
"MV-25",
"MV-26",
"MV-27",
"MV-28",
"MV-29",
"MV-MLE",
"MW-BA",
"MW-BL",
"MW-C",
"MW-CK",
"MW-CR",
"MW-CT",
"MW-DE",
"MW-DO",
"MW-KR",
"MW-KS",
"MW-LI",
"MW-LK",
"MW-MC",
"MW-MG",
"MW-MH",
"MW-MU",
"MW-MW",
"MW-MZ",
"MW-N",
"MW-NB",
"MW-NE",
"MW-NI",
"MW-NK",
"MW-NS",
"MW-NU",
"MW-PH",
"MW-RU",
"MW-S",
"MW-SA",
"MW-TH",
"MW-ZO",
"MX-AGU",
"MX-BCN",
"MX-BCS",
"MX-CAM",
"MX-CHH",
"MX-CHP",
"MX-CMX",
"MX-COA",
"MX-COL",
"MX-DUR",
"MX-GRO",
"MX-GUA",
"MX-HID",
"MX-JAL",
"MX-MEX",
"MX-MIC",
"MX-MOR",
"MX-NAY",
"MX-NLE",
"MX-OAX",
"MX-PUE",
"MX-QUE",
"MX-ROO",
"MX-SIN",
"MX-SLP",
"MX-SON",
"MX-TAB",
"MX-TAM",
"MX-TLA",
"MX-VER",
"MX-YUC",
"MX-ZAC",
"MY-01",
"MY-02",
"MY-03",
"MY-04",
"MY-05",
"MY-06",
"MY-07",
"MY-08",
"MY-09",
"MY-10",
"MY-11",
"MY-12",
"MY-13",
"MY-14",
"MY-15",
"MY-16",
"MZ-A",
"MZ-B",
"MZ-G",
"MZ-I",
"MZ-L",
"MZ-MPM",
"MZ-N",
"MZ-P",
"MZ-Q",
"MZ-S",
"MZ-T",
"NA-CA",
"NA-ER",
"NA-HA",
"NA-KA",
"NA-KE",
"NA-KH",
"NA-KU",
"NA-KW",
"NA-OD",
"NA-OH",
"NA-ON",
"NA-OS",
"NA-OT",
"NA-OW",
"NE-1",
"NE-2",
"NE-3",
"NE-4",
"NE-5",
"NE-6",
"NE-7",
"NE-8",
"NG-AB",
"NG-AD",
"NG-AK",
"NG-AN",
"NG-BA",
"NG-BE",
"NG-BO",
"NG-BY",
"NG-CR",
"NG-DE",
"NG-EB",
"NG-ED",
"NG-EK",
"NG-EN",
"NG-FC",
"NG-GO",
"NG-IM",
"NG-JI",
"NG-KD",
"NG-KE",
"NG-KN",
"NG-KO",
"NG-KT",
"NG-KW",
"NG-LA",
"NG-NA",
"NG-NI",
"NG-OG",
"NG-ON",
"NG-OS",
"NG-OY",
"NG-PL",
"NG-RI",
"NG-SO",
"NG-TA",
"NG-YO",
"NG-ZA",
"NI-AN",
"NI-AS",
"NI-BO",
"NI-CA",
"NI-CI",
"NI-CO",
"NI-ES",
"NI-GR",
"NI-JI",
"NI-LE",
"NI-MD",
"NI-MN",
"NI-MS",
"NI-MT",
"NI-NS",
"NI-RI",
"NI-SJ",
"NL-AW",
"NL-BQ1",
"NL-BQ2",
"NL-BQ3",
"NL-CW",
"NL-DR",
"NL-FL",
"NL-FR",
"NL-GE",
"NL-GR",
"NL-LI",
"NL-NB",
"NL-NH",
"NL-OV",
"NL-SX",
"NL-UT",
"NL-ZE",
"NL-ZH",
"NO-03",
"NO-11",
"NO-15",
"NO-18",
"NO-21",
"NO-22",
"NO-30",
"NO-34",
"NO-38",
"NO-42",
"NO-46",
"NO-50",
"NO-54",
"NP-1",
"NP-2",
"NP-3",
"NP-4",
"NP-5",
"NP-BA",
"NP-BH",
"NP-DH",
"NP-GA",
"NP-JA",
"NP-KA",
"NP-KO",
"NP-LU",
"NP-MA",
"NP-ME",
"NP-NA",
"NP-P1",
"NP-P2",
"NP-P3",
"NP-P4",
"NP-P5",
"NP-P6",
"NP-P7",
"NP-RA",
"NP-SA",
"NP-SE",
"NR-01",
"NR-02",
"NR-03",
"NR-04",
"NR-05",
"NR-06",
"NR-07",
"NR-08",
"NR-09",
"NR-10",
"NR-11",
"NR-12",
"NR-13",
"NR-14",
"NZ-AUK",
"NZ-BOP",
"NZ-CAN",
"NZ-CIT",
"NZ-GIS",
"NZ-HKB",
"NZ-MBH",
"NZ-MWT",
"NZ-NSN",
"NZ-NTL",
"NZ-OTA",
"NZ-STL",
"NZ-TAS",
"NZ-TKI",
"NZ-WGN",
"NZ-WKO",
"NZ-WTC",
"OM-BJ",
"OM-BS",
"OM-BU",
"OM-DA",
"OM-MA",
"OM-MU",
"OM-SJ",
"OM-SS",
"OM-WU",
"OM-ZA",
"OM-ZU",
"PA-1",
"PA-10",
"PA-2",
"PA-3",
"PA-4",
"PA-5",
"PA-6",
"PA-7",
"PA-8",
"PA-9",
"PA-EM",
"PA-KY",
"PA-NB",
"PE-AMA",
"PE-ANC",
"PE-APU",
"PE-ARE",
"PE-AYA",
"PE-CAJ",
"PE-CAL",
"PE-CUS",
"PE-HUC",
"PE-HUV",
"PE-ICA",
"PE-JUN",
"PE-LAL",
"PE-LAM",
"PE-LIM",
"PE-LMA",
"PE-LOR",
"PE-MDD",
"PE-MOQ",
"PE-PAS",
"PE-PIU",
"PE-PUN",
"PE-SAM",
"PE-TAC",
"PE-TUM",
"PE-UCA",
"PG-CPK",
"PG-CPM",
"PG-EBR",
"PG-EHG",
"PG-EPW",
"PG-ESW",
"PG-GPK",
"PG-HLA",
"PG-JWK",
"PG-MBA",
"PG-MPL",
"PG-MPM",
"PG-MRL",
"PG-NCD",
"PG-NIK",
"PG-NPP",
"PG-NSB",
"PG-SAN",
"PG-SHM",
"PG-WBK",
"PG-WHM",
"PG-WPD",
"PH-00",
"PH-01",
"PH-02",
"PH-03",
"PH-05",
"PH-06",
"PH-07",
"PH-08",
"PH-09",
"PH-10",
"PH-11",
"PH-12",
"PH-13",
"PH-14",
"PH-15",
"PH-40",
"PH-41",
"PH-ABR",
"PH-AGN",
"PH-AGS",
"PH-AKL",
"PH-ALB",
"PH-ANT",
"PH-APA",
"PH-AUR",
"PH-BAN",
"PH-BAS",
"PH-BEN",
"PH-BIL",
"PH-BOH",
"PH-BTG",
"PH-BTN",
"PH-BUK",
"PH-BUL",
"PH-CAG",
"PH-CAM",
"PH-CAN",
"PH-CAP",
"PH-CAS",
"PH-CAT",
"PH-CAV",
"PH-CEB",
"PH-COM",
"PH-DAO",
"PH-DAS",
"PH-DAV",
"PH-DIN",
"PH-DVO",
"PH-EAS",
"PH-GUI",
"PH-IFU",
"PH-ILI",
"PH-ILN",
"PH-ILS",
"PH-ISA",
"PH-KAL",
"PH-LAG",
"PH-LAN",
"PH-LAS",
"PH-LEY",
"PH-LUN",
"PH-MAD",
"PH-MAG",
"PH-MAS",
"PH-MDC",
"PH-MDR",
"PH-MOU",
"PH-MSC",
"PH-MSR",
"PH-NCO",
"PH-NEC",
"PH-NER",
"PH-NSA",
"PH-NUE",
"PH-NUV",
"PH-PAM",
"PH-PAN",
"PH-PLW",
"PH-QUE",
"PH-QUI",
"PH-RIZ",
"PH-ROM",
"PH-SAR",
"PH-SCO",
"PH-SIG",
"PH-SLE",
"PH-SLU",
"PH-SOR",
"PH-SUK",
"PH-SUN",
"PH-SUR",
"PH-TAR",
"PH-TAW",
"PH-WSA",
"PH-ZAN",
"PH-ZAS",
"PH-ZMB",
"PH-ZSI",
"PK-BA",
"PK-GB",
"PK-IS",
"PK-JK",
"PK-KP",
"PK-PB",
"PK-SD",
"PK-TA",
"PL-02",
"PL-04",
"PL-06",
"PL-08",
"PL-10",
"PL-12",
"PL-14",
"PL-16",
"PL-18",
"PL-20",
"PL-22",
"PL-24",
"PL-26",
"PL-28",
"PL-30",
"PL-32",
"PS-BTH",
"PS-DEB",
"PS-GZA",
"PS-HBN",
"PS-JEM",
"PS-JEN",
"PS-JRH",
"PS-KYS",
"PS-NBS",
"PS-NGZ",
"PS-QQA",
"PS-RBH",
"PS-RFH",
"PS-SLT",
"PS-TBS",
"PS-TKM",
"PT-01",
"PT-02",
"PT-03",
"PT-04",
"PT-05",
"PT-06",
"PT-07",
"PT-08",
"PT-09",
"PT-10",
"PT-11",
"PT-12",
"PT-13",
"PT-14",
"PT-15",
"PT-16",
"PT-17",
"PT-18",
"PT-20",
"PT-30",
"PW-002",
"PW-004",
"PW-010",
"PW-050",
"PW-100",
"PW-150",
"PW-212",
"PW-214",
"PW-218",
"PW-222",
"PW-224",
"PW-226",
"PW-227",
"PW-228",
"PW-350",
"PW-370",
"PY-1",
"PY-10",
"PY-11",
"PY-12",
"PY-13",
"PY-14",
"PY-15",
"PY-16",
"PY-19",
"PY-2",
"PY-3",
"PY-4",
"PY-5",
"PY-6",
"PY-7",
"PY-8",
"PY-9",
"PY-ASU",
"QA-DA",
"QA-KH",
"QA-MS",
"QA-RA",
"QA-SH",
"QA-US",
"QA-WA",
"QA-ZA",
"RO-AB",
"RO-AG",
"RO-AR",
"RO-B",
"RO-BC",
"RO-BH",
"RO-BN",
"RO-BR",
"RO-BT",
"RO-BV",
"RO-BZ",
"RO-CJ",
"RO-CL",
"RO-CS",
"RO-CT",
"RO-CV",
"RO-DB",
"RO-DJ",
"RO-GJ",
"RO-GL",
"RO-GR",
"RO-HD",
"RO-HR",
"RO-IF",
"RO-IL",
"RO-IS",
"RO-MH",
"RO-MM",
"RO-MS",
"RO-NT",
"RO-OT",
"RO-PH",
"RO-SB",
"RO-SJ",
"RO-SM",
"RO-SV",
"RO-TL",
"RO-TM",
"RO-TR",
"RO-VL",
"RO-VN",
"RO-VS",
"RS-00",
"RS-01",
"RS-02",
"RS-03",
"RS-04",
"RS-05",
"RS-06",
"RS-07",
"RS-08",
"RS-09",
"RS-10",
"RS-11",
"RS-12",
"RS-13",
"RS-14",
"RS-15",
"RS-16",
"RS-17",
"RS-18",
"RS-19",
"RS-20",
"RS-21",
"RS-22",
"RS-23",
"RS-24",
"RS-25",
"RS-26",
"RS-27",
"RS-28",
"RS-29",
"RS-KM",
"RS-VO",
"RU-AD",
"RU-AL",
"RU-ALT",
"RU-AMU",
"RU-ARK",
"RU-AST",
"RU-BA",
"RU-BEL",
"RU-BRY",
"RU-BU",
"RU-CE",
"RU-CHE",
"RU-CHU",
"RU-CU",
"RU-DA",
"RU-IN",
"RU-IRK",
"RU-IVA",
"RU-KAM",
"RU-KB",
"RU-KC",
"RU-KDA",
"RU-KEM",
"RU-KGD",
"RU-KGN",
"RU-KHA",
"RU-KHM",
"RU-KIR",
"RU-KK",
"RU-KL",
"RU-KLU",
"RU-KO",
"RU-KOS",
"RU-KR",
"RU-KRS",
"RU-KYA",
"RU-LEN",
"RU-LIP",
"RU-MAG",
"RU-ME",
"RU-MO",
"RU-MOS",
"RU-MOW",
"RU-MUR",
"RU-NEN",
"RU-NGR",
"RU-NIZ",
"RU-NVS",
"RU-OMS",
"RU-ORE",
"RU-ORL",
"RU-PER",
"RU-PNZ",
"RU-PRI",
"RU-PSK",
"RU-ROS",
"RU-RYA",
"RU-SA",
"RU-SAK",
"RU-SAM",
"RU-SAR",
"RU-SE",
"RU-SMO",
"RU-SPE",
"RU-STA",
"RU-SVE",
"RU-TA",
"RU-TAM",
"RU-TOM",
"RU-TUL",
"RU-TVE",
"RU-TY",
"RU-TYU",
"RU-UD",
"RU-ULY",
"RU-VGG",
"RU-VLA",
"RU-VLG",
"RU-VOR",
"RU-YAN",
"RU-YAR",
"RU-YEV",
"RU-ZAB",
"RW-01",
"RW-02",
"RW-03",
"RW-04",
"RW-05",
"SA-01",
"SA-02",
"SA-03",
"SA-04",
"SA-05",
"SA-06",
"SA-07",
"SA-08",
"SA-09",
"SA-10",
"SA-11",
"SA-12",
"SA-14",
"SB-CE",
"SB-CH",
"SB-CT",
"SB-GU",
"SB-IS",
"SB-MK",
"SB-ML",
"SB-RB",
"SB-TE",
"SB-WE",
"SC-01",
"SC-02",
"SC-03",
"SC-04",
"SC-05",
"SC-06",
"SC-07",
"SC-08",
"SC-09",
"SC-10",
"SC-11",
"SC-12",
"SC-13",
"SC-14",
"SC-15",
"SC-16",
"SC-17",
"SC-18",
"SC-19",
"SC-20",
"SC-21",
"SC-22",
"SC-23",
"SC-24",
"SC-25",
"SC-26",
"SC-27",
"SD-DC",
"SD-DE",
"SD-DN",
"SD-DS",
"SD-DW",
"SD-GD",
"SD-GK",
"SD-GZ",
"SD-KA",
"SD-KH",
"SD-KN",
"SD-KS",
"SD-NB",
"SD-NO",
"SD-NR",
"SD-NW",
"SD-RS",
"SD-SI",
"SE-AB",
"SE-AC",
"SE-BD",
"SE-C",
"SE-D",
"SE-E",
"SE-F",
"SE-G",
"SE-H",
"SE-I",
"SE-K",
"SE-M",
"SE-N",
"SE-O",
"SE-S",
"SE-T",
"SE-U",
"SE-W",
"SE-X",
"SE-Y",
"SE-Z",
"SG-01",
"SG-02",
"SG-03",
"SG-04",
"SG-05",
"SH-AC",
"SH-HL",
"SH-TA",
"SI-001",
"SI-002",
"SI-003",
"SI-004",
"SI-005",
"SI-006",
"SI-007",
"SI-008",
"SI-009",
"SI-010",
"SI-011",
"SI-012",
"SI-013",
"SI-014",
"SI-015",
"SI-016",
"SI-017",
"SI-018",
"SI-019",
"SI-020",
"SI-021",
"SI-022",
"SI-023",
"SI-024",
"SI-025",
"SI-026",
"SI-027",
"SI-028",
"SI-029",
"SI-030",
"SI-031",
"SI-032",
"SI-033",
"SI-034",
"SI-035",
"SI-036",
"SI-037",
"SI-038",
"SI-039",
"SI-040",
"SI-041",
"SI-042",
"SI-043",
"SI-044",
"SI-045",
"SI-046",
"SI-047",
"SI-048",
"SI-049",
"SI-050",
"SI-051",
"SI-052",
"SI-053",
"SI-054",
"SI-055",
"SI-056",
"SI-057",
"SI-058",
"SI-059",
"SI-060",
"SI-061",
"SI-062",
"SI-063",
"SI-064",
"SI-065",
"SI-066",
"SI-067",
"SI-068",
"SI-069",
"SI-070",
"SI-071",
"SI-072",
"SI-073",
"SI-074",
"SI-075",
"SI-076",
"SI-077",
"SI-078",
"SI-079",
"SI-080",
"SI-081",
"SI-082",
"SI-083",
"SI-084",
"SI-085",
"SI-086",
"SI-087",
"SI-088",
"SI-089",
"SI-090",
"SI-091",
"SI-092",
"SI-093",
"SI-094",
"SI-095",
"SI-096",
"SI-097",
"SI-098",
"SI-099",
"SI-100",
"SI-101",
"SI-102",
"SI-103",
"SI-104",
"SI-105",
"SI-106",
"SI-107",
"SI-108",
"SI-109",
"SI-110",
"SI-111",
"SI-112",
"SI-113",
"SI-114",
"SI-115",
"SI-116",
"SI-117",
"SI-118",
"SI-119",
"SI-120",
"SI-121",
"SI-122",
"SI-123",
"SI-124",
"SI-125",
"SI-126",
"SI-127",
"SI-128",
"SI-129",
"SI-130",
"SI-131",
"SI-132",
"SI-133",
"SI-134",
"SI-135",
"SI-136",
"SI-137",
"SI-138",
"SI-139",
"SI-140",
"SI-141",
"SI-142",
"SI-143",
"SI-144",
"SI-146",
"SI-147",
"SI-148",
"SI-149",
"SI-150",
"SI-151",
"SI-152",
"SI-153",
"SI-154",
"SI-155",
"SI-156",
"SI-157",
"SI-158",
"SI-159",
"SI-160",
"SI-161",
"SI-162",
"SI-163",
"SI-164",
"SI-165",
"SI-166",
"SI-167",
"SI-168",
"SI-169",
"SI-170",
"SI-171",
"SI-172",
"SI-173",
"SI-174",
"SI-175",
"SI-176",
"SI-177",
"SI-178",
"SI-179",
"SI-180",
"SI-181",
"SI-182",
"SI-183",
"SI-184",
"SI-185",
"SI-186",
"SI-187",
"SI-188",
"SI-189",
"SI-190",
"SI-191",
"SI-192",
"SI-193",
"SI-194",
"SI-195",
"SI-196",
"SI-197",
"SI-198",
"SI-199",
"SI-200",
"SI-201",
"SI-202",
"SI-203",
"SI-204",
"SI-205",
"SI-206",
"SI-207",
"SI-208",
"SI-209",
"SI-210",
"SI-211",
"SI-212",
"SI-213",
"SK-BC",
"SK-BL",
"SK-KI",
"SK-NI",
"SK-PV",
"SK-TA",
"SK-TC",
"SK-ZI",
"SL-E",
"SL-N",
"SL-NW",
"SL-S",
"SL-W",
"SM-01",
"SM-02",
"SM-03",
"SM-04",
"SM-05",
"SM-06",
"SM-07",
"SM-08",
"SM-09",
"SN-DB",
"SN-DK",
"SN-FK",
"SN-KA",
"SN-KD",
"SN-KE",
"SN-KL",
"SN-LG",
"SN-MT",
"SN-SE",
"SN-SL",
"SN-TC",
"SN-TH",
"SN-ZG",
"SO-AW",
"SO-BK",
"SO-BN",
"SO-BR",
"SO-BY",
"SO-GA",
"SO-GE",
"SO-HI",
"SO-JD",
"SO-JH",
"SO-MU",
"SO-NU",
"SO-SA",
"SO-SD",
"SO-SH",
"SO-SO",
"SO-TO",
"SO-WO",
"SR-BR",
"SR-CM",
"SR-CR",
"SR-MA",
"SR-NI",
"SR-PM",
"SR-PR",
"SR-SA",
"SR-SI",
"SR-WA",
"SS-BN",
"SS-BW",
"SS-EC",
"SS-EE",
"SS-EW",
"SS-JG",
"SS-LK",
"SS-NU",
"SS-UY",
"SS-WR",
"ST-01",
"ST-02",
"ST-03",
"ST-04",
"ST-05",
"ST-06",
"ST-P",
"SV-AH",
"SV-CA",
"SV-CH",
"SV-CU",
"SV-LI",
"SV-MO",
"SV-PA",
"SV-SA",
"SV-SM",
"SV-SO",
"SV-SS",
"SV-SV",
"SV-UN",
"SV-US",
"SY-DI",
"SY-DR",
"SY-DY",
"SY-HA",
"SY-HI",
"SY-HL",
"SY-HM",
"SY-ID",
"SY-LA",
"SY-QU",
"SY-RA",
"SY-RD",
"SY-SU",
"SY-TA",
"SZ-HH",
"SZ-LU",
"SZ-MA",
"SZ-SH",
"TD-BA",
"TD-BG",
"TD-BO",
"TD-CB",
"TD-EE",
"TD-EO",
"TD-GR",
"TD-HL",
"TD-KA",
"TD-LC",
"TD-LO",
"TD-LR",
"TD-MA",
"TD-MC",
"TD-ME",
"TD-MO",
"TD-ND",
"TD-OD",
"TD-SA",
"TD-SI",
"TD-TA",
"TD-TI",
"TD-WF",
"TG-C",
"TG-K",
"TG-M",
"TG-P",
"TG-S",
"TH-10",
"TH-11",
"TH-12",
"TH-13",
"TH-14",
"TH-15",
"TH-16",
"TH-17",
"TH-18",
"TH-19",
"TH-20",
"TH-21",
"TH-22",
"TH-23",
"TH-24",
"TH-25",
"TH-26",
"TH-27",
"TH-30",
"TH-31",
"TH-32",
"TH-33",
"TH-34",
"TH-35",
"TH-36",
"TH-37",
"TH-38",
"TH-39",
"TH-40",
"TH-41",
"TH-42",
"TH-43",
"TH-44",
"TH-45",
"TH-46",
"TH-47",
"TH-48",
"TH-49",
"TH-50",
"TH-51",
"TH-52",
"TH-53",
"TH-54",
"TH-55",
"TH-56",
"TH-57",
"TH-58",
"TH-60",
"TH-61",
"TH-62",
"TH-63",
"TH-64",
"TH-65",
"TH-66",
"TH-67",
"TH-70",
"TH-71",
"TH-72",
"TH-73",
"TH-74",
"TH-75",
"TH-76",
"TH-77",
"TH-80",
"TH-81",
"TH-82",
"TH-83",
"TH-84",
"TH-85",
"TH-86",
"TH-90",
"TH-91",
"TH-92",
"TH-93",
"TH-94",
"TH-95",
"TH-96",
"TH-S",
"TJ-DU",
"TJ-GB",
"TJ-KT",
"TJ-RA",
"TJ-SU",
"TL-AL",
"TL-AN",
"TL-BA",
"TL-BO",
"TL-CO",
"TL-DI",
"TL-ER",
"TL-LA",
"TL-LI",
"TL-MF",
"TL-MT",
"TL-OE",
"TL-VI",
"TM-A",
"TM-B",
"TM-D",
"TM-L",
"TM-M",
"TM-S",
"TN-11",
"TN-12",
"TN-13",
"TN-14",
"TN-21",
"TN-22",
"TN-23",
"TN-31",
"TN-32",
"TN-33",
"TN-34",
"TN-41",
"TN-42",
"TN-43",
"TN-51",
"TN-52",
"TN-53",
"TN-61",
"TN-71",
"TN-72",
"TN-73",
"TN-81",
"TN-82",
"TN-83",
"TO-01",
"TO-02",
"TO-03",
"TO-04",
"TO-05",
"TR-01",
"TR-02",
"TR-03",
"TR-04",
"TR-05",
"TR-06",
"TR-07",
"TR-08",
"TR-09",
"TR-10",
"TR-11",
"TR-12",
"TR-13",
"TR-14",
"TR-15",
"TR-16",
"TR-17",
"TR-18",
"TR-19",
"TR-20",
"TR-21",
"TR-22",
"TR-23",
"TR-24",
"TR-25",
"TR-26",
"TR-27",
"TR-28",
"TR-29",
"TR-30",
"TR-31",
"TR-32",
"TR-33",
"TR-34",
"TR-35",
"TR-36",
"TR-37",
"TR-38",
"TR-39",
"TR-40",
"TR-41",
"TR-42",
"TR-43",
"TR-44",
"TR-45",
"TR-46",
"TR-47",
"TR-48",
"TR-49",
"TR-50",
"TR-51",
"TR-52",
"TR-53",
"TR-54",
"TR-55",
"TR-56",
"TR-57",
"TR-58",
"TR-59",
"TR-60",
"TR-61",
"TR-62",
"TR-63",
"TR-64",
"TR-65",
"TR-66",
"TR-67",
"TR-68",
"TR-69",
"TR-70",
"TR-71",
"TR-72",
"TR-73",
"TR-74",
"TR-75",
"TR-76",
"TR-77",
"TR-78",
"TR-79",
"TR-80",
"TR-81",
"TT-ARI",
"TT-CHA",
"TT-CTT",
"TT-DMN",
"TT-MRC",
"TT-PED",
"TT-POS",
"TT-PRT",
"TT-PTF",
"TT-SFO",
"TT-SGE",
"TT-SIP",
"TT-SJL",
"TT-TOB",
"TT-TUP",
"TV-FUN",
"TV-NIT",
"TV-NKF",
"TV-NKL",
"TV-NMA",
"TV-NMG",
"TV-NUI",
"TV-VAI",
"TW-CHA",
"TW-CYI",
"TW-CYQ",
"TW-HSQ",
"TW-HSZ",
"TW-HUA",
"TW-ILA",
"TW-KEE",
"TW-KHH",
"TW-KIN",
"TW-LIE",
"TW-MIA",
"TW-NAN",
"TW-NWT",
"TW-PEN",
"TW-PIF",
"TW-TAO",
"TW-TNN",
"TW-TPE",
"TW-TTT",
"TW-TXG",
"TW-YUN",
"TZ-01",
"TZ-02",
"TZ-03",
"TZ-04",
"TZ-05",
"TZ-06",
"TZ-07",
"TZ-08",
"TZ-09",
"TZ-10",
"TZ-11",
"TZ-12",
"TZ-13",
"TZ-14",
"TZ-15",
"TZ-16",
"TZ-17",
"TZ-18",
"TZ-19",
"TZ-20",
"TZ-21",
"TZ-22",
"TZ-23",
"TZ-24",
"TZ-25",
"TZ-26",
"TZ-27",
"TZ-28",
"TZ-29",
"TZ-30",
"TZ-31",
"UA-05",
"UA-07",
"UA-09",
"UA-12",
"UA-14",
"UA-18",
"UA-21",
"UA-23",
"UA-26",
"UA-30",
"UA-32",
"UA-35",
"UA-40",
"UA-43",
"UA-46",
"UA-48",
"UA-51",
"UA-53",
"UA-56",
"UA-59",
"UA-61",
"UA-63",
"UA-65",
"UA-68",
"UA-71",
"UA-74",
"UA-77",
"UG-101",
"UG-102",
"UG-103",
"UG-104",
"UG-105",
"UG-106",
"UG-107",
"UG-108",
"UG-109",
"UG-110",
"UG-111",
"UG-112",
"UG-113",
"UG-114",
"UG-115",
"UG-116",
"UG-117",
"UG-118",
"UG-119",
"UG-120",
"UG-121",
"UG-122",
"UG-123",
"UG-124",
"UG-125",
"UG-126",
"UG-201",
"UG-202",
"UG-203",
"UG-204",
"UG-205",
"UG-206",
"UG-207",
"UG-208",
"UG-209",
"UG-210",
"UG-211",
"UG-212",
"UG-213",
"UG-214",
"UG-215",
"UG-216",
"UG-217",
"UG-218",
"UG-219",
"UG-220",
"UG-221",
"UG-222",
"UG-223",
"UG-224",
"UG-225",
"UG-226",
"UG-227",
"UG-228",
"UG-229",
"UG-230",
"UG-231",
"UG-232",
"UG-233",
"UG-234",
"UG-235",
"UG-236",
"UG-237",
"UG-301",
"UG-302",
"UG-303",
"UG-304",
"UG-305",
"UG-306",
"UG-307",
"UG-308",
"UG-309",
"UG-310",
"UG-311",
"UG-312",
"UG-313",
"UG-314",
"UG-315",
"UG-316",
"UG-317",
"UG-318",
"UG-319",
"UG-320",
"UG-321",
"UG-322",
"UG-323",
"UG-324",
"UG-325",
"UG-326",
"UG-327",
"UG-328",
"UG-329",
"UG-330",
"UG-331",
"UG-332",
"UG-333",
"UG-334",
"UG-335",
"UG-336",
"UG-337",
"UG-401",
"UG-402",
"UG-403",
"UG-404",
"UG-405",
"UG-406",
"UG-407",
"UG-408",
"UG-409",
"UG-410",
"UG-411",
"UG-412",
"UG-413",
"UG-414",
"UG-415",
"UG-416",
"UG-417",
"UG-418",
"UG-419",
"UG-420",
"UG-421",
"UG-422",
"UG-423",
"UG-424",
"UG-425",
"UG-426",
"UG-427",
"UG-428",
"UG-429",
"UG-430",
"UG-431",
"UG-432",
"UG-433",
"UG-434",
"UG-435",
"UG-C",
"UG-E",
"UG-N",
"UG-W",
"UM-67",
"UM-71",
"UM-76",
"UM-79",
"UM-81",
"UM-84",
"UM-86",
"UM-89",
"UM-95",
"US-AK",
"US-AL",
"US-AR",
"US-AS",
"US-AZ",
"US-CA",
"US-CO",
"US-CT",
"US-DC",
"US-DE",
"US-FL",
"US-GA",
"US-GU",
"US-HI",
"US-IA",
"US-ID",
"US-IL",
"US-IN",
"US-KS",
"US-KY",
"US-LA",
"US-MA",
"US-MD",
"US-ME",
"US-MI",
"US-MN",
"US-MO",
"US-MP",
"US-MS",
"US-MT",
"US-NC",
"US-ND",
"US-NE",
"US-NH",
"US-NJ",
"US-NM",
"US-NV",
"US-NY",
"US-OH",
"US-OK",
"US-OR",
"US-PA",
"US-PR",
"US-RI",
"US-SC",
"US-SD",
"US-TN",
"US-TX",
"US-UM",
"US-UT",
"US-VA",
"US-VI",
"US-VT",
"US-WA",
"US-WI",
"US-WV",
"US-WY",
"UY-AR",
"UY-CA",
"UY-CL",
"UY-CO",
"UY-DU",
"UY-FD",
"UY-FS",
"UY-LA",
"UY-MA",
"UY-MO",
"UY-PA",
"UY-RN",
"UY-RO",
"UY-RV",
"UY-SA",
"UY-SJ",
"UY-SO",
"UY-TA",
"UY-TT",
"UZ-AN",
"UZ-BU",
"UZ-FA",
"UZ-JI",
"UZ-NG",
"UZ-NW",
"UZ-QA",
"UZ-QR",
"UZ-SA",
"UZ-SI",
"UZ-SU",
"UZ-TK",
"UZ-TO",
"UZ-XO",
"VC-01",
"VC-02",
"VC-03",
"VC-04",
"VC-05",
"VC-06",
"VE-A",
"VE-B",
"VE-C",
"VE-D",
"VE-E",
"VE-F",
"VE-G",
"VE-H",
"VE-I",
"VE-J",
"VE-K",
"VE-L",
"VE-M",
"VE-N",
"VE-O",
"VE-P",
"VE-R",
"VE-S",
"VE-T",
"VE-U",
"VE-V",
"VE-W",
"VE-X",
"VE-Y",
"VE-Z",
"VN-01",
"VN-02",
"VN-03",
"VN-04",
"VN-05",
"VN-06",
"VN-07",
"VN-09",
"VN-13",
"VN-14",
"VN-18",
"VN-20",
"VN-21",
"VN-22",
"VN-23",
"VN-24",
"VN-25",
"VN-26",
"VN-27",
"VN-28",
"VN-29",
"VN-30",
"VN-31",
"VN-32",
"VN-33",
"VN-34",
"VN-35",
"VN-36",
"VN-37",
"VN-39",
"VN-40",
"VN-41",
"VN-43",
"VN-44",
"VN-45",
"VN-46",
"VN-47",
"VN-49",
"VN-50",
"VN-51",
"VN-52",
"VN-53",
"VN-54",
"VN-55",
"VN-56",
"VN-57",
"VN-58",
"VN-59",
"VN-61",
"VN-63",
"VN-66",
"VN-67",
"VN-68",
"VN-69",
"VN-70",
"VN-71",
"VN-72",
"VN-73",
"VN-CT",
"VN-DN",
"VN-HN",
"VN-HP",
"VN-SG",
"VU-MAP",
"VU-PAM",
"VU-SAM",
"VU-SEE",
"VU-TAE",
"VU-TOB",
"WF-AL",
"WF-SG",
"WF-UV",
"WS-AA",
"WS-AL",
"WS-AT",
"WS-FA",
"WS-GE",
"WS-GI",
"WS-PA",
"WS-SA",
"WS-TU",
"WS-VF",
"WS-VS",
"YE-AB",
"YE-AD",
"YE-AM",
"YE-BA",
"YE-DA",
"YE-DH",
"YE-HD",
"YE-HJ",
"YE-HU",
"YE-IB",
"YE-JA",
"YE-LA",
"YE-MA",
"YE-MR",
"YE-MW",
"YE-RA",
"YE-SA",
"YE-SD",
"YE-SH",
"YE-SN",
"YE-SU",
"YE-TA",
"ZA-EC",
"ZA-FS",
"ZA-GP",
"ZA-KZN",
"ZA-LP",
"ZA-MP",
"ZA-NC",
"ZA-NW",
"ZA-WC",
"ZM-01",
"ZM-02",
"ZM-03",
"ZM-04",
"ZM-05",
"ZM-06",
"ZM-07",
"ZM-08",
"ZM-09",
"ZM-10",
"ZW-BU",
"ZW-HA",
"ZW-MA",
"ZW-MC",
"ZW-ME",
"ZW-MI",
"ZW-MN",
"ZW-MS",
"ZW-MV",
"ZW-MW"
]
},
"country": {
"type": "string",
"enum": [
"EU",
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BA",
"BW",
"BV",
"BR",
"IO",
"VG",
"BN",
"BG",
"BF",
"BI",
"KH",
"CM",
"CA",
"CV",
"BQ",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"KP",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"KR",
"SS",
"ES",
"LK",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UM",
"VI",
"UG",
"UA",
"AE",
"GB",
"US",
"UY",
"UZ",
"VU",
"VA",
"VE",
"VN",
"WF",
"EH",
"YE",
"ZM",
"ZW"
]
}
}
}
},
"operator": {
"type": "string",
"enum": ["IN", "NOT_IN"]
},
"displayPriority": {
"type": "number"
},
"viewState": {
"type": "string",
"enum": [
"QuickOptions",
"QuickOptions3",
"AcceptAll",
"AcceptAllRejectAllToggle",
"AcceptAllOrMoreChoices",
"AcceptOrRejectAll",
"AcceptOrRejectAllOrMoreChoices",
"AcceptOrRejectAnalytics",
"AcceptOrRejectAdvertising",
"NoticeAndDoNotSell",
"DoNotSellExplainer",
"PrivacyPolicyNotice",
"CompleteOptions",
"CompleteOptionsInverted",
"Hidden"
]
},
"purposes": {
"type": "array",
"items": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
}
},
"optedOutPurposes": {
"type": "array",
"items": {
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string"
}
}
}
},
"browserLanguages": {
"type": "array",
"items": {
"type": "string",
"enum": [
"om",
"ab",
"aa",
"af",
"sq",
"am",
"ar-DZ",
"ar-BH",
"ar-EG",
"ar-IQ",
"ar-JO",
"ar-KW",
"ar-LB",
"ar-LY",
"ar-MA",
"ar-OM",
"ar-QA",
"ar-SA",
"ar-SY",
"ar-TN",
"ar-AE",
"ar-YE",
"ar",
"hy",
"as",
"ay",
"az",
"ba",
"eu",
"be",
"bn",
"dz",
"bh",
"bi",
"br",
"bg-BG",
"bg",
"my",
"km",
"ca",
"zh-CN",
"zh-HK",
"zh-MO",
"zh-SG",
"zh-TW",
"zh",
"co",
"hr-HR",
"hr",
"cs-CZ",
"cs",
"da-DK",
"da",
"div",
"nl-BE",
"nl-NL",
"nl",
"en-AU",
"en-BZ",
"en-CA",
"en-IE",
"en-JM",
"en-NZ",
"en-PH",
"en-ZA",
"en-CH",
"en-TT",
"en-GB",
"en-US",
"en-ZW",
"us",
"eo",
"et",
"et-EE",
"fo",
"fa",
"fj",
"fi-FI",
"fi",
"fr-BE",
"fr-CA",
"fr-FR",
"fr-LU",
"fr-MC",
"fr-CH",
"fr",
"fy",
"mk",
"gd",
"gl",
"ka",
"de-AT",
"de-DE",
"de-LI",
"de-LU",
"de-CH",
"de",
"el-GR",
"el",
"kl",
"gn",
"gu",
"ha",
"iw",
"hi",
"hu-HU",
"hu",
"is",
"is-IS",
"in",
"ia",
"ie",
"ik",
"ga",
"ga-IE",
"it-IT",
"it-CH",
"it",
"ja",
"jw",
"kn",
"ks",
"kk",
"rw",
"ky",
"rn",
"kok",
"ko",
"ku",
"kz",
"lo",
"la",
"lv",
"lv-LV",
"ln",
"lt-LT",
"lt",
"mg",
"ms",
"ml",
"mt",
"mt-MT",
"mi",
"mr",
"mo",
"mn",
"na",
"ne",
"no",
"nb",
"nn",
"no-NO",
"nb-NO",
"nn-NO",
"oc",
"or",
"ps",
"pl-PL",
"pl",
"pt-BR",
"pt-PT",
"pt-CH",
"pt",
"pa",
"qu",
"rm",
"ro-MD",
"ro-RO",
"ro",
"ru-MD",
"ru",
"sm",
"sg",
"sa",
"sr",
"sh",
"st",
"sn",
"sd",
"si",
"ss",
"sk",
"sk-SK",
"sl",
"sl-SI",
"so",
"sb",
"es-AR",
"es-BO",
"es-CL",
"es-CO",
"es-CR",
"es-DO",
"es-EC",
"es-SV",
"es-ES",
"es-GT",
"es-HN",
"es-MX",
"es-NI",
"es-PA",
"es-PY",
"es-PE",
"es-PR",
"es-US",
"es-UY",
"es-VE",
"es",
"su",
"sx",
"sw",
"sv-FI",
"sv-SE",
"sv",
"gsw",
"gsw-LI",
"gsw-CH",
"syr",
"tl",
"tg",
"ta",
"tt",
"te",
"th",
"bo",
"ti",
"to",
"ts",
"tn",
"tr",
"tk",
"tw",
"uk",
"ur",
"uz",
"vi",
"vo",
"cy",
"wo",
"xh",
"yi",
"yo",
"zu"
]
}
},
"browserTimeZones": {
"type": "array",
"items": {
"type": "string",
"enum": [
"Africa/Abidjan",
"Africa/Accra",
"Africa/Addis_Ababa",
"Africa/Algiers",
"Africa/Asmera",
"Africa/Bamako",
"Africa/Bangui",
"Africa/Banjul",
"Africa/Bissau",
"Africa/Blantyre",
"Africa/Brazzaville",
"Africa/Bujumbura",
"Africa/Cairo",
"Africa/Casablanca",
"Africa/Ceuta",
"Africa/Conakry",
"Africa/Dakar",
"Africa/Dar_es_Salaam",
"Africa/Djibouti",
"Africa/Douala",
"Africa/El_Aaiun",
"Africa/Freetown",
"Africa/Gaborone",
"Africa/Harare",
"Africa/Johannesburg",
"Africa/Juba",
"Africa/Kampala",
"Africa/Khartoum",
"Africa/Kigali",
"Africa/Kinshasa",
"Africa/Lagos",
"Africa/Libreville",
"Africa/Lome",
"Africa/Luanda",
"Africa/Lubumbashi",
"Africa/Lusaka",
"Africa/Malabo",
"Africa/Maputo",
"Africa/Maseru",
"Africa/Mbabane",
"Africa/Mogadishu",
"Africa/Monrovia",
"Africa/Nairobi",
"Africa/Ndjamena",
"Africa/Niamey",
"Africa/Nouakchott",
"Africa/Ouagadougou",
"Africa/Porto-Novo",
"Africa/Sao_Tome",
"Africa/Tripoli",
"Africa/Tunis",
"Africa/Windhoek",
"America/Adak",
"America/Anchorage",
"America/Anguilla",
"America/Antigua",
"America/Araguaina",
"America/Argentina/La_Rioja",
"America/Argentina/Rio_Gallegos",
"America/Argentina/Salta",
"America/Argentina/San_Juan",
"America/Argentina/San_Luis",
"America/Argentina/Tucuman",
"America/Argentina/Ushuaia",
"America/Aruba",
"America/Asuncion",
"America/Bahia",
"America/Bahia_Banderas",
"America/Barbados",
"America/Belem",
"America/Belize",
"America/Blanc-Sablon",
"America/Boa_Vista",
"America/Bogota",
"America/Boise",
"America/Buenos_Aires",
"America/Cambridge_Bay",
"America/Campo_Grande",
"America/Cancun",
"America/Caracas",
"America/Catamarca",
"America/Cayenne",
"America/Cayman",
"America/Chicago",
"America/Chihuahua",
"America/Coral_Harbour",
"America/Cordoba",
"America/Costa_Rica",
"America/Creston",
"America/Cuiaba",
"America/Curacao",
"America/Danmarkshavn",
"America/Dawson",
"America/Dawson_Creek",
"America/Denver",
"America/Detroit",
"America/Dominica",
"America/Edmonton",
"America/Eirunepe",
"America/El_Salvador",
"America/Fort_Nelson",
"America/Fortaleza",
"America/Glace_Bay",
"America/Godthab",
"America/Goose_Bay",
"America/Grand_Turk",
"America/Grenada",
"America/Guadeloupe",
"America/Guatemala",
"America/Guayaquil",
"America/Guyana",
"America/Halifax",
"America/Havana",
"America/Hermosillo",
"America/Indiana/Knox",
"America/Indiana/Marengo",
"America/Indiana/Petersburg",
"America/Indiana/Tell_City",
"America/Indiana/Vevay",
"America/Indiana/Vincennes",
"America/Indiana/Winamac",
"America/Indianapolis",
"America/Inuvik",
"America/Iqaluit",
"America/Jamaica",
"America/Jujuy",
"America/Juneau",
"America/Kentucky/Monticello",
"America/Kralendijk",
"America/La_Paz",
"America/Lima",
"America/Los_Angeles",
"America/Louisville",
"America/Lower_Princes",
"America/Maceio",
"America/Managua",
"America/Manaus",
"America/Marigot",
"America/Martinique",
"America/Matamoros",
"America/Mazatlan",
"America/Mendoza",
"America/Menominee",
"America/Merida",
"America/Metlakatla",
"America/Mexico_City",
"America/Miquelon",
"America/Moncton",
"America/Monterrey",
"America/Montevideo",
"America/Montreal",
"America/Montserrat",
"America/Nassau",
"America/New_York",
"America/Nipigon",
"America/Nome",
"America/Noronha",
"America/North_Dakota/Beulah",
"America/North_Dakota/Center",
"America/North_Dakota/New_Salem",
"America/Ojinaga",
"America/Panama",
"America/Pangnirtung",
"America/Paramaribo",
"America/Phoenix",
"America/Port-au-Prince",
"America/Port_of_Spain",
"America/Porto_Velho",
"America/Puerto_Rico",
"America/Punta_Arenas",
"America/Rainy_River",
"America/Rankin_Inlet",
"America/Recife",
"America/Regina",
"America/Resolute",
"America/Rio_Branco",
"America/Santa_Isabel",
"America/Santarem",
"America/Santiago",
"America/Santo_Domingo",
"America/Sao_Paulo",
"America/Scoresbysund",
"America/Sitka",
"America/St_Barthelemy",
"America/St_Johns",
"America/St_Kitts",
"America/St_Lucia",
"America/St_Thomas",
"America/St_Vincent",
"America/Swift_Current",
"America/Tegucigalpa",
"America/Thule",
"America/Thunder_Bay",
"America/Tijuana",
"America/Toronto",
"America/Tortola",
"America/Vancouver",
"America/Whitehorse",
"America/Winnipeg",
"America/Yakutat",
"America/Yellowknife",
"Antarctica/Casey",
"Antarctica/Davis",
"Antarctica/DumontDUrville",
"Antarctica/Macquarie",
"Antarctica/Mawson",
"Antarctica/McMurdo",
"Antarctica/Palmer",
"Antarctica/Rothera",
"Antarctica/Syowa",
"Antarctica/Troll",
"Antarctica/Vostok",
"Arctic/Longyearbyen",
"Asia/Aden",
"Asia/Almaty",
"Asia/Amman",
"Asia/Anadyr",
"Asia/Aqtau",
"Asia/Aqtobe",
"Asia/Ashgabat",
"Asia/Atyrau",
"Asia/Baghdad",
"Asia/Bahrain",
"Asia/Baku",
"Asia/Bangkok",
"Asia/Barnaul",
"Asia/Beirut",
"Asia/Bishkek",
"Asia/Brunei",
"Asia/Calcutta",
"Asia/Chita",
"Asia/Choibalsan",
"Asia/Colombo",
"Asia/Damascus",
"Asia/Dhaka",
"Asia/Dili",
"Asia/Dubai",
"Asia/Dushanbe",
"Asia/Famagusta",
"Asia/Gaza",
"Asia/Hebron",
"Asia/Hong_Kong",
"Asia/Hovd",
"Asia/Irkutsk",
"Asia/Jakarta",
"Asia/Jayapura",
"Asia/Jerusalem",
"Asia/Kabul",
"Asia/Kamchatka",
"Asia/Karachi",
"Asia/Katmandu",
"Asia/Khandyga",
"Asia/Krasnoyarsk",
"Asia/Kuala_Lumpur",
"Asia/Kuching",
"Asia/Kuwait",
"Asia/Macau",
"Asia/Magadan",
"Asia/Makassar",
"Asia/Manila",
"Asia/Muscat",
"Asia/Nicosia",
"Asia/Novokuznetsk",
"Asia/Novosibirsk",
"Asia/Omsk",
"Asia/Oral",
"Asia/Phnom_Penh",
"Asia/Pontianak",
"Asia/Pyongyang",
"Asia/Qatar",
"Asia/Qostanay",
"Asia/Qyzylorda",
"Asia/Rangoon",
"Asia/Riyadh",
"Asia/Saigon",
"Asia/Sakhalin",
"Asia/Samarkand",
"Asia/Seoul",
"Asia/Shanghai",
"Asia/Singapore",
"Asia/Srednekolymsk",
"Asia/Taipei",
"Asia/Tashkent",
"Asia/Tbilisi",
"Asia/Tehran",
"Asia/Thimphu",
"Asia/Tokyo",
"Asia/Tomsk",
"Asia/Ulaanbaatar",
"Asia/Urumqi",
"Asia/Ust-Nera",
"Asia/Vientiane",
"Asia/Vladivostok",
"Asia/Yakutsk",
"Asia/Yekaterinburg",
"Asia/Yerevan",
"Atlantic/Azores",
"Atlantic/Bermuda",
"Atlantic/Canary",
"Atlantic/Cape_Verde",
"Atlantic/Faeroe",
"Atlantic/Madeira",
"Atlantic/Reykjavik",
"Atlantic/South_Georgia",
"Atlantic/St_Helena",
"Atlantic/Stanley",
"Australia/Adelaide",
"Australia/Brisbane",
"Australia/Broken_Hill",
"Australia/Currie",
"Australia/Darwin",
"Australia/Eucla",
"Australia/Hobart",
"Australia/Lindeman",
"Australia/Lord_Howe",
"Australia/Melbourne",
"Australia/Perth",
"Australia/Sydney",
"Europe/Amsterdam",
"Europe/Andorra",
"Europe/Astrakhan",
"Europe/Athens",
"Europe/Belgrade",
"Europe/Berlin",
"Europe/Bratislava",
"Europe/Brussels",
"Europe/Bucharest",
"Europe/Budapest",
"Europe/Busingen",
"Europe/Chisinau",
"Europe/Copenhagen",
"Europe/Dublin",
"Europe/Gibraltar",
"Europe/Guernsey",
"Europe/Helsinki",
"Europe/Isle_of_Man",
"Europe/Istanbul",
"Europe/Jersey",
"Europe/Kaliningrad",
"Europe/Kiev",
"Europe/Kirov",
"Europe/Lisbon",
"Europe/Ljubljana",
"Europe/London",
"Europe/Luxembourg",
"Europe/Madrid",
"Europe/Malta",
"Europe/Mariehamn",
"Europe/Minsk",
"Europe/Monaco",
"Europe/Moscow",
"Europe/Oslo",
"Europe/Paris",
"Europe/Podgorica",
"Europe/Prague",
"Europe/Riga",
"Europe/Rome",
"Europe/Samara",
"Europe/San_Marino",
"Europe/Sarajevo",
"Europe/Saratov",
"Europe/Simferopol",
"Europe/Skopje",
"Europe/Sofia",
"Europe/Stockholm",
"Europe/Tallinn",
"Europe/Tirane",
"Europe/Ulyanovsk",
"Europe/Uzhgorod",
"Europe/Vaduz",
"Europe/Vatican",
"Europe/Vienna",
"Europe/Vilnius",
"Europe/Volgograd",
"Europe/Warsaw",
"Europe/Zagreb",
"Europe/Zaporozhye",
"Europe/Zurich",
"Indian/Antananarivo",
"Indian/Chagos",
"Indian/Christmas",
"Indian/Cocos",
"Indian/Comoro",
"Indian/Kerguelen",
"Indian/Mahe",
"Indian/Maldives",
"Indian/Mauritius",
"Indian/Mayotte",
"Indian/Reunion",
"Pacific/Apia",
"Pacific/Auckland",
"Pacific/Bougainville",
"Pacific/Chatham",
"Pacific/Easter",
"Pacific/Efate",
"Pacific/Enderbury",
"Pacific/Fakaofo",
"Pacific/Fiji",
"Pacific/Funafuti",
"Pacific/Galapagos",
"Pacific/Gambier",
"Pacific/Guadalcanal",
"Pacific/Guam",
"Pacific/Honolulu",
"Pacific/Johnston",
"Pacific/Kiritimati",
"Pacific/Kosrae",
"Pacific/Kwajalein",
"Pacific/Majuro",
"Pacific/Marquesas",
"Pacific/Midway",
"Pacific/Nauru",
"Pacific/Niue",
"Pacific/Norfolk",
"Pacific/Noumea",
"Pacific/Pago_Pago",
"Pacific/Palau",
"Pacific/Pitcairn",
"Pacific/Ponape",
"Pacific/Port_Moresby",
"Pacific/Rarotonga",
"Pacific/Saipan",
"Pacific/Tahiti",
"Pacific/Tarawa",
"Pacific/Tongatapu",
"Pacific/Truk",
"Pacific/Wake",
"Pacific/Wallis"
]
}
}
}
}
]
}
},
"theme": {
"type": "object",
"properties": {
"primaryColor": {
"type": "string"
},
"fontColor": {
"type": "string"
},
"privacyPolicy": {
"type": "string"
},
"prompt": {
"type": "number"
}
}
},
"syncGroups": {
"type": "string"
}
}
}
}
}
| transcend-yml-schema-v4 |
{
"properties": {
"dimensions": {
"description": "The dimensions required to calculate the area",
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape for which the area is to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_7ba6efb0 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Example Schema",
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"age": {
"description": "Age in years",
"type": "integer",
"minimum": 0
}
},
"required": [
"firstName",
"lastName"
]
} | o28254 |
{
"properties": {
"customer": {
"properties": {
"address": {
"description": "The address of the customer",
"type": "string"
},
"email": {
"description": "The email address of the customer",
"type": "string"
},
"name": {
"description": "The name of the customer",
"type": "string"
}
},
"required": [
"name",
"email",
"address"
],
"type": "object"
},
"items": {
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer",
"items"
],
"type": "object"
} | generate_invoice_4a46a04c |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"components": {
"type": "object",
"required": [
"resource"
],
"properties": {
"resource": {
"type": "string",
"format": "topic"
}
}
},
"details": {
"type": "object",
"properties": {
"resource": {
"type": "string",
"format": "topic"
},
"action": {
"type": "string",
"format": "topic"
},
"relation": {
"type": "string",
"enum": [
"readme",
"changelog"
],
"default": "readme"
}
}
}
}
} | o9351 |
{
"$comment": "Schema derived from https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json and https://github.com/dotnet/deployment-tools/blob/main/src/Microsoft.Deployment.DotNet.Releases/src/Product.cs",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"dateYYYYMMDD": {
"type": "string",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"description": "A date in the format YYYY-MM-DD",
"$comment": "If we targeted draft-07 we could use the 'date' format instead of this format pattern. We cannot use the 'date-time' format because our existing values don't validate against it."
},
"releaseVersion": {
"type": "string",
"description": "A SemVer-compatible version string",
"pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"
},
"releaseType": {
"type": "string",
"enum": ["sts", "lts"],
"description": "An enumeration describing the different releaes types of a product",
"$comment": "If we targeted draft-06 we could use oneOf/const in combination to add descriptions to the enum values"
},
"supportPhase": {
"type": "string",
"enum": ["preview", "go-live", "active", "maintenance", "eol"],
"description": "An enumeration describing the different support phases of a product",
"$comment": "If we targeted draft-06 we could use oneOf/const in combination to add descriptions to the enum values"
},
"product": {
"type": "object",
"properties": {
"channel-version": {
"type": "string",
"title": "ProductVersion",
"description": "The version of the product, e.g '5.0' or '1.1'",
"pattern": "^[0-9]+\\.[0-9]+$"
},
"eol-date": {
"oneOf": [
{
"$ref": "#/definitions/dateYYYYMMDD"
},
{
"type": "null"
}
],
"title": "EndOfLifeDate",
"description": "The end-of-life (EOL) date for this Product when it is considered to be out of support. The value may be `null` if the EOL date is undetermined, e.g. when a product is still a prerelease."
},
"security": {
"type": "boolean",
"title": "LatestReleaseIncludesSecurityUpdate",
"description": "`true` if the latest release of this product includes a security update, `false` otherwise."
},
"latest-release-date": {
"$ref": "#/definitions/dateYYYYMMDD",
"title": "LatestReleaseDate",
"description": "The date of the latest release of this product."
},
"latest-release": {
"$ref": "#/definitions/releaseVersion",
"title": "LatestReleaseVersion",
"description": "The version of the latest release"
},
"latest-runtime": {
"$ref": "#/definitions/releaseVersion",
"title": "LatestRuntimeVersion",
"description": "The version of the runtime included in the latest release"
},
"latest-sdk": {
"$ref": "#/definitions/releaseVersion",
"title": "LatestSdkVersion",
"description": "The version of the SDK included in the latest release. This is usually the SDK with the highest feature band. A ProductRelease may include multiple SDKs across different feature bands, all of which carry the same runtime version."
},
"product": {
"type": "string",
"title": "ProductName",
"description": "The name of the product."
},
"releases.json": {
"description": "The URL pointing to the releases.json file that contains information about all the releases associated with this Product.",
"type": "string",
"format": "uri",
"$comment": "Since this is always an absolute uri, the 'uri' format is unambiguous"
},
"release-type": {
"$ref": "#/definitions/releaseType",
"description": "The type of Product release indicating whether the release is Standard Term Support (sts) or Long Term Support (lts)."
},
"support-phase": {
"$ref": "#/definitions/supportPhase",
"description": "The support phase of the Product."
}
},
"required": [
"channel-version",
"security",
"latest-release-date",
"latest-release",
"latest-runtime",
"latest-sdk",
"product",
"releases.json",
"release-type",
"support-phase"
],
"additionalProperties": false
}
},
"description": "A collection of manifests for .NET products, which is updated with each preview and stable release of the .NET SDK and/or Runtime",
"id": "https://json.schemastore.org/dotnet-releases-index.json",
"properties": {
"releases-index": {
"type": "array",
"description": "A collection of all released products",
"items": {
"$ref": "#/definitions/product"
}
}
},
"required": ["releases-index"],
"title": "JSON schema for .NET product collection manifests",
"type": "object"
}
| dotnet-releases-index |
{
"$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 represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.",
"properties": {
"additional_properties": {
"$ref": "#/definitions/trait_additional_properties_json"
},
"note": {
"description": "Optional note associated with this update.",
"type": "string"
},
"status": {
"description": "The current status of the pitch.",
"pattern": "^([a-z]|[ ])*$",
"type": "string"
},
"time": {
"_format": "date-time",
"description": "The time of this update.",
"type": "string"
},
"user_id": {
"description": "The ID of the user who made this update.",
"type": "string"
}
},
"title": "Platform pitch event",
"type": "object"
} | wp_76_Normalized |
{
"definitions": {
"channel": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"channel_id": {
"description": "unique identifier of channel",
"example": 123456,
"type": [
"integer"
]
},
"drains": {
"description": "drains under the channel",
"items": {
"$ref": "#/definitions/drain"
},
"type": [
"array"
]
},
"identity": {
"$ref": "#/definitions/channel/definitions/channel_id"
},
"tokens": {
"description": "tokens under the channel",
"items": {
"$ref": "#/definitions/token"
},
"type": [
"array"
]
}
},
"description": "A channel is a log stream.",
"links": [
{
"description": "Create a new channel.",
"href": "/channels",
"method": "POST",
"rel": "create",
"schema": {
"properties": {
"name": {
"description": "a name for the channel",
"example": "my-channel",
"type": [
"string"
]
},
"tokens": {
"description": "names of tokens to create",
"example": [
"my-token",
"your-token"
],
"items": {
"type": [
"string"
]
},
"type": [
"array"
]
}
},
"required": [
"name"
],
"type": [
"object"
]
},
"targetSchema": {
"properties": {
"channel_id": {
"$ref": "#/definitions/channel/definitions/channel_id"
},
"tokens": {
"description": "created token names and tokens",
"example": {
"my-token": "t.01234567-89ab-cdef-0123-456789abcdef",
"your-token": "t.5b432a82-2c03-4ecd-a8d4-a75d627b29ab"
},
"type": [
"object"
]
}
},
"type": [
"object"
]
},
"title": "Create"
},
{
"description": "Delete an existing channel.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}",
"method": "DELETE",
"rel": "empty",
"response_example": {
"head": "HTTP/1.1 200 OK"
},
"title": "Delete",
"type": [
null
]
},
{
"description": "Info for existing channel.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}",
"method": "GET",
"rel": "self",
"title": "Info",
"type": [
"object"
]
}
],
"properties": {
"channel_id": {
"$ref": "#/definitions/channel/definitions/channel_id"
},
"drains": {
"$ref": "#/definitions/channel/definitions/drains"
},
"tokens": {
"$ref": "#/definitions/channel/definitions/tokens"
}
},
"title": "Channel",
"type": [
"object"
]
},
"drain": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"id": {
"description": "unique identifier of drain",
"example": 123456,
"type": [
"integer"
]
},
"identity": {
"$ref": "#/definitions/drain/definitions/id"
},
"token": {
"description": "drain token",
"example": "d.01234567-89ab-cdef-0123-456789abcdef",
"type": [
"string"
]
},
"url": {
"description": "drain destination",
"example": "https://example.org",
"type": [
"string"
]
}
},
"description": "Drains are log stream tee targets.",
"links": [
{
"description": "Create a new drain.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}/drains",
"method": "POST",
"rel": "create",
"schema": {
"properties": {
"url": {
"$ref": "#/definitions/drain/definitions/url"
}
},
"required": [
"url"
],
"type": [
"object"
]
},
"title": "Create"
},
{
"description": "Delete an existing drain.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}/drains/{(%23%2Fdefinitions%2Fdrain%2Fdefinitions%2Fidentity)}",
"method": "DELETE",
"rel": "empty",
"response_example": {
"head": "HTTP/1.1 200 OK"
},
"title": "Delete",
"type": [
null
]
},
{
"description": "Update an existing drain.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}/drains/{(%23%2Fdefinitions%2Fdrain%2Fdefinitions%2Fidentity)}",
"method": "POST",
"rel": "update",
"schema": {
"properties": {
"url": {
"$ref": "#/definitions/drain/definitions/url"
}
},
"required": [
"url"
],
"type": [
"object"
]
},
"title": "Update"
}
],
"properties": {
"id": {
"$ref": "#/definitions/drain/definitions/id"
},
"token": {
"$ref": "#/definitions/drain/definitions/token"
},
"url": {
"$ref": "#/definitions/drain/definitions/url"
}
},
"title": "Drain",
"type": [
"object"
]
},
"health": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"status": {
"description": "API control rod status (normal, read_only)",
"example": "normal",
"type": [
"string"
]
}
},
"links": [
{
"description": "Performs a health check against the API.",
"href": "/healthcheck",
"method": "GET",
"rel": "self",
"targetSchema": {
"properties": {
"status": {
"$ref": "#/definitions/health/definitions/status"
}
},
"type": [
"object"
]
}
}
],
"title": "Healthchecks"
},
"session": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"identity": {
"$ref": "#/definitions/session/definitions/session_id"
},
"session_id": {
"description": "unique identifier of a session",
"example": "d58fb90e-c2bd-4e16-bfe0-e9e7cc7bff7f",
"type": [
"string"
]
},
"url": {
"description": "session URL to GET to retrieve logs",
"example": "https://logplex.heroku.com/sessions/d58fb90e-c2bd-4e16-bfe0-e9e7cc7bff7f",
"type": [
"string"
]
}
},
"description": "Sessions fetch recent and real-time logs from channels.",
"links": [
{
"description": "Create a new session.",
"href": "/v2/sessions",
"method": "POST",
"rel": "create",
"schema": {
"example": {
"channel_id": "12345",
"num": "5"
},
"properties": {
"channel_id": {
"description": "unique identifier of channel (must be a string)",
"example": "12345",
"type": [
"string"
]
},
"num": {
"default": "100",
"description": "number of log lines to fetch",
"type": [
"string",
"null"
]
},
"tail": {
"description": "if present with any value, start a live tail session",
"type": [
"boolean",
"null"
]
}
},
"required": [
"channel_id"
],
"type": [
"object"
]
},
"title": "Create",
"type": [
"object"
]
},
{
"description": "Get the chunk encoded session log data. If tail was specified the connection is long lived.",
"href": "/sessions/{(%23%2Fdefinitions%2Fsession%2Fdefinitions%2Fidentity)}",
"method": "GET",
"rel": "empty",
"response_example": {
"body": "2012-12-10T03:00:48Z+00:00 app[console.1]: test message 1\n2012-12-10T03:00:49Z+00:00 app[console.1]: test message 2\n2012-12-10T03:00:50Z+00:00 app[console.1]: test message 3\n2012-12-10T03:00:51Z+00:00 app[console.1]: test message 4\n2012-12-10T03:00:52Z+00:00 app[console.1]: test message 5\n",
"head": "HTTP/1.1 200 OK\nTransfer-Encoding: chunked\n"
},
"title": "Logs",
"type": [
null,
"string"
]
}
],
"properties": {
"url": {
"$ref": "#/definitions/session/definitions/url"
}
},
"title": "Session",
"type": [
"object"
]
},
"token": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"identity": {
"$ref": "#/definitions/token/definitions/token"
},
"name": {
"description": "name of token",
"example": "my-token",
"type": [
"string"
]
},
"token": {
"description": "unique identifier of token",
"example": "t.01234567-89ab-cdef-0123-456789abcdef",
"type": [
"string"
]
}
},
"description": "Tokens are log producers.",
"links": [
{
"description": "Create a new token.",
"href": "/v2/channels/{(%23%2Fdefinitions%2Fchannel%2Fdefinitions%2Fidentity)}/tokens",
"method": "POST",
"rel": "create",
"schema": {
"properties": {
"name": {
"$ref": "#/definitions/token/definitions/name"
}
},
"required": [
"name"
],
"type": [
"object"
]
},
"title": "Create"
}
],
"properties": {
"name": {
"$ref": "#/definitions/token/definitions/name"
},
"token": {
"$ref": "#/definitions/token/definitions/token"
}
},
"title": "Token",
"type": [
"object"
]
}
},
"description": "The log router",
"links": [
{
"href": "https://logplex.heroku.com",
"rel": "self"
}
],
"properties": {
"channel": {
"$ref": "#/definitions/channel"
},
"drain": {
"$ref": "#/definitions/drain"
},
"health": {
"$ref": "#/definitions/health"
},
"session": {
"$ref": "#/definitions/session"
},
"token": {
"$ref": "#/definitions/token"
}
},
"title": "Logplex",
"type": [
"object"
]
} | o77732 |
{
"additionalProperties": false,
"description": "Schema for a social interaction event",
"properties": {
"action": {
"type": "string"
},
"network": {
"type": "string"
},
"target": {
"type": "string"
}
},
"required": [
"action",
"network"
],
"self": {
"format": "jsonschema",
"name": "social_interaction",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_318_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"ranks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"cost": {
"type": "number"
},
"effect": {
"type": "string"
}
},
"required": [
"cost",
"effect"
]
}
}
},
"required": [
"id",
"name",
"description",
"icon",
"ranks"
]
},
"properties": {},
"additionalProperties": false
} | o45223 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "HTML Widget Template Schema",
"description": "Defines a web-component based widget template that uses vanilla HTML.",
"type": "object",
"additionalProperties": false,
"required": [
"meta",
"htmlTemplate"
],
"properties": {
"meta": {
"type": "object",
"title": "Template Meta",
"additionalProperties": false,
"required": [
"dependencies",
"plugins"
],
"properties": {
"dependencies": {
"type": "array",
"description": "A list of NPM resources to load into the widget",
"items": {
"$ref": "#/definitions/npmDependency"
}
},
"plugins": {
"type": "array",
"description": "A list of component editors used in editing the widget",
"items": {
"$ref": "#/definitions/npmDependency"
}
}
}
},
"htmlTemplate": {
"type": "string",
"title": "HTML Template",
"description": "Raw HTML content that can use web components."
}
},
"definitions": {
"npmDependency": {
"type": "object",
"properties": {
"package": {
"type": "string",
"description": "An NPM package name or scoped package"
},
"version": {
"type": "string",
"description": "An NPM version string, such as Patch releases: 1.0 or 1.0.x or ~1.0.4 Minor releases: 1 or 1.x or ^1.0.4 Major releases: * or x",
"default": "latest"
},
"filePath": {
"type": "string",
"description": "The path to a resource in the specified package",
"default": ""
}
},
"required": [
"version",
"package"
]
}
}
} | o72181 |
{
"description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface",
"properties": {
"path": {
"description": "Path is the URL path of the request",
"type": [
"string",
"null"
]
},
"verb": {
"description": "Verb is the standard HTTP verb",
"type": [
"string",
"null"
]
}
},
"type": "object"
} | kb_636_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Place_DistributionCentre",
"description": "Place_DistributionCentre",
"properties": {
"id": {
"type": "string",
"title": "Identifier",
"minLength": 24,
"maxLength": 24,
"description": "Unique System generated Identifier"
},
"createdAt": {
"type": "integer",
"title": "Created At",
"minimum": 0,
"maximum": 4105172262000,
"description": "Created At, epoch time"
},
"updatedAt": {
"type": "integer",
"title": "Updated At",
"minimum": 0,
"maximum": 4105172262000,
"description": "Last Updated , epoch time"
},
"properties": {
"type": "object",
"title": "Properties",
"description": "Temporal Properties",
"properties": {}
},
"description": {
"type": "string",
"title": "Description schema.",
"description": "Description of this Object"
},
"name": {
"type": "string",
"title": "Name",
"description": "Name of Object"
},
"tags": {
"type": "array",
"title": "Tags schema.",
"description": "A list of Tags for searching",
"items": {
"type": "string",
"title": "Tag",
"description": "A Tag."
}
},
"identifiers": {
"type": "object",
"title": "Identifiers",
"description": "External Identifiers",
"properties": {
"placeId": {
"title": "Place Identifier",
"description": "external place number from source system",
"type": "integer"
}
},
"required": [
"placeId"
]
},
"customFields": {
"type": "object",
"title": "CustomFields",
"description": "Additional Data About this Object",
"properties": {}
},
"position": {
"title": "Position",
"description": " 14 character numeric string, eg 12345678901234",
"type": "object"
},
"address": {
"title": "Address",
"description": " 14 character numeric string, eg 12345678901234",
"type": "object"
}
},
"required": [
"name"
]
}
| o39529 |
{
"properties": {
"filters": {
"items": {
"id": "/filter",
"type": "object"
},
"type": "array"
},
"last_update": {
"id": "/last_update",
"type": "string"
}
}
} | o74489 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"nifti"
],
"type": "object",
"properties": {
"nifti": {
"type": "object",
"properties": {
"type": {
"enum": [
"nifti"
]
}
}
}
}
},
"config": {
"required": [
"measurement"
],
"type": "object",
"properties": {
"measurement": {
"default": "auto-detect",
"enum": [
"auto-detect",
"functional",
"anatomy_t1w",
"anatomy_t2w"
],
"type": "string"
}
}
}
},
"title": "Invocation manifest for MRIQC: No-reference image quality metrics for quality assessment of MRI (v0.9.4)"
} | o41336 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "A response containing traffic flows between objects",
"properties": {
"header": {
"type": "object",
"description": "Object describing document data",
"properties": {
"time_range": {
"type": "object",
"description": "Time range of the document records",
"properties": {
"start": {
"type": "string",
"description": "ISO8601 timestamp of earliest record in document"
},
"end": {
"type": "string",
"description": "ISO8601 timestamp of latest record in document"
}
}
},
"recordCount": {
"type": "integer",
"description": "Total record count (number of array items in data)"
},
"objTypes": {
"type": "array",
"description": "A collection of object types",
"items": {
"type": "string",
"description": "An object type"
}
}
}
},
"data": {
"type": "array",
"description": "Array of historic records",
"items": {
"type": "object",
"description": "The schema of an array entry",
"properties": {
"srcObj": {
"type": "string",
"description": "The name/ID of source object"
},
"srcType": {
"type": "string",
"description": "The type of source object"
},
"destObj": {
"type": "string",
"description": "The name/ID of destination object"
},
"destType": {
"type": "string",
"description": "The type of destination object"
},
"bytes": {
"type": "integer",
"minimum": 0,
"description": "The volume of data that flows from source to destination"
},
"packets": {
"type": "integer",
"minimum": 0,
"description": "The number of packets sent from source to destination"
}
}
}
}
},
"required": [
"data"
]
} | o13349 |
{
"$id": "https://json.schemastore.org/backportrc.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "A Backport config schema",
"properties": {
"repoName": {
"description": "A repo name for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#reponame-required",
"type": "string",
"minLength": 1,
"examples": ["kibana"]
},
"repoOwner": {
"description": "A repo owner for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#repoowner-required",
"type": "string",
"minLength": 1,
"examples": ["elastic"]
},
"targetBranchChoices": {
"description": "Target branches for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#targetbranchchoices-required",
"type": "array",
"uniqueItems": true,
"items": {
"description": "A target branch for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#targetbranchchoices-required",
"oneOf": [
{
"type": "string",
"minLength": 1,
"examples": ["6.2"]
},
{
"title": "target branch",
"type": "object",
"required": ["name", "checked"],
"properties": {
"name": {
"description": "A target branch for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#targetbranchchoices-required",
"type": "string",
"minLength": 1,
"examples": ["6.3"]
},
"checked": {
"description": "Whether to pre-select a target branch for the current project\nhttps://github.com/sqren/backport/blob/main/docs/config-file-options.md#targetbranchchoices-required",
"type": "boolean"
}
},
"additionalProperties": false
}
]
}
},
"upsteam": {
"description": "Identifier for the GitHub project as `{owner}/{repoName}`",
"type": "string"
},
"branches": {
"description": "Branches to backport to",
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"checked": {
"type": "boolean"
}
},
"required": ["name", "checked"]
}
]
}
},
"labels": {
"description": "Labels that will be added to the pull request",
"type": "array",
"items": {
"type": "string"
}
},
"all": {
"description": "Whether to only show the current user's commits or commits from anyone",
"type": "boolean"
}
},
"required": ["repoName", "repoOwner", "targetBranchChoices"],
"type": "object"
}
| backportrc |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"htmlStringLines": {
"description": "HTML string lines, will be joined by \\n.",
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"urlString": {
"type": "string",
"pattern": "^(ftp|http|https)://[^ \"]+$",
"_format": "uri"
},
"fileLocations": {
"type": "object",
"minProperties": 1,
"properties": {
"main": {
"type": "string"
},
"user": {
"type": "string"
}
},
"additionalProperties": false
}
},
"type": "object",
"properties": {
"name": {
"type": "string"
},
"previousVersions": {
"type": "object",
"minProperties": 1,
"additionalProperties": {
"type": "string"
}
},
"description": {
"$ref": "#/definitions/htmlStringLines"
},
"links": {
"type": "object",
"minProperties": 1,
"properties": {
"Website": {
"$ref": "#/definitions/urlString"
},
"Fixture library download": {
"$ref": "#/definitions/urlString"
},
"Fixture format documentation": {
"$ref": "#/definitions/urlString"
}
},
"additionalProperties": {
"$ref": "#/definitions/urlString"
}
},
"fixtureUsage": {
"$ref": "#/definitions/htmlStringLines"
},
"fileLocations": {
"type": "object",
"minProperties": 1,
"properties": {
"subDirectoriesAllowed": {
"type": "boolean"
},
"Windows": {
"$ref": "#/definitions/fileLocations"
},
"Mac OS": {
"$ref": "#/definitions/fileLocations"
},
"Linux": {
"$ref": "#/definitions/fileLocations"
}
},
"additionalProperties": {
"$ref": "#/definitions/fileLocations"
}
},
"additionalInfo": {
"$ref": "#/definitions/htmlStringLines"
},
"helpWanted": {
"type": "string"
}
},
"required": [
"name",
"description",
"links"
],
"patternProperties": {
"^\\$schema$": {
"const": "../../schemas/plugin.json"
}
},
"additionalProperties": false
}
| o5988 |
{
"id": "http://schlothauer.de/schemas/shared/tenant.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "type for entries that have references to look-up tables - as an more dynamic alternative to enums",
"type": "object",
"properties": {
"text": {
"description": "a default text to display",
"type": "string",
"__tags": [
"formatString"
]
},
"refId": {
"description": "guid in the lookup-table to enable later editing of texts",
"type": "string",
"format": "uuid",
"__tags": [
"notDisplayed"
]
}
},
"__tags": [
"noHandling"
],
"required": [
"text"
],
"__version": 1
} | o73993 |
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://github.com/v2fly/v2ray-core/v5/infra/conf/v4/github:v2fly_v2ray-core_v5_infra_conf_v4:-config",
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:Config",
"$defs": {
"github:EHfive_v2ray-jsonschema_common:CustomDNSDomainMatcher": {
"enum": [
"linear",
"mph"
]
},
"github:EHfive_v2ray-jsonschema_common:CustomNumber": {
"type": "integer"
},
"github:EHfive_v2ray-jsonschema_common:CustomPortRange": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"github:EHfive_v2ray-jsonschema_common:CustomString": {
"type": "string"
},
"github:EHfive_v2ray-jsonschema_common:CustomStringList": {
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomBlackholeConfigResponse": {
"properties": {
"type": {
"enum": [
"none",
"http"
]
}
},
"type": "object"
},
"github:EHfive_v2ray-jsonschema_v4config:CustomDNSCacheStrategy": {
"enum": [
"Enabled",
"Disabled"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomDNSFallbackStrategy": {
"enum": [
"Enabled",
"Disabled",
"DisabledIfAnyMatch"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomDNSQueryStrategy": {
"enum": [
"UseIP",
"UseIPv4",
"UseIPv6"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfig": {
"oneOf": [
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:FakeDNSPoolElementConfig"
},
{
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:FakeDNSPoolElementConfig"
},
"type": "array"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfigExtend": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfig"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomFreedomDomainStrategy": {
"enum": [
"AsIs",
"UseIP",
"UseIPv4",
"UseIPv6"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomHTTPRemoteConfigUser": {
"allOf": [
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomUser"
},
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPAccount"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomHostAddress": {
"oneOf": [
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
{
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"type": "array"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomInboundConfig": {
"allOf": [
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:InboundDetourConfig"
},
{
"if": {
"properties": {
"protocol": {
"const": "dokodemo-door"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:DokodemoConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "http"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPServerConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "shadowsocks"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksServerConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "socks"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SocksServerConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "vless"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VLessInboundConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "vmess"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessInboundConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "trojan"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanServerConfig"
}
},
"type": "object"
}
}
],
"required": [
"protocol"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomKCPHeaderConfig": {
"properties": {
"type": {
"enum": [
"none",
"srtp",
"utp",
"wechat-video",
"dtls",
"wireguard"
]
}
},
"type": "object"
},
"github:EHfive_v2ray-jsonschema_v4config:CustomMultiObservatoryItem": {
"allOf": [
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:MultiObservatoryItem"
},
{
"if": {
"properties": {
"type": {
"const": "burst"
}
},
"type": "object",
"required": [
"type"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:BurstObservatoryConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"type": {
"const": "default"
}
},
"type": "object",
"required": [
"type"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ObservatoryConfig"
}
},
"type": "object"
}
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomNameServerConfig": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:NameServerConfig"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomOutboundConfig": {
"allOf": [
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:OutboundDetourConfig"
},
{
"if": {
"properties": {
"protocol": {
"const": "blackhole"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:BlackholeConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "freedom"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:FreedomConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "http"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPClientConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "shadowsocks"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksClientConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "socks"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SocksClientConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "vless"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VLessOutboundConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "vmess"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessOutboundConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "trojan"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanClientConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "dns"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:DNSOutboundConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"protocol": {
"const": "loopback"
}
},
"type": "object",
"required": [
"protocol"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:LoopbackConfig"
}
},
"type": "object"
}
}
],
"required": [
"protocol"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomRouterDomainStrategy": {
"enum": [
"AsIs",
"AlwaysIP",
"IPIfNonMatch",
"IPOnDemand"
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomRouterRule": {
"properties": {
"type": {
"type": "string"
},
"outboundTag": {
"type": "string"
},
"balancerTag": {
"type": "string"
},
"domainMatcher": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomDNSDomainMatcher"
},
"domain": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"domains": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"ip": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"port": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomPortRange"
},
"network": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"source": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"sourcePort": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomPortRange"
},
"user": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"inboundTag": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"protocol": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"attrs": {
"type": "string"
}
},
"type": "object"
},
"github:EHfive_v2ray-jsonschema_v4config:CustomSocksRemoteConfigUser": {
"allOf": [
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomUser"
},
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SocksAccount"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomStrategyConfig": {
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "random"
}
},
"type": "object",
"required": [
"type"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_app_router:StrategyRandomConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"type": {
"const": "leastping"
}
},
"type": "object",
"required": [
"type"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_app_router:StrategyLeastPingConfig"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"type": {
"const": "leastload"
}
},
"type": "object",
"required": [
"type"
]
},
"then": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_app_router:StrategyLeastLoadConfig"
}
},
"type": "object"
}
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomTCPHeaderConfig": {
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "none"
}
},
"type": "object"
}
},
{
"if": {
"properties": {
"type": {
"const": "http"
}
},
"type": "object"
},
"then": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:Authenticator"
}
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomUser": {
"properties": {
"level": {
"type": "integer"
},
"email": {
"type": "string"
}
},
"type": "object"
},
"github:EHfive_v2ray-jsonschema_v4config:CustomVLessInOutboundConfigUser": {
"allOf": [
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomUser"
},
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_proxy_vless:Account"
}
]
},
"github:EHfive_v2ray-jsonschema_v4config:CustomVMessInOutboundConfigUser": {
"allOf": [
{
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomUser"
},
{
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessAccount"
}
]
},
"github:v2fly_v2ray-core_v5_app_router:StrategyLeastLoadConfig": {
"properties": {
"costs": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_app_router:StrategyWeight"
},
"type": "array",
"description": "weight settings"
},
"baselines": {
"items": {
"type": "integer"
},
"type": "array",
"description": "RTT baselines for selecting, int64 values of time.Duration"
},
"expected": {
"type": "integer",
"description": "expected nodes count to select"
},
"maxRtt": {
"type": "integer",
"description": "max acceptable rtt, filter away high delay nodes. defalut 0"
},
"tolerance": {
"type": "number",
"description": "acceptable failure rate"
},
"observerTag": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_app_router:StrategyLeastPingConfig": {
"properties": {
"observerTag": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_app_router:StrategyRandomConfig": {
"properties": {},
"type": "object"
},
"github:v2fly_v2ray-core_v5_app_router:StrategyWeight": {
"properties": {
"regexp": {
"type": "boolean"
},
"match": {
"type": "string"
},
"value": {
"type": "number"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_muxcfg:MuxConfig": {
"properties": {
"enabled": {
"type": "boolean"
},
"concurrency": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_proxycfg:ProxyConfig": {
"properties": {
"tag": {
"type": "string"
},
"transportLayer": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_sniffer:SniffingConfig": {
"properties": {
"enabled": {
"type": "boolean"
},
"destOverride": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"metadataOnly": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_socketcfg:SocketConfig": {
"properties": {
"mark": {
"type": "integer"
},
"tcpFastOpen": {
"type": "boolean"
},
"tproxy": {
"type": "string"
},
"acceptProxyProtocol": {
"type": "boolean"
},
"tcpKeepAliveInterval": {
"type": "integer"
},
"tcpKeepAliveIdle": {
"type": "integer"
},
"tcpFastOpenQueueLength": {
"type": "integer"
},
"bindToDevice": {
"type": "string"
},
"rxBufSize": {
"type": "integer"
},
"txBufSize": {
"type": "integer"
},
"forceBufSize": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_tlscfg:TLSCertConfig": {
"properties": {
"certificateFile": {
"type": "string"
},
"certificate": {
"items": {
"type": "string"
},
"type": "array"
},
"keyFile": {
"type": "string"
},
"key": {
"items": {
"type": "string"
},
"type": "array"
},
"usage": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_tlscfg:TLSConfig": {
"properties": {
"allowInsecure": {
"type": "boolean"
},
"certificates": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_tlscfg:TLSCertConfig"
},
"type": "array"
},
"serverName": {
"type": "string"
},
"alpn": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"enableSessionResumption": {
"type": "boolean"
},
"disableSystemRoot": {
"type": "boolean"
},
"pinnedPeerCertificateChainSha256": {
"items": {
"type": "string"
},
"type": "array"
},
"verifyClientCertificate": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:DNSConfig": {
"properties": {
"servers": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomNameServerConfig"
},
"type": "array"
},
"hosts": {
"patternProperties": {
".*": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomHostAddress"
}
},
"type": "object"
},
"fakedns": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfig"
},
"domainMatcher": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomDNSDomainMatcher"
},
"clientIp": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"tag": {
"type": "string"
},
"queryStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSQueryStrategy"
},
"cacheStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSCacheStrategy"
},
"fallbackStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSFallbackStrategy"
},
"disableCache": {
"type": "boolean"
},
"disableFallback": {
"type": "boolean"
},
"disableFallbackIfMatch": {
"type": "boolean"
}
},
"type": "object",
"description": "DNSConfig is a JSON serializable object for dns.Config."
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:FakeDNSPoolElementConfig": {
"properties": {
"ipPool": {
"type": "string"
},
"poolSize": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:NameServerConfig": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"clientIp": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"tag": {
"type": "string"
},
"queryStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSQueryStrategy"
},
"cacheStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSCacheStrategy"
},
"fallbackStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomDNSFallbackStrategy"
},
"skipFallback": {
"type": "boolean"
},
"domains": {
"items": {
"type": "string"
},
"type": "array"
},
"expectIPs": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"fakeDns": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfigExtend"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_log:LogConfig": {
"properties": {
"access": {
"type": "string"
},
"error": {
"type": "string"
},
"loglevel": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:BalancingRule": {
"properties": {
"tag": {
"type": "string"
},
"selector": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"strategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomStrategyConfig"
},
"fallbackTag": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:HealthCheckSettings": {
"properties": {
"destination": {
"type": "string"
},
"connectivity": {
"type": "string"
},
"interval": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"sampling": {
"type": "integer"
},
"timeout": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
}
},
"type": "object",
"description": "HealthCheckSettings holds settings for health Checker"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:RouterConfig": {
"properties": {
"settings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:RouterRulesConfig"
},
"rules": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomRouterRule"
},
"type": "array"
},
"domainStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomRouterDomainStrategy"
},
"balancers": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:BalancingRule"
},
"type": "array"
},
"domainMatcher": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomDNSDomainMatcher"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:RouterRulesConfig": {
"properties": {
"rules": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomRouterRule"
},
"type": "array"
},
"domainStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomRouterDomainStrategy"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:APIConfig": {
"properties": {
"tag": {
"type": "string"
},
"services": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:Authenticator": {
"properties": {
"request": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:AuthenticatorRequest"
},
"response": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:AuthenticatorResponse"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:AuthenticatorRequest": {
"properties": {
"version": {
"type": "string"
},
"method": {
"type": "string"
},
"path": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"headers": {
"patternProperties": {
".*": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
}
},
"type": "object"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:AuthenticatorResponse": {
"properties": {
"version": {
"type": "string"
},
"status": {
"type": "string"
},
"reason": {
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
}
},
"type": "object"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:BlackholeConfig": {
"properties": {
"response": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomBlackholeConfigResponse"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:BridgeConfig": {
"properties": {
"tag": {
"type": "string"
},
"domain": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:BrowserForwarderConfig": {
"properties": {
"listenAddr": {
"type": "string"
},
"listenPort": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:BurstObservatoryConfig": {
"properties": {
"subjectSelector": {
"items": {
"type": "string"
},
"type": "array"
},
"pingConfig": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:HealthCheckSettings",
"description": "health check settings"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:Config": {
"properties": {
"port": {
"type": "integer",
"description": "Port of this Point server.\nDeprecated: Port exists for historical compatibility\nand should not be used."
},
"inbound": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomInboundConfig",
"description": "Deprecated: InboundConfig exists for historical compatibility\nand should not be used."
},
"outbound": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomOutboundConfig",
"description": "Deprecated: OutboundConfig exists for historical compatibility\nand should not be used."
},
"inboundDetour": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomInboundConfig"
},
"type": "array",
"description": "Deprecated: InboundDetours exists for historical compatibility\nand should not be used."
},
"outboundDetour": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomOutboundConfig"
},
"type": "array",
"description": "Deprecated: OutboundDetours exists for historical compatibility\nand should not be used."
},
"log": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_log:LogConfig"
},
"routing": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_router:RouterConfig"
},
"dns": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_synthetic_dns:DNSConfig"
},
"inbounds": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomInboundConfig"
},
"type": "array"
},
"outbounds": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomOutboundConfig"
},
"type": "array"
},
"transport": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TransportConfig"
},
"policy": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:PolicyConfig"
},
"api": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:APIConfig"
},
"stats": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:StatsConfig"
},
"reverse": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ReverseConfig"
},
"fakeDns": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFakeDNSConfig"
},
"browserForwarder": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:BrowserForwarderConfig"
},
"observatory": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ObservatoryConfig"
},
"burstObservatory": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:BurstObservatoryConfig"
},
"multiObservatory": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:MultiObservatoryConfig"
},
"services": {
"patternProperties": {
".*": true
},
"type": "object"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:DNSOutboundConfig": {
"properties": {
"network": {
"type": "string"
},
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"userLevel": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:DokodemoConfig": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"network": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"timeout": {
"type": "integer"
},
"followRedirect": {
"type": "boolean"
},
"userLevel": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:DomainSocketConfig": {
"properties": {
"path": {
"type": "string"
},
"abstract": {
"type": "boolean"
},
"padding": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:FeaturesConfig": {
"properties": {
"detour": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessDetourConfig"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:FreedomConfig": {
"properties": {
"domainStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFreedomDomainStrategy"
},
"timeout": {
"type": "integer"
},
"redirect": {
"type": "string"
},
"userLevel": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:GunConfig": {
"properties": {
"serviceName": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPAccount": {
"properties": {
"user": {
"type": "string"
},
"pass": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPClientConfig": {
"properties": {
"servers": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPRemoteConfig"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPConfig": {
"properties": {
"host": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"path": {
"type": "string"
},
"method": {
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
}
},
"type": "object"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPRemoteConfig": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"users": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomHTTPRemoteConfigUser"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPServerConfig": {
"properties": {
"timeout": {
"type": "integer"
},
"accounts": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPAccount"
},
"type": "array"
},
"allowTransparent": {
"type": "boolean"
},
"userLevel": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:InboundDetourAllocationConfig": {
"properties": {
"strategy": {
"type": "string"
},
"concurrency": {
"type": "integer"
},
"refresh": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:InboundDetourConfig": {
"properties": {
"port": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomPortRange"
},
"listen": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"tag": {
"type": "string"
},
"allocate": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:InboundDetourAllocationConfig"
},
"streamSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:StreamConfig"
},
"domainOverride": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"sniffing": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_sniffer:SniffingConfig"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:KCPConfig": {
"properties": {
"mtu": {
"type": "integer"
},
"tti": {
"type": "integer"
},
"uplinkCapacity": {
"type": "integer"
},
"downlinkCapacity": {
"type": "integer"
},
"congestion": {
"type": "boolean"
},
"readBufferSize": {
"type": "integer"
},
"writeBufferSize": {
"type": "integer"
},
"header": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomKCPHeaderConfig"
},
"seed": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:LoopbackConfig": {
"properties": {
"inboundTag": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:MultiObservatoryConfig": {
"properties": {
"observers": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomMultiObservatoryItem"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:MultiObservatoryItem": {
"properties": {
"tag": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:ObservatoryConfig": {
"properties": {
"subjectSelector": {
"items": {
"type": "string"
},
"type": "array"
},
"probeUrl": {
"type": "string"
},
"probeInterval": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:OutboundDetourConfig": {
"properties": {
"sendThrough": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"tag": {
"type": "string"
},
"streamSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:StreamConfig"
},
"proxySettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_proxycfg:ProxyConfig"
},
"mux": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_muxcfg:MuxConfig"
},
"domainStrategy": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomFreedomDomainStrategy"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:Policy": {
"properties": {
"handshake": {
"type": "integer"
},
"connIdle": {
"type": "integer"
},
"uplinkOnly": {
"type": "integer"
},
"downlinkOnly": {
"type": "integer"
},
"statsUserUplink": {
"type": "boolean"
},
"statsUserDownlink": {
"type": "boolean"
},
"bufferSize": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:PolicyConfig": {
"properties": {
"levels": {
"patternProperties": {
".*": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:Policy"
}
},
"type": "object"
},
"system": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SystemPolicy"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:PortalConfig": {
"properties": {
"tag": {
"type": "string"
},
"domain": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:QUICConfig": {
"properties": {
"header": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomKCPHeaderConfig"
},
"security": {
"type": "string"
},
"key": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:ReverseConfig": {
"properties": {
"bridges": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:BridgeConfig"
},
"type": "array"
},
"portals": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:PortalConfig"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksClientConfig": {
"properties": {
"servers": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksServerTarget"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksServerConfig": {
"properties": {
"method": {
"type": "string"
},
"password": {
"type": "string"
},
"udp": {
"type": "boolean"
},
"level": {
"type": "integer"
},
"email": {
"type": "string"
},
"network": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomStringList"
},
"ivCheck": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:ShadowsocksServerTarget": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"method": {
"type": "string"
},
"password": {
"type": "string"
},
"email": {
"type": "string"
},
"ota": {
"type": "boolean"
},
"level": {
"type": "integer"
},
"ivCheck": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:SocksAccount": {
"properties": {
"user": {
"type": "string"
},
"pass": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:SocksClientConfig": {
"properties": {
"servers": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SocksRemoteConfig"
},
"type": "array"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:SocksRemoteConfig": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"users": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomSocksRemoteConfigUser"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:SocksServerConfig": {
"properties": {
"auth": {
"type": "string"
},
"accounts": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:SocksAccount"
},
"type": "array"
},
"udp": {
"type": "boolean"
},
"ip": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"timeout": {
"type": "integer"
},
"userLevel": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:StatsConfig": {
"properties": {},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:StreamConfig": {
"properties": {
"network": {
"type": "string"
},
"security": {
"type": "string"
},
"tlsSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_tlscfg:TLSConfig"
},
"tcpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TCPConfig"
},
"kcpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:KCPConfig"
},
"wsSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:WebSocketConfig"
},
"httpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPConfig"
},
"dsSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:DomainSocketConfig"
},
"quicSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:QUICConfig"
},
"gunSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:GunConfig"
},
"grpcSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:GunConfig"
},
"sockopt": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_cfgcommon_socketcfg:SocketConfig"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:SystemPolicy": {
"properties": {
"statsInboundUplink": {
"type": "boolean"
},
"statsInboundDownlink": {
"type": "boolean"
},
"statsOutboundUplink": {
"type": "boolean"
},
"statsOutboundDownlink": {
"type": "boolean"
},
"overrideAccessLogDest": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TCPConfig": {
"properties": {
"header": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomTCPHeaderConfig"
},
"acceptProxyProtocol": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TransportConfig": {
"properties": {
"tcpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TCPConfig"
},
"kcpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:KCPConfig"
},
"wsSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:WebSocketConfig"
},
"httpSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:HTTPConfig"
},
"dsSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:DomainSocketConfig"
},
"quicSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:QUICConfig"
},
"gunSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:GunConfig"
},
"grpcSettings": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:GunConfig"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanClientConfig": {
"properties": {
"servers": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanServerTarget"
},
"type": "array"
}
},
"type": "object",
"description": "TrojanClientConfig is configuration of trojan servers"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanInboundFallback": {
"properties": {
"alpn": {
"type": "string"
},
"path": {
"type": "string"
},
"type": {
"type": "string"
},
"dest": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomNumber"
},
"xver": {
"type": "integer"
}
},
"type": "object",
"description": "TrojanInboundFallback is fallback configuration"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanServerConfig": {
"properties": {
"clients": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanUserConfig"
},
"type": "array"
},
"fallback": true,
"fallbacks": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanInboundFallback"
},
"type": "array"
}
},
"type": "object",
"description": "TrojanServerConfig is Inbound configuration"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanServerTarget": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"password": {
"type": "string"
},
"email": {
"type": "string"
},
"level": {
"type": "integer"
}
},
"type": "object",
"description": "TrojanServerTarget is configuration of a single trojan server"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:TrojanUserConfig": {
"properties": {
"password": {
"type": "string"
},
"level": {
"type": "integer"
},
"email": {
"type": "string"
}
},
"type": "object",
"description": "TrojanUserConfig is user configuration"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VLessInboundConfig": {
"properties": {
"clients": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomVLessInOutboundConfigUser"
},
"type": "array"
},
"decryption": {
"type": "string"
},
"fallback": true,
"fallbacks": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VLessInboundFallback"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VLessInboundFallback": {
"properties": {
"alpn": {
"type": "string"
},
"path": {
"type": "string"
},
"type": {
"type": "string"
},
"dest": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomNumber"
},
"xver": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VLessOutboundConfig": {
"properties": {
"vnext": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VLessOutboundVnext"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VLessOutboundVnext": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"users": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomVLessInOutboundConfigUser"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessAccount": {
"properties": {
"id": {
"type": "string"
},
"alterId": {
"type": "integer"
},
"security": {
"type": "string"
},
"experiments": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessDefaultConfig": {
"properties": {
"alterId": {
"type": "integer"
},
"level": {
"type": "integer"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessDetourConfig": {
"properties": {
"to": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessInboundConfig": {
"properties": {
"clients": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomVMessInOutboundConfigUser"
},
"type": "array"
},
"features": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:FeaturesConfig"
},
"default": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessDefaultConfig"
},
"detour": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessDetourConfig"
},
"disableInsecureEncryption": {
"type": "boolean"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessOutboundConfig": {
"properties": {
"vnext": {
"items": {
"$ref": "#/$defs/github:v2fly_v2ray-core_v5_infra_conf_v4:VMessOutboundTarget"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:VMessOutboundTarget": {
"properties": {
"address": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_common:CustomString"
},
"port": {
"type": "integer"
},
"users": {
"items": {
"$ref": "#/$defs/github:EHfive_v2ray-jsonschema_v4config:CustomVMessInOutboundConfigUser"
},
"type": "array"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_infra_conf_v4:WebSocketConfig": {
"properties": {
"path": {
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"acceptProxyProtocol": {
"type": "boolean"
},
"maxEarlyData": {
"type": "integer"
},
"useBrowserForwarding": {
"type": "boolean"
},
"earlyDataHeaderName": {
"type": "string"
}
},
"type": "object"
},
"github:v2fly_v2ray-core_v5_proxy_vless:Account": {
"properties": {
"id": {
"type": "string",
"description": "ID of the account, in the form of a UUID, e.g., \"66ad4540-b58c-4ad2-9926-ea63445a9b57\"."
},
"flow": {
"type": "string",
"description": "Flow settings."
},
"encryption": {
"type": "string",
"description": "Encryption settings. Only applies to client side, and only accepts \"none\" for now."
}
},
"type": "object"
}
},
"$comment": "Generated from https://github.com/EHfive/v2ray-jsonschema",
"title": "JSON schema for V2Ray jsonv4 configuration",
"description": "JSON schema for V2Ray jsonv4 configuration format: https://github.com/v2fly/v2ray-core"
}
| v4-config |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"description": "Spec to control the desired behavior of rolling update.",
"properties": {
"maxSurge": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods."
},
"maxUnavailable": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString",
"description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods."
}
},
"type": "object"
} | kb_880_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Verify annotation has @context",
"type": "object",
"properties": {
"@context": {
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"anyOf": [
{
"type": "string"
}
]
}
],
"not": {
"type": "object"
}
}
},
"required": [
"@context"
]
} | o2140 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body_html_and_govspeak": {
"anyOf": [
{
"type": "string"
}
],
"description": "The main content provided as HTML with the govspeak markdown it's rendered from"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"choose_sign_in": {
"additionalProperties": false,
"properties": {
"description": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"options": {
"additionalProperties": false,
"items": {
"properties": {
"hint_text": {
"type": "string"
},
"text": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"type": "object"
},
"required": [
"text",
"url"
],
"type": "array"
},
"slug": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"tracking_code": {
"type": "string"
},
"tracking_domain": {
"type": "string"
},
"tracking_name": {
"type": "string"
}
},
"required": [
"title",
"slug",
"options"
],
"type": "object"
},
"create_new_account": {
"additionalProperties": false,
"properties": {
"body": {
"$ref": "#/definitions/body_html_and_govspeak"
},
"slug": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"slug",
"body"
],
"type": "object"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"change_history": {
"$ref": "#/definitions/change_history"
},
"choose_sign_in": {
"$ref": "#/definitions/choose_sign_in"
},
"create_new_account": {
"$ref": "#/definitions/create_new_account"
}
},
"required": [
"choose_sign_in"
],
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"service_sign_in"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"service_sign_in"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21363 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"featureTypes": {
"type": "object",
"patternProperties": {
"^[\\w\\.\\d\\_]+$": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "How the name the feature type, same as the property name."
},
"style": {
"type": "object",
"properties": {
"fillColor": {
"type": "string",
"pattern": "^#[a-fA-F0-9]{6}$",
"description": "Color to use to fill the icon."
},
"strokeColor": {
"type": "string",
"pattern": "^#\\d{6}",
"description": "Color to use for the stroke around the icon."
},
"drawingMode": {
"type": "string",
"enum": [
"Point",
"Polyline",
"Polygon",
"MultiPolygon"
],
"description": "How to render the icon, if any."
},
"strokeWidth": {
"type": "integer",
"minimum": 0,
"description": "Stroke width in pixels."
},
"iconWidth": {
"type": "integer",
"minimum": 0,
"description": "Icon width in pixels."
},
"iconHeight": {
"type": "integer",
"minimum": 0,
"description": "Icon height in pixels."
},
"iconUri": {
"type": "string",
"description": "URL of the image icon. Is not only used for point features, but also for polygons to recognize them in the legend and when showing the feature's properties. May optionally contain a matching pair of braces, which is replaced with the corresponding property value."
},
"nameLabel": {
"type": "string",
"description": "Property to use as the Name or title."
},
"maxTitleResolution": {
"type": "integer",
"minimum": -1,
"maximum": 23,
"description": "At what zoom level should we stop showing the title. When zooming further out beyond this level, the title is no longer shown."
}
},
"required": [
"fillColor",
"strokeColor",
"drawingMode",
"strokeWidth",
"iconWidth",
"iconHeight",
"iconUri",
"nameLabel",
"maxTitleResolution"
]
},
"propertyTypeKeys": {
"type": "string",
"description": "An ordered, semi-colon separated list of all property data keys to display when selecting the feature."
},
"legendExpr": {
"type": "array",
"description": "In the legend, show a summary of this feature.",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Display name in the legend."
},
"type": {
"enum": [
"text",
"textarea",
"textarea-right",
"boolean",
"number",
"bbcode",
"options",
"rank",
"hierarchy",
"date",
"duration"
],
"description": "Default display type is text."
},
"stringFormat": {
"type": "string",
"description": "A string that represents the .NET formatting to use for displaying the property value, e.g. {0:0,000.##} to show a thousand separator as well as up to two decimals."
},
"expression": {
"type": "string",
"description": "A formula that is computed upon loading the layer, and when the map's extent (bounding box) is changed. E.g. \"sum(features, 'NR_PEOPLE')\" sums the number of people within the extent of the map."
}
},
"required": [
"title",
"type",
"stringFormat",
"expression"
]
}
}
},
"required": [
"name",
"style",
"propertyTypeKeys",
"legendExpr"
]
}
},
"additionalProperties": false
},
"propertyTypeData": {
"type": "object",
"description": "A list of property types, which specify how each feature's property should be displayed.",
"patternProperties": {
"^[\\w\\.\\d\\_]+$": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Display name in the legend."
},
"type": {
"enum": [
"text",
"textarea",
"boolean",
"number",
"bbcode",
"options",
"rank",
"hierarchy",
"date",
"duration"
],
"description": "Default display type is text."
},
"stringFormat": {
"type": "string",
"description": "A string that represents the .NET formatting to use for displaying the property value, e.g. {0:0,000.##} to show a thousand separator as well as up to two decimals."
},
"expression": {
"type": "string",
"title": "Expression or formula",
"description": "A formula that is computed upon loading the layer. E.g. \"properties.p_00_14_jr * properties.nr_people / 100\" converts the percentage of children to an absolute number."
},
"section": {
"type": "string",
"description": "Separate the properties by placing each of them in their own section."
},
"visibleInCallOut": {
"type": "boolean",
"description": "If true (default), show the property when the feature is selected."
},
"label": {
"type": "string",
"description": "Property label, which is typically the same as this item's key. It is still useful, however, when you wish to display a property twice, each time using a different display format, e.g. text and link, or year and date separately."
}
}
}
}
}
}
} | o47670 |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base of the shape",
"type": "number"
},
"height": {
"description": "The height of the shape",
"type": "number"
},
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape",
"type": "number"
},
"width": {
"description": "The width of the shape",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape (e.g., rectangle, circle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_867a9626 |
{
"additionalProperties": false,
"description": "Schema for a media event",
"properties": {
"label": {
"description": "A custom identifier",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"type": {
"description": "The event fired by the media player",
"maxLength": 255,
"type": "string"
}
},
"required": [
"type"
],
"self": {
"format": "jsonschema",
"name": "media_player_event",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_297_Normalized |
{
"$id": "https://json.schemastore.org/mboats-config-0.2.json",
"$ref": "#/definitions/MBOATS",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"MBOATS": {
"type": "object",
"additionalProperties": false,
"properties": {
"appId": {
"type": "string",
"default": "MBOAPPL",
"description": "5-7 letter capitalized abbreviated word representing the application",
"pattern": "^[\\w]{5,7}$"
},
"appName": {
"type": "string",
"default": "MBO Application",
"description": "Application Name"
},
"pageLoadTimeout": {
"type": "integer",
"default": 60000,
"minimum": 30000,
"maximum": 120000
},
"elementFindTimeout": {
"type": "integer",
"default": 8,
"minimum": 3,
"maximum": 15
},
"soundfx": {
"type": "boolean",
"default": false
},
"headless": {
"type": "boolean",
"default": false
},
"invocationCount": {
"type": "integer",
"default": 1,
"minimum": 1,
"maximum": 5
},
"mode": {
"type": "string",
"default": "local",
"enum": ["local", "remote"],
"description": "The mode of test execution."
},
"runnerParallelism": {
"type": "string",
"default": "feature",
"enum": ["feature", "scenario"]
},
"threadCount": {
"type": "integer",
"default": 1,
"minimum": 1,
"maximum": 5
},
"clients": {
"type": "string",
"default": "chrome",
"enum": ["chrome", "firefox", "edge"]
},
"clientParallelism": {
"type": "string",
"default": "stacked",
"enum": ["stacked", "interleaved"]
},
"video": {
"$ref": "#/definitions/MBOATS/definitions/Video"
},
"networkLogs": {
"$ref": "#/definitions/MBOATS/definitions/NetworkLogs"
},
"email": {
"$ref": "#/definitions/MBOATS/definitions/Email"
},
"mongodb": {
"$ref": "#/definitions/MBOATS/definitions/MongoDB"
},
"awss3": {
"$ref": "#/definitions/MBOATS/definitions/AWSS3"
},
"awsec2": {
"$ref": "#/definitions/MBOATS/definitions/AWSEC2"
},
"threadbare": {
"$ref": "#/definitions/MBOATS/definitions/Threadbare"
}
},
"required": ["appId", "appName"],
"title": "MBOATS Framework Properties",
"definitions": {
"AWSEC2": {
"type": "object",
"additionalProperties": false,
"properties": {
"publicName": {
"type": "string"
},
"serverPort": {
"type": "integer"
}
},
"required": ["publicName", "serverPort"],
"title": "AWS EC2 Configuration"
},
"AWSS3": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"accessKeyId": {
"type": "string"
},
"secretAccessKey": {
"type": "string"
},
"region": {
"type": "string"
},
"bucket": {
"type": "string"
},
"identityPoolId": {
"type": "string"
}
},
"required": [
"accessKeyId",
"bucket",
"enabled",
"identityPoolId",
"region",
"secretAccessKey"
],
"title": "AWS S3 Configuration"
},
"CucumberOptions": {
"type": "object",
"additionalProperties": false,
"properties": {
"featuresPath": {
"type": "string"
},
"stepdefsPackage": {
"type": "string"
},
"tagExpression": {
"type": "string"
}
},
"required": ["featuresPath", "stepdefsPackage", "tagExpression"],
"title": "CucumberOptions"
},
"Email": {
"type": "object",
"additionalProperties": false,
"properties": {
"auth": {
"$ref": "#/definitions/MBOATS/definitions/Email/definitions/Auth"
},
"invitationLinkRegex": {
"type": "string"
},
"oktaTokenRegex": {
"type": "string"
}
},
"required": ["auth", "invitationLinkRegex", "oktaTokenRegex"],
"title": "Email Configuration",
"definitions": {
"Auth": {
"type": "object",
"additionalProperties": false,
"properties": {
"$clientId": {
"type": "string"
},
"$clientSecret": {
"type": "string"
},
"$refreshToken": {
"type": "string"
},
"$refreshUrl": {
"type": "string",
"format": "uri"
}
},
"required": [
"$clientId",
"$clientSecret",
"$refreshToken",
"$refreshUrl"
],
"title": "Auth"
}
}
},
"MongoDB": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"username": {
"type": "string"
},
"password": {
"type": "string"
},
"connectionString": {
"type": "string"
},
"database": {
"type": "string"
},
"collection": {
"$ref": "#/definitions/MBOATS/definitions/MongoDB/definitions/Collection"
}
},
"required": [
"collection",
"connectionString",
"database",
"enabled",
"password",
"username"
],
"title": "MongoDB Configuration",
"definitions": {
"Collection": {
"type": "object",
"additionalProperties": false,
"properties": {
"report": {
"type": "string"
}
},
"required": ["report"],
"title": "Collection"
}
}
},
"NetworkLogs": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"request": {
"$ref": "#/definitions/MBOATS/definitions/NetworkLogs/definitions/Request"
},
"response": {
"$ref": "#/definitions/MBOATS/definitions/NetworkLogs/definitions/Request"
}
},
"required": ["enabled", "request", "response"],
"title": "NetworkLogs",
"definitions": {
"Request": {
"type": "object",
"additionalProperties": false,
"properties": {
"headers": {
"type": "boolean"
},
"cookies": {
"type": "boolean"
},
"body": {
"type": "boolean"
}
},
"required": ["body", "cookies", "headers"],
"title": "Request"
}
}
},
"Threadbare": {
"type": "object",
"additionalProperties": false,
"properties": {
"server": {
"type": "null"
}
},
"required": ["server"],
"title": "Threadbare Configuration"
},
"Video": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"location": {
"type": "string"
},
"format": {
"type": "string"
},
"prefix": {
"type": "string"
}
},
"required": ["enabled", "format", "location", "prefix"],
"title": "Video"
}
}
}
}
}
| mboats-config-0 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number",
"enum": [
42
]
}
]
}
}
}
} | o69498 |
{
"properties": {
"dimensions": {
"properties": {
"height": {
"description": "The height of the object",
"type": "number"
},
"length": {
"description": "The length of the object",
"type": "number"
},
"width": {
"description": "The width of the object",
"type": "number"
}
},
"type": "object"
},
"object_type": {
"description": "The type of three-dimensional object",
"type": "string"
}
},
"required": [
"object_type",
"dimensions"
],
"type": "object"
} | calculate_area_volume_0d2bc377 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"targetType": "document_surface1d",
"schemaType": "Timex3",
"title": "Timex3",
"type": "object",
"required": [
"schemaType",
"_corpusID",
"_documentID",
"offsets"
],
"properties": {
"schemaType": {
"type": "string",
"description": "Schema type",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"_documentID": {
"type": "string",
"description": "Internal document GUID",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"_corpusID": {
"type": "string",
"description": "Internal Corpus GUID",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"offsets": {
"searchable": true,
"locked": true,
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"begin": {
"type": "integer",
"minimum": 0
},
"end": {
"type": "integer",
"minimum": 0
}
}
}
},
"tid": {
"type": "string",
"description": "Non-optional attribute. Each TIMEX3 expression has to be identified by a unique ID number.",
"searchable": true,
"searchModes": [
"noop"
],
"locked": true
},
"type": {
"description": "Type of expression",
"type": "string",
"enum": [
"TIME",
"DATE",
"DURATION",
"SET"
],
"searchable": true,
"searchModes": [
"basic"
],
"locked": true
},
"value": {
"type": "string",
"description": "This value is given in an extended ISO 8601 format.",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"text": {
"type": "string",
"description": "Targeted text",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"temporalFunction": {
"type": "boolean",
"description": "Indicates if the temporal expression needs to be determined via evaluation of a temporal function.",
"searchable": true,
"searchModes": [
"noop"
],
"locked": false
},
"mod": {
"type": "string",
"description": "",
"enum": [
"Points.BEFORE",
"Points.AFTER",
"Points.ON_OR_BEFORE",
"Points.ON_OR_AFTER",
"Durations.LESS_THAN",
"Durations.MORE_THAN",
"Durations.EQUAL_OR_LESS",
"Durations.EQUAL_OR_MORE",
"PointsDurations.START",
"PointsDurations.MID",
"PointsDurations.END",
"PointsDurations.APPROX"
]
},
"anchorTimeID": {
"type": "string",
"description": "ID of the temporal expression to which the TIMEX3 in question is temporally anchored",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"beginPoint": {
"type": "string",
"description": "Used when a duration is anchored by another time expression, as well a for range expressions.",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"endPoint": {
"type": "string",
"description": "Used when a duration is anchored by another time expression, as well a for range expressions.",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"quant": {
"type": "string",
"description": "Used when a temporal expression is of the type SET. A literal from the text that quantifies",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
},
"freq": {
"type": "string",
"description": "Used when a temporal expression is of the type SET. Contains an integer value and a time granularity that represent the frequency at which the temporal expression regularly reoccurs",
"searchable": true,
"searchModes": [
"basic"
],
"locked": false
}
}
} | o33704 |
{
"definitions": {
"StatCount": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"Id": {
"type": "string"
},
"Count": {
"type": "integer"
}
},
"required": [
"Id",
"Count"
]
},
"Timelapse": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"Id": {
"type": "string"
},
"Timelapse": {
"type": "string"
}
},
"required": [
"Id",
"Timelapse"
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"MedalStatCounts": {
"type": "array",
"items": {
"$ref": "#/definitions/StatCount"
}
},
"ImpulseStatCounts": {
"type": "array",
"items": {
"$ref": "#/definitions/StatCount"
}
},
"MedalTimelapses": {
"type": "array",
"items": {
"$ref": "#/definitions/Timelapse"
}
},
"ImpulseTimelapses": {
"type": "array",
"items": {
"$ref": "#/definitions/Timelapse"
}
}
},
"required": [
"MedalStatCounts",
"ImpulseStatCounts",
"MedalTimelapses",
"ImpulseTimelapses"
]
} | o43232 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.