json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "description": "Configuration of curies and default values for the fict command", "name": "/", "properties": { "curies": { "description": "The curies help to create a mapping between a real world url and a logic name", "id": "curies", "items": { "description": "Description of rules for a specific curie", "id": "0", "name": "0", "properties": { "contentType": { "description": "Content type returned by the web service", "enum": [ "application/json", "text/plain" ], "id": "contentType", "minLength": 1, "name": "contentType", "title": "Content type", "type": "string" }, "prefix": { "description": "Prefix that will be concatenated if the rule is triggered", "id": "prefix", "minLength": 1, "name": "prefix", "title": "Prefix to apply to uri", "type": "string" }, "startsWith": { "description": "When the start string is found the rules will apply", "id": "startsWith", "minLength": 1, "name": "startsWith", "title": "Expected start string", "type": "string" }, "suffix": { "description": "Suffix that will be concatenated if the rule is triggered", "id": "suffix", "minLength": 1, "name": "suffix", "title": "Suffix to apply to uri", "type": "string" } }, "title": "Curie definition", "type": "object" }, "name": "curies", "title": "List of curies", "type": "array" }, "outputFormat": { "description": "The output format should be either csv or json", "enum": [ "json", "csv" ], "id": "outputFormat", "minLength": 1, "name": "outputFormat", "title": "Output format", "type": "string" } }, "title": "Global configuration for the dazzling fiction dialect", "type": "object" }
o41044
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeDriver": { "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", "properties": { "allocatable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeNodeResources", "description": "allocatable represents the volume resources of a node that are available for scheduling." }, "name": { "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", "type": "string" }, "nodeID": { "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", "type": "string" }, "topologyKeys": { "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "nodeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeSpec": { "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", "properties": { "drivers": { "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeDriver" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "required": [ "drivers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_VolumeNodeResources": { "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", "properties": { "count": { "_format": "int32", "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "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": [ "storage.k8s.io/v1beta1" ], "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": [ "CSINode" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata.name must be the Kubernetes node name." }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_storage_v1beta1_CSINodeSpec", "description": "spec is the specification of CSINode" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINode", "version": "v1beta1" } ] }
kb_169_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "flags": { "type": "array", "items": { "type": "string" } }, "restrictions": { "type": "array", "items": {} }, "rarity": { "type": "string" }, "id": { "type": "number" }, "icon": { "type": "string" }, "details": { "type": "object", "properties": { "type": { "type": "string" }, "weight_class": { "type": "string" }, "dye_slots": { "type": "object", "properties": { "default": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "color_id": { "type": "number" }, "material": { "type": "string" } } }, { "type": "null" } ] } }, "overrides": { "type": "object", "properties": {} } } } } } }, "required": [ "name", "type", "flags", "restrictions", "rarity", "id", "icon" ] }, "properties": {}, "additionalProperties": false }
o45215
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "height": { "description": "The height (only for rectangle and triangle)", "type": "number" }, "length": { "description": "The length or radius", "type": "number" }, "width": { "description": "The width (only for rectangle)", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape (e.g. square, rectangle, triangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_23d27e77
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://api.npolar.no/schema/publication-1", "title": "Publication data model", "description": "A publication reference", "type": "object", "additionalProperties": false, "required": [ "title", "schema", "collection", "publication_type" ], "properties": { "id": { "description": "Identifier (UUID | URI)", "type": "string" }, "schema": { "type": "string", "pattern": "^http(s)?://" }, "collection": { "enum": [ "publication" ] }, "doi": { "type": [ "string", "null" ], "pattern": "^10\\.[0-9]{2,}/.+$" }, "draft": { "enum": [ "yes", "no" ], "default": "no" }, "title": { "description": "Title - exactly as published in the original language. Markdown accepted.", "type": "string" }, "subtitle": { "type": [ "string", "null" ] }, "publication_lang": { "type": [ "string", "null" ], "default": "en" }, "abstract": { "_uniqueItems": true, "type": "array", "description": "Scientific abstract. Markdown accepted.", "items": { "type": "object", "additionalProperties": false, "properties": { "@language": { "type": "string", "default": "en" }, "@value": { "type": [ "string", "null" ] } } } }, "overview": { "_uniqueItems": true, "type": "array", "description": "Summary for non-scientists. Markdown accepted", "items": { "type": "object", "additionalProperties": false, "properties": { "@language": { "type": "string", "default": "en" }, "@value": { "type": [ "string", "null" ] } } } }, "programme": { "title": "Programmes", "description": "Select programmes affiliated with the publication", "type": "array", "additionalItems": false, "_uniqueItems": true, "items": { "type": "string", "enum": [ "Fram Strait", "Biodiversity", "Environmental management", "Environmental pollutants", "Geology and geophysics", "Oceans and sea ice", "Arctic ocean", "Svalbard", "Antarctic", "Ny-\u00c5lesund" ] } }, "publication_type": { "enum": [ "peer-reviewed", "editorial", "review", "correction", "book", "in-book", "poster", "report", "in-report", "abstract", "phd", "master", "map", "proceedings", "popular", "other" ] }, "type": { "enum": [ "peer-reviewed", "editorial", "review", "correction", "book", "in-book", "poster", "report", "in-report", "abstract", "phd", "master", "map", "proceedings", "popular", "other" ] }, "state": { "enum": [ "submitted", "accepted", "published" ], "default": "published" }, "locations": { "type": "array", "_uniqueItems": true, "additionalItems": true, "items": { "type": "object", "additionalProperties": true, "properties": { "placename": { "type": "string" }, "area": { "type": "string" }, "country": { "description": "[Country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), use 'NO' for Norway, including Svalbard and Jan Mayen, Bouvet\u00f8ya, and Peter I \u00d8y. 'AQ' = Antarctica and 'XZ' = International waters", "type": [ "string", "null" ], "pattern": "^(([A-Z]|[a-z]){2})$" }, "hemisphere": { "description": "Hemisphere: N or S", "type": [ "string", "null" ], "pattern": "^[NSns]{1}$" } } } }, "published": { "type": [ "string", "null" ], "format": "/^[0-9]{4}/" }, "printed": { "type": [ "string", "null" ], "format": "/^[0-9]{4}/" }, "volume": { "type": [ "string", "null" ] }, "issue": { "type": [ "string", "null" ] }, "suppl": { "type": [ "string", "null" ] }, "art_no": { "type": [ "string", "null" ] }, "page_count": { "type": [ "string", "null" ] }, "journal": { "title": "Journal", "description": "Peer-reviewed journal", "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "np_series": { "type": "string" }, "series": { "type": "string" }, "series_no": { "type": "string" } } }, "conference": { "title": "Conference", "description": "For abstracts and proceedings", "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "place": { "type": "string" }, "country": { "type": "string" }, "dates": { "type": "array", "items": { "type": [ "string", "null" ], "format": "date-time" } } } }, "pages": { "title": "Publication pages", "description": "Either to and from page or the total no of pages", "type": "array", "additionalItems": false, "items": { "type": [ "string", "null" ] } }, "people": { "description": "People involved in creating the publication", "type": "array", "_uniqueItems": true, "additionalItems": false, "required": [ "first_name", "last_name", "roles" ], "items": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": [ "string", "null" ] }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "email": { "type": [ "string", "null" ] }, "homepage": { "type": [ "string", "null" ] }, "roles": { "type": "array", "items": { "enum": [ "author", "editor", "co-author", "translator", "advisor", "correspondent" ] }, "default": [ "author" ], "minItems": 1, "maxItems": 6, "_uniqueItems": true }, "organisation": { "type": [ "string", "null" ] }, "affiliation": { "description": "Affilated organisations ", "type": "array", "_uniqueItems": true, "additionalItems": false, "items": { "type": "object", "additionalProperties": false, "properties": { "@id": { "type": [ "string", "null" ] }, "name": { "type": [ "string", "null" ] } } } } } } }, "topics": { "title": "NPI topics", "description": "See https://github.com/npolar/api.npolar.no/blob/master/schema/dataset.json", "type": "array", "_uniqueItems": true, "additionalItems": false, "items": { "type": "string", "enum": [ "acidification", "atmosphere", "biology", "biogeochemistry", "chemistry", "climate", "conservation", "ecology", "ecotoxicology", "environment", "geophysics", "geology", "glaciology", "history", "human-dimension", "management", "marine", "modelling", "maps", "oceanography", "other", "paleoclimate", "remote-sensing", "seaice", "snow", "terrestrial", "topography", "vegetation" ] } }, "organisations": { "description": "Organisations involved", "type": "array", "_uniqueItems": true, "additionalItems": false, "items": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "location": { "type": "string" }, "roles": { "type": "array", "_uniqueItems": true, "items": { "enum": [ "publisher", "originator", "owner", "resourceProvider", "funder" ] } } } } }, "tags": { "additionalItems": false, "type": "array", "_uniqueItems": true, "items": { "type": "string" } }, "isbn": { "additionalItems": false, "_uniqueItems": true, "type": "array", "items": { "type": "string" } }, "issn": { "additionalItems": false, "type": "array", "_uniqueItems": true, "items": { "type": "string" } }, "links": { "type": "array", "_uniqueItems": true, "additionalItems": false, "items": { "type": "object", "additionalProperties": false, "properties": { "rel": { "type": "string", "default": "related" }, "href": { "type": "string", "format": "uri" }, "hreflang": { "type": [ "string", "null" ] }, "title": { "type": [ "string", "null" ] }, "type": { "type": "string", "default": "text/html" } } } }, "research_stations": { "title": "NP research stations", "description": "NPs research stations", "type": "array", "_uniqueItems": true, "additionalItems": false, "items": { "type": "string", "enum": [ "Troll", "Ny-\u00c5lesund", "Sverdrupstasjonen", "Zeppelin", "Bouvet\u00f8ya", "Svarthamaren" ] } }, "license": { "description": "License of the publication", "type": [ "string", "null" ], "enum": [ null, "https://creativecommons.org/licenses/by/4.0/", "https://creativecommons.org/licenses/by-nc-sa/4.0/", "https://creativecommons.org/licenses/by-nc-nd/4.0/", "https://creativecommons.org/publicdomain/zero/1.0/" ] }, "comment": { "description": "Markdown accepted", "type": "string" }, "files": { "type": "array", "_uniqueItems": true, "description": "", "items": { "type": "object", "properties": { "uri": { "type": "string", "description": "URI of the attached file", "format": "uri" }, "filename": { "type": "string", "description": "File name" }, "title": { "type": "string", "description": "Title" }, "length": { "type": "integer", "description": "File size in bytes" }, "type": { "type": "string", "description": "Media type (e.g. image/png)" }, "hash": { "type": "string", "description": "" } } } }, "created": { "description": "Document was published", "type": "string", "format": "date-time" }, "updated": { "description": "Document was updated", "type": "string", "format": "date-time" }, "created_by": { "type": "string" }, "updated_by": { "type": "string" }, "_id": { "type": "string" }, "_rev": { "type": "string" }, "_attachments": { "type": "object" } } }
o64539
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dcc.icgc.org/observation-centric", "type": "object", "properties": { "donor": { "id": "https://dcc.icgc.org/observation-centric/donor", "type": "object", "properties": { "_donor_id": { "id": "https://dcc.icgc.org/observation-centric/donor/_donor_id", "type": "string" }, "_summary": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary", "type": "object", "properties": { "_age_at_diagnosis_group": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_age_at_diagnosis_group", "type": "string" }, "_available_data_type": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_available_data_type", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_available_data_type/10", "type": "string" }, "additionalItems": false }, "_state": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_state", "type": "string" }, "_studies": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_studies", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/_studies/1", "type": "string" }, "additionalItems": false }, "experimental_analysis_performed": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/experimental_analysis_performed", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/donor/_summary/experimental_analysis_performed/4", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }, "disease_status_last_followup": { "id": "https://dcc.icgc.org/observation-centric/donor/disease_status_last_followup", "type": "string" }, "donor_relapse_type": { "id": "https://dcc.icgc.org/observation-centric/donor/donor_relapse_type", "type": "string" }, "donor_sex": { "id": "https://dcc.icgc.org/observation-centric/donor/donor_sex", "type": "string" }, "donor_tumour_stage_at_diagnosis": { "id": "https://dcc.icgc.org/observation-centric/donor/donor_tumour_stage_at_diagnosis", "type": "string" }, "donor_vital_status": { "id": "https://dcc.icgc.org/observation-centric/donor/donor_vital_status", "type": "string" } }, "additionalProperties": false }, "project": { "id": "https://dcc.icgc.org/observation-centric/project", "type": "object", "properties": { "_project_id": { "id": "https://dcc.icgc.org/observation-centric/project/_project_id", "type": "string" }, "primary_site": { "id": "https://dcc.icgc.org/observation-centric/project/primary_site", "type": "string" } }, "additionalProperties": false }, "ssm": { "id": "https://dcc.icgc.org/observation-centric/ssm", "type": "object", "properties": { "_mutation_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/_mutation_id", "type": "string" }, "_type": { "id": "https://dcc.icgc.org/observation-centric/ssm/_type", "type": "string" }, "chromosome": { "id": "https://dcc.icgc.org/observation-centric/ssm/chromosome", "type": "string" }, "chromosome_end": { "id": "https://dcc.icgc.org/observation-centric/ssm/chromosome_end", "type": "integer" }, "chromosome_start": { "id": "https://dcc.icgc.org/observation-centric/ssm/chromosome_start", "type": "integer" }, "gene": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0", "type": "object", "properties": { "fake": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/fake", "description": "Present only when the value is 'true'", "type": "boolean" }, "_gene_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/_gene_id", "type": "string" }, "biotype": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/biotype", "type": "string" }, "chromosome": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/chromosome", "type": "string" }, "end": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/end", "type": "integer" }, "drug": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/drug", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/drug/0", "type": "string" }, "additionalItems": false }, "start": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/start", "type": "integer" }, "pathway": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/pathway", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/pathway/4", "type": "string" }, "additionalItems": false }, "go_term": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term", "type": "object", "properties": { "biological_process": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/biological_process", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/biological_process/0", "type": "string" }, "additionalItems": false }, "cellular_component": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/cellular_component", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/cellular_component/39", "type": "string" }, "additionalItems": false }, "molecular_function": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/molecular_function", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/go_term/molecular_function/10", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }, "consequence": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/consequence", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/consequence/0", "type": "object", "properties": { "consequence_type": { "id": "https://dcc.icgc.org/observation-centric/ssm/gene/0/consequence/0/consequence_type", "type": "string" } }, "additionalProperties": false }, "additionalItems": false } }, "additionalProperties": false }, "additionalItems": false }, "mutation": { "id": "https://dcc.icgc.org/observation-centric/ssm/mutation", "type": "string" }, "mutation_type": { "id": "https://dcc.icgc.org/observation-centric/ssm/mutation_type", "type": "string" }, "observation": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation", "type": "array", "items": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0", "type": "object", "properties": { "_matched_sample_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/_matched_sample_id", "type": "string" }, "_sample_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/_sample_id", "type": "string" }, "_specimen_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/_specimen_id", "type": "string" }, "alignment_algorithm": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/alignment_algorithm", "type": "string" }, "analyzed_sample_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/analyzed_sample_id", "type": "string" }, "base_calling_algorithm": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/base_calling_algorithm", "type": "string" }, "biological_validation_platform": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/biological_validation_platform", "type": "string" }, "biological_validation_status": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/biological_validation_status", "type": "string" }, "experimental_protocol": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/experimental_protocol", "type": "string" }, "matched_sample_id": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/matched_sample_id", "type": "string" }, "mutant_allele_read_count": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/mutant_allele_read_count", "type": "integer" }, "other_analysis_algorithm": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/other_analysis_algorithm", "type": "string" }, "platform": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/platform", "type": "string" }, "probability": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/probability", "type": "number" }, "raw_data_accession": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/raw_data_accession", "type": "string" }, "raw_data_repository": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/raw_data_repository", "type": "string" }, "sequencing_strategy": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/sequencing_strategy", "type": "string" }, "total_read_count": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/total_read_count", "type": "integer" }, "variation_calling_algorithm": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/variation_calling_algorithm", "type": "string" }, "verification_status": { "id": "https://dcc.icgc.org/observation-centric/ssm/observation/0/verification_status", "type": "string" } }, "additionalProperties": false }, "additionalItems": false } }, "additionalProperties": false } }, "additionalProperties": false }
o47102
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "gamelocker-vainglory::matches ", "description": "This is a schema for responses in the JSON API format. For more, see http://jsonapi.org", "oneOf": [ { "$ref": "#/definitions/success" }, { "$ref": "#/definitions/failure" }, { "$ref": "#/definitions/info" } ], "definitions": { "success": { "type": "object", "required": [ "data" ], "properties": { "data": { "$ref": "#/definitions/data" }, "included": { "description": "To reduce the number of HTTP requests, servers **MAY** allow responses that include related resources along with the requested primary resources. Such responses are called \"compound documents\".", "type": "array", "items": { "$ref": "#/definitions/resource" }, "_uniqueItems": true }, "meta": { "$ref": "#/definitions/meta" }, "links": { "description": "Link members related to the primary data.", "allOf": [ { "$ref": "#/definitions/links" }, { "$ref": "#/definitions/pagination" } ] }, "jsonapi": { "$ref": "#/definitions/jsonapi" } }, "additionalProperties": false }, "failure": { "type": "object", "required": [ "errors" ], "properties": { "errors": { "type": "array", "items": { "$ref": "#/definitions/error" }, "_uniqueItems": true }, "meta": { "$ref": "#/definitions/meta" }, "jsonapi": { "$ref": "#/definitions/jsonapi" } }, "additionalProperties": false }, "info": { "type": "object", "required": [ "meta" ], "properties": { "meta": { "$ref": "#/definitions/meta" }, "links": { "$ref": "#/definitions/links" }, "jsonapi": { "$ref": "#/definitions/jsonapi" } }, "additionalProperties": false }, "meta": { "description": "Non-standard meta-information that can not be represented as an attribute or relationship.", "type": "object", "additionalProperties": true }, "data": { "description": "The document's \"primary data\" is a representation of the resource or collection of resources targeted by a request.", "oneOf": [ { "$ref": "#/definitions/resource" }, { "description": "An array of resource objects, an array of resource identifier objects, or an empty array ([]), for requests that target resource collections.", "type": "array", "items": { "$ref": "#/definitions/resource" }, "_uniqueItems": true }, { "description": "null if the request is one that might correspond to a single resource, but doesn't currently.", "type": "null" } ] }, "resource": { "description": "\"Resource objects\" appear in a JSON API document to represent resources.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "attributes": { "anyOf": [ { "$ref": "#/definitions/matchAttributes" }, { "$ref": "#/definitions/rosterAttributes" }, { "$ref": "#/definitions/participantAttributes" }, { "$ref": "#/definitions/playerAttributes" }, { "$ref": "#/definitions/assetAttributes" } ] }, "relationships": { "$ref": "#/definitions/relationships" }, "links": { "$ref": "#/definitions/links" }, "meta": { "$ref": "#/definitions/meta" } }, "additionalProperties": false }, "links": { "description": "A resource object **MAY** contain references to other resource objects (\"relationships\"). Relationships may be to-one or to-many. Relationships can be specified by including a member in a resource's links object.", "type": "object", "properties": { "self": { "description": "A 'self' member, whose value is a URL for the relationship itself (a \"relationship URL\"). This URL allows the client to directly manipulate the relationship. For example, it would allow a client to remove an 'author' from an 'article' without deleting the people resource itself.", "type": "string", "format": "uri" }, "related": { "$ref": "#/definitions/link" } }, "additionalProperties": true }, "link": { "description": "A link **MUST** be represented as either: a string containing the link's URL or a link object.", "oneOf": [ { "description": "A string containing the link's URL.", "type": "string", "format": "uri" }, { "type": "object", "required": [ "href" ], "properties": { "href": { "description": "A string containing the link's URL.", "type": "string", "format": "uri" }, "meta": { "$ref": "#/definitions/meta" } } } ] }, "matchAttributes": { "properties": { "createdAt": { "type": "string" }, "duration": { "type": "number" }, "gameMode": { "type": "string" }, "patchVersion": { "type": "string" }, "shardId": { "type": "string" }, "stats": { "properties": { "endGameReason": { "type": "string" }, "queue": { "type": "string" } }, "required": [ "endGameReason", "queue" ] }, "titleId": { "type": "string" } }, "additionalProperties": false, "required": [ "createdAt", "duration", "gameMode", "patchVersion", "shardId", "stats", "titleId" ] }, "participantAttributes": { "properties": { "actor": { "type": "string" }, "shardId": { "type": "string" }, "stats": { "properties": { "assists": { "type": "number" }, "crystalMineCaptures": { "type": "number" }, "deaths": { "type": "number" }, "farm": { "type": "number" }, "firstAfkTime": { "type": "number" }, "goldMineCaptures": { "type": "number" }, "itemGrants": { "type": "object" }, "itemSells": { "type": "object" }, "itemUses": { "type": "object" }, "items": { "type": "array" }, "jungleKills": { "type": "number" }, "karmaLevel": { "type": "number" }, "kills": { "type": "number" }, "krakenCaptures": { "type": "number" }, "level": { "type": "number" }, "minionKills": { "type": "number" }, "nonJungleMinionKills": { "type": "number" }, "skillTier": { "type": "number" }, "skinKey": { "type": "string" }, "turretCaptures": { "type": "number" }, "wentAfk": { "type": "boolean" }, "winner": { "type": "boolean" } }, "required": [ "assists", "crystalMineCaptures", "deaths", "farm", "firstAfkTime", "goldMineCaptures", "itemGrants", "itemSells", "itemUses", "items", "jungleKills", "karmaLevel", "kills", "krakenCaptures", "level", "minionKills", "nonJungleMinionKills", "turretCaptures", "wentAfk", "winner" ] } }, "additionalProperties": false, "required": [ "actor", "stats" ] }, "playerAttributes": { "properties": { "name": { "type": "string" }, "shardId": { "type": "string" }, "createdAt": { "type": "string" }, "patchVersion": { "type": "string" }, "stats": { "properties": { "elo_earned_season_4": { "type": "number" }, "elo_earned_season_5": { "type": "number" }, "elo_earned_season_6": { "type": "number" }, "elo_earned_season_7": { "type": "number" }, "karmaLevel": { "type": "number" }, "level": { "type": "number" }, "lifetimeGold": { "type": "number" }, "lossStreak": { "type": "number" }, "played": { "type": "number" }, "played_ranked": { "type": "number" }, "winStreak": { "type": "number" }, "skillTier": { "type": "number" }, "wins": { "type": "number" }, "xp": { "type": "number" } }, "required": [ "elo_earned_season_4", "elo_earned_season_5", "elo_earned_season_6", "elo_earned_season_7", "karmaLevel", "level", "lifetimeGold", "lossStreak", "played", "played_ranked", "winStreak", "skillTier", "wins", "xp" ] }, "titleId": { "type": "string" } }, "additionalProperties": false, "required": [ "name", "shardId", "stats", "titleId" ] }, "rosterAttributes": { "properties": { "shardId": { "type": "string" }, "won": { "type": "string" }, "stats": { "properties": { "acesEarned": { "type": "number" }, "gold": { "type": "number" }, "heroKills": { "type": "number" }, "krakenCaptures": { "type": "number" }, "side": { "type": "string" }, "turretKills": { "type": "number" }, "turretsRemaining": { "type": "number" } }, "required": [ "acesEarned", "gold", "heroKills", "krakenCaptures", "side", "turretKills", "turretsRemaining" ] } }, "additionalProperties": false, "required": [ "stats", "won", "shardId" ] }, "assetAttributes": { "properties": { "URL": { "type": "string" }, "contentType": { "type": "string" }, "createdAt": { "type": "string" }, "description": { "type": "string" }, "filename": { "type": "string" }, "name": { "type": "string" } }, "additionalProperties": false, "required": [ "URL", "contentType", "createdAt", "description", "filename", "name" ] }, "relationships": { "description": "Members of the relationships object (\"relationships\") represent references from the resource object in which it's defined to other resource objects.", "type": "object", "patternProperties": { "^\\w[-\\w_]*$": { "properties": { "links": { "$ref": "#/definitions/links" }, "data": { "description": "Member, whose value represents \"resource linkage\".", "oneOf": [ { "$ref": "#/definitions/relationshipToOne" }, { "$ref": "#/definitions/relationshipToMany" } ] }, "meta": { "$ref": "#/definitions/meta" } }, "anyOf": [ { "required": [ "data" ] }, { "required": [ "meta" ] }, { "required": [ "links" ] } ], "additionalProperties": false } }, "additionalProperties": false }, "relationshipToOne": { "description": "References to other resource objects in a to-one (\"relationship\"). Relationships can be specified by including a member in a resource's links object.", "anyOf": [ { "$ref": "#/definitions/empty" }, { "$ref": "#/definitions/linkage" } ] }, "relationshipToMany": { "description": "An array of objects each containing \"type\" and \"id\" members for to-many relationships.", "type": "array", "items": { "$ref": "#/definitions/linkage" }, "_uniqueItems": true }, "empty": { "description": "Describes an empty to-one relationship.", "type": "null" }, "linkage": { "description": "The \"type\" and \"id\" to non-empty members.", "type": "object", "required": [ "type", "id" ], "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "meta": { "$ref": "#/definitions/meta" } }, "additionalProperties": false }, "pagination": { "type": "object", "properties": { "first": { "description": "The first page of data", "oneOf": [ { "type": "string", "format": "uri" }, { "type": "null" } ] }, "last": { "description": "The last page of data", "oneOf": [ { "type": "string", "format": "uri" }, { "type": "null" } ] }, "prev": { "description": "The previous page of data", "oneOf": [ { "type": "string", "format": "uri" }, { "type": "null" } ] }, "next": { "description": "The next page of data", "oneOf": [ { "type": "string", "format": "uri" }, { "type": "null" } ] } } }, "jsonapi": { "description": "An object describing the server's implementation", "type": "object", "properties": { "version": { "type": "string" }, "meta": { "$ref": "#/definitions/meta" } }, "additionalProperties": false }, "error": { "type": "object", "properties": { "id": { "description": "A unique identifier for this particular occurrence of the problem.", "type": "string" }, "links": { "$ref": "#/definitions/links" }, "status": { "description": "The HTTP status code applicable to this problem, expressed as a string value.", "type": "string" }, "code": { "description": "An application-specific error code, expressed as a string value.", "type": "string" }, "title": { "description": "A short, human-readable summary of the problem. It **SHOULD NOT** change from occurrence to occurrence of the problem, except for purposes of localization.", "type": "string" }, "detail": { "description": "A human-readable explanation specific to this occurrence of the problem.", "type": "string" }, "source": { "type": "object", "properties": { "pointer": { "description": "A JSON Pointer [RFC6901] to the associated entity in the request document [e.g. \"/data\" for a primary data object, or \"/data/attributes/title\" for a specific attribute].", "type": "string" }, "parameter": { "description": "A string indicating which query parameter caused the error.", "type": "string" } } }, "meta": { "$ref": "#/definitions/meta" } }, "additionalProperties": false } } }
o58218
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 1024 }, "endpointSlug": { "type": "string", "minLength": 4, "maxLength": 63, "pattern": "^[0-9a-z-]*$" }, "expUserTokenCutoff": { "type": "string", "format": "date-time" }, "endpointDefaultCors": { "type": "boolean" }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 }, "cloudOnly": { "type": "boolean", "default": false }, "description": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "ftueTracking": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "version": { "type": "number" }, "status": { "type": "string", "enum": [ "skipped", "completed" ] } }, "required": [ "name", "version", "status" ], "additionalProperties": false }, "maxItems": 100 }, "archiveConfig": { "type": "object", "properties": { "directory": { "type": "string", "max": 255 }, "mode": { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "includeDevices": { "type": "boolean", "default": true }, "includeEvents": { "type": "boolean", "default": false }, "includeDataTables": { "type": "boolean", "default": false }, "dataTablesMode": { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, "dataTableIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "s3": { "type": "object", "properties": { "bucket": { "type": "string", "max": 255 }, "accessKeyId": { "type": "string", "min": 4, "max": 128 }, "secretAccessKey": { "type": "string", "min": 4, "max": 128 }, "region": { "type": "string", "max": 128 } }, "required": [ "bucket", "accessKeyId", "secretAccessKey", "region" ], "additionalProperties": false }, "gcs": { "type": "object", "properties": { "projectId": { "type": "string", "minLength": 1, "maxLength": 1024 }, "keyJson": { "type": "string", "maxLength": 32767, "minLength": 4 }, "bucket": { "type": "string", "max": 255 } }, "required": [ "projectId", "keyJson", "bucket" ], "additionalProperties": false }, "azure": { "type": "object", "properties": { "account": { "type": "string", "min": 3, "max": 24 }, "accountKey": { "type": "string", "max": 255 }, "bucket": { "type": "string", "min": 3, "max": 63 } }, "required": [ "account", "accountKey", "bucket" ], "additionalProperties": false } }, "additionalProperties": false }, "blobUrlTTL": { "type": "number", "minimum": 3600, "maximum": 604800 } }, "additionalProperties": false }
o9787
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Esquema de validaci\u00f3n para par\u00e1metros de getPackageGroup.", "description": "Este esquema contiene los datos que se reciben como par\u00e1metro de entrada para el m\u00e9todo getPackageGroup.", "properties": { "primary_group": { "type": "string", "enum": [ "hotel", "hotel_regime", "month_year", "hote_room_kind", "place", "departure_date" ], "title": "Campo que marcar\u00e1 agrupamiento primario.", "description": "Atributo que marcar\u00e1 que agrupamiento primario se utilizar\u00e1." }, "secondary_group": { "type": "string", "enum": [ "hotel", "hotel_regime", "month_year", "hote_room_kind", "place", "departure_date" ], "title": "Campo que marcar\u00e1 agrupamiento secundario.", "description": "Atributo que marcar\u00e1 que agrupamiento secundario se utilizar\u00e1." } }, "required": [ "primary_group", "secondary_group" ] }
o82257
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "Package name, including 'vendor-name/' prefix." }, "type": { "description": "Package type, either 'library' for common packages, 'composer-plugin' for plugins, 'metapackage' for empty packages, or a custom type ([a-z0-9-]+) defined by whatever project this package applies to.", "type": "string" }, "target-dir": { "description": "DEPRECATED: Forces the package to be installed into the given subdirectory path. This is used for autoloading PSR-0 packages that do not contain their full path. Use forward slashes for cross-platform compatibility.", "type": "string" }, "description": { "type": "string", "description": "Short package description." }, "keywords": { "type": "array", "items": { "type": "string", "description": "A tag/keyword that this package relates to." } }, "homepage": { "type": "string", "description": "Homepage URL for the project.", "format": "uri" }, "version": { "type": "string", "description": "Package version, see https://getcomposer.org/doc/04-schema.md#version for more info on valid schemes." }, "time": { "type": "string", "description": "Package release date, in 'YYYY-MM-DD', 'YYYY-MM-DD HH:MM:SS' or 'YYYY-MM-DDTHH:MM:SSZ' format." }, "license": { "type": [ "string", "array" ], "description": "License name. Or an array of license names." }, "authors": { "type": "array", "description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "require": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "additionalProperties": true }, "replace": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that can be replaced by this package.", "additionalProperties": true }, "conflict": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that conflict with this package.", "additionalProperties": true }, "provide": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package provides in addition to this package's name.", "additionalProperties": true }, "require-dev": { "type": "object", "description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "additionalProperties": true }, "suggest": { "type": "object", "description": "This is a hash of package name (keys) and descriptions (values) that this package suggests work well with it (this will be suggested to the user during installation).", "additionalProperties": true }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." }, "use-include-path": { "type": "boolean", "description": "If true, the Composer autoloader will also look for classes in the PHP include path." }, "preferred-install": { "type": [ "string", "object" ], "description": "The install method Composer will prefer to use, defaults to auto and can be any of source, dist, auto, or a hash of {\"pattern\": \"preference\"}." }, "notify-on-install": { "type": "boolean", "description": "Composer allows repositories to define a notification URL, so that they get notified whenever a package from that repository is installed. This option allows you to disable that behaviour, defaults to true." }, "github-protocols": { "type": "array", "description": "A list of protocols to use for github.com clones, in priority order, defaults to [\"git\", \"https\", \"http\"].", "items": { "type": "string" } }, "github-oauth": { "type": "object", "description": "A hash of domain name => github API oauth tokens, typically {\"github.com\":\"<token>\"}.", "additionalProperties": true }, "gitlab-oauth": { "type": "object", "description": "A hash of domain name => gitlab API oauth tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": true }, "gitlab-token": { "type": "object", "description": "A hash of domain name => gitlab private tokens, typically {\"gitlab.com\":\"<token>\"}.", "additionalProperties": true }, "disable-tls": { "type": "boolean", "description": "Defaults to `false`. If set to true all HTTPS URLs will be tried with HTTP instead and no network level encryption is performed. Enabling this is a security risk and is NOT recommended. The better way is to enable the php_openssl extension in php.ini." }, "secure-http": { "type": "boolean", "description": "Defaults to `true`. If set to true only HTTPS URLs are allowed to be downloaded via Composer. If you really absolutely need HTTP access to something then you can disable it, but using \"Let's Encrypt\" to get a free SSL certificate is generally a better alternative." }, "cafile": { "type": "string", "description": "A way to set the path to the openssl CA file. In PHP 5.6+ you should rather set this via openssl.cafile in php.ini, although PHP 5.6+ should be able to detect your system CA file automatically." }, "capath": { "type": "string", "description": "If cafile is not specified or if the certificate is not found there, the directory pointed to by capath is searched for a suitable certificate. capath must be a correctly hashed certificate directory." }, "http-basic": { "type": "object", "description": "A hash of domain name => {\"username\": \"...\", \"password\": \"...\"}.", "additionalProperties": true }, "store-auths": { "type": [ "string", "boolean" ], "description": "What to do after prompting for authentication, one of: true (store), false (do not store) or \"prompt\" (ask every time), defaults to prompt." }, "platform": { "type": "object", "description": "This is a hash of package name (keys) and version (values) that will be used to mock the platform packages on this machine.", "additionalProperties": true }, "vendor-dir": { "type": "string", "description": "The location where all packages are installed, defaults to \"vendor\"." }, "bin-dir": { "type": "string", "description": "The location where all binaries are linked, defaults to \"vendor/bin\"." }, "data-dir": { "type": "string", "description": "The location where old phar files are stored, defaults to \"$home\" except on XDG Base Directory compliant unixes." }, "cache-dir": { "type": "string", "description": "The location where all caches are located, defaults to \"~/.composer/cache\" on *nix and \"%LOCALAPPDATA%\\Composer\" on windows." }, "cache-files-dir": { "type": "string", "description": "The location where files (zip downloads) are cached, defaults to \"{$cache-dir}/files\"." }, "cache-repo-dir": { "type": "string", "description": "The location where repo (git/hg repo clones) are cached, defaults to \"{$cache-dir}/repo\"." }, "cache-vcs-dir": { "type": "string", "description": "The location where vcs infos (git clones, github api calls, etc. when reading vcs repos) are cached, defaults to \"{$cache-dir}/vcs\"." }, "cache-ttl": { "type": "integer", "description": "The default cache time-to-live, defaults to 15552000 (6 months)." }, "cache-files-ttl": { "type": "integer", "description": "The cache time-to-live for files, defaults to the value of cache-ttl." }, "cache-files-maxsize": { "type": [ "string", "integer" ], "description": "The cache max size for the files cache, defaults to \"300MiB\"." }, "bin-compat": { "enum": [ "auto", "full" ], "description": "The compatibility of the binaries, defaults to \"auto\" (automatically guessed) and can be \"full\" (compatible with both Windows and Unix-based systems)." }, "discard-changes": { "type": [ "string", "boolean" ], "description": "The default style of handling dirty updates, defaults to false and can be any of true, false or \"stash\"." }, "autoloader-suffix": { "type": "string", "description": "Optional string to be used as a suffix for the generated Composer autoloader. When null a random one will be generated." }, "optimize-autoloader": { "type": "boolean", "description": "Always optimize when dumping the autoloader." }, "prepend-autoloader": { "type": "boolean", "description": "If false, the composer autoloader will not be prepended to existing autoloaders, defaults to true." }, "classmap-authoritative": { "type": "boolean", "description": "If true, the composer autoloader will not scan the filesystem for classes that are not found in the class map, defaults to false." }, "github-domains": { "type": "array", "description": "A list of domains to use in github mode. This is used for GitHub Enterprise setups, defaults to [\"github.com\"].", "items": { "type": "string" } }, "github-expose-hostname": { "type": "boolean", "description": "Defaults to true. If set to false, the OAuth tokens created to access the github API will have a date instead of the machine hostname." }, "gitlab-domains": { "type": "array", "description": "A list of domains to use in gitlab mode. This is used for custom GitLab setups, defaults to [\"gitlab.com\"].", "items": { "type": "string" } }, "archive-format": { "type": "string", "description": "The default archiving format when not provided on cli, defaults to \"tar\"." }, "archive-dir": { "type": "string", "description": "The default archive path when not provided on cli, defaults to \".\"." } } }, "extra": { "type": [ "object", "array" ], "description": "Arbitrary extra data that can be used by plugins, for example, package of type composer-plugin may have a 'class' key defining an installer class name.", "additionalProperties": true }, "autoload": { "type": "object", "description": "Description of how the package can be autoloaded.", "properties": { "psr-0": { "type": "object", "description": "This is a hash of namespaces (keys) and the directories they can be found in (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" }, "rss": { "type": "string", "description": "URL to the RSS feed.", "format": "uri" } } }, "non-feature-branches": { "type": [ "array" ], "description": "A set of string or regex patterns for non-numeric branch names that will not be handled as feature branches.", "items": { "type": "string" } }, "abandoned": { "type": [ "boolean", "string" ], "description": "Indicates whether this package has been abandoned, it can be boolean or a package name/URL pointing to a recommended alternative. Defaults to false." }, "_comment": { "type": [ "array", "string" ], "description": "A key to store comments in" } } }
o89915
{ "properties": { "date": { "description": "The date of the meeting in the format YYYY-MM-DD", "type": "string" }, "location": { "description": "The location of the meeting", "type": "string" }, "participants": { "description": "The list of participants' names", "items": { "type": "string" }, "type": "array" }, "time": { "description": "The time of the meeting in the format HH:MM", "type": "string" } }, "required": [ "participants", "date", "time" ], "type": "object" }
schedule_meeting_d81725da
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" }, "withinDistanceOf": { "type": "number" }, "facilityType": { "type": "string" } }, "required": [ "latitude", "longitude", "withinDistanceOf", "facilityType" ] }
o91103
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MyModule.MyObject": { "id": "MyModule.MyObject", "type": "object", "properties": { "propA": { "type": "number" }, "propB": { "type": "number" } }, "required": [ "propA", "propB" ], "additionalProperties": false } }, "properties": { "MyModule.MyObject": { "$ref": "#/definitions/MyModule.MyObject" } }, "required": [ "MyModule.MyObject" ] }
o74425
{ "properties": { "ceaserouteradv": { "enum": [ "YES", "NO" ], "type": "string" }, "currhoplimit": { "type": "integer" }, "defaultlifetime": { "type": "integer" }, "lastrtadvtime": { "readonly": true, "type": "integer" }, "linkmtu": { "type": "integer" }, "managedaddrconfig": { "enum": [ "YES", "NO" ], "type": "string" }, "maxrtadvinterval": { "type": "integer" }, "minrtadvinterval": { "type": "integer" }, "nextrtadvdelay": { "readonly": true, "type": "integer" }, "onlyunicastrtadvresponse": { "enum": [ "YES", "NO" ], "type": "string" }, "otheraddrconfig": { "enum": [ "YES", "NO" ], "type": "string" }, "reachabletime": { "type": "integer" }, "retranstime": { "type": "integer" }, "sendrouteradv": { "enum": [ "YES", "NO" ], "type": "string" }, "srclinklayeraddroption": { "enum": [ "YES", "NO" ], "type": "string" }, "vlan": { "type": "integer" } }, "title": "nd6ravariables", "type": "object" }
o31936
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "active_top_level_browse_page": { "description": "The top-level browse page which is active", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related_topics": { "$ref": "#/definitions/guid_list" }, "second_level_browse_pages": { "description": "All 2nd level browse pages under active_top_level_browse_page", "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "top_level_browse_pages": { "description": "All top-level browse pages", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21285
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "DanceMove": { "oneOf": [ { "type": "string", "description": "text of the dance element" }, { "type": "object", "title": "one dance element", "properties": { "move": { "type": "string", "description": "text of dance element" }, "duration": { "type": "number", "description": "length of element; units may be specified" } }, "required": [ "element" ] } ] }, "DanceSection": { "type": "object", "title": "a section of dance elements", "properties": { "label": { "type": "string", "description": "label for dance section, e.g. A, A1, B2. Can also be a separator" }, "elements": { "type": "array", "items": { "$ref": "#/definitions/DanceMove" }, "description": "dance moves" } }, "required": [ "label" ] }, "DanceTune": { "type": "object", "title": "dance tune information", "properties": { "title": { "type": "string", "desciption": "title of the dance tune" }, "author": { "type": "string", "desciption": "author of the dance tune, if known" }, "key": { "type": "string", "desciption": "key of the dance tune" }, "meter": { "type": "string", "desciption": "meter of the dance tune" }, "source": { "type": "string", "desciption": "source of the dance tune, e.g. tune book or web URL" } } } }, "type": "object", "title": "dance schema", "description": "JSON schema for a structured dance", "properties": { "title": { "type": "string", "description": "The title of the dance" }, "author": { "type": "string", "description": "Who wrote the dance, if known." }, "genre": { "type": "string", "description": "The dance genre, such as 'Contra Dance', or 'English Country Dance'." }, "formation": { "type": "string", "description": "Dance formation, such as 'Longways Duple Minor', etc." }, "source": { "type": "string", "description": "source for the dance, e.g. name of publication, web URL, unknown" }, "date": { "type": "string", "description": "date of composition of the dance, if known; could be specific date or general time period" }, "authors_notes": { "type": "string", "description": "notes about the dance written by the dance author" }, "moves": { "type": "array", "title": "dance moves", "description": "array of dance moves", "items": { "$ref": "#/definitions/DanceSection" } }, "tune": { "title": "dance tune", "description": "tune information for the dance", "type": "object", "$ref": "#/definitions/DanceTune" } }, "required": [ "title", "genre" ] }
o31352
{ "type": "object", "$schema": "http://json-schema.org/draft-07/schema", "definitions": { "actionObject": { "type": "object", "properties": { "type": { "type": "string", "definition": "The action type" } }, "additionalProperties": true, "required": ["type"] }, "baseStateNode": { "type": "object", "properties": { "id": { "type": "string" }, "key": { "type": "string" }, "type": { "type": "string", "enum": ["atomic", "compound", "parallel", "final", "history"] }, "order": { "$ref": "#/definitions/order" }, "description": { "type": "string", "description": "The description of the state node, in Markdown" } }, "required": ["id", "key", "type"] }, "compoundStateNode": { "allOf": [ { "$ref": "#/definitions/baseStateNode" }, { "type": "object", "properties": { "type": { "type": "string", "pattern": "compound" }, "entry": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "exit": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "initial": { "type": "string" }, "invoke": { "$ref": "#/definitions/invokeArray" }, "on": { "$ref": "#/definitions/transitionsObject" }, "states": { "$ref": "#/definitions/statesObject" } }, "required": ["states"] } ] }, "parallelStateNode": { "allOf": [ { "$ref": "#/definitions/baseStateNode" }, { "type": "object", "properties": { "type": { "type": "string", "pattern": "parallel" }, "entry": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "exit": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "invoke": { "$ref": "#/definitions/invokeArray" }, "on": { "$ref": "#/definitions/transitionsObject" }, "states": { "$ref": "#/definitions/statesObject" } }, "required": ["states"] } ] }, "atomicStateNode": { "allOf": [ { "$ref": "#/definitions/baseStateNode" }, { "type": "object", "properties": { "type": { "type": "string", "pattern": "atomic" }, "entry": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "exit": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "invoke": { "$ref": "#/definitions/invokeArray" }, "on": { "$ref": "#/definitions/transitionsObject" } }, "required": ["on"] } ] }, "historyStateNode": { "allOf": [ { "$ref": "#/definitions/baseStateNode" }, { "type": "object", "properties": { "type": { "type": "string", "pattern": "history" }, "history": { "type": "string", "enum": ["shallow", "deep"] } }, "required": ["history"] } ] }, "finalStateNode": { "allOf": [ { "$ref": "#/definitions/baseStateNode" }, { "type": "object", "properties": { "type": { "type": "string", "pattern": "final" }, "data": { "type": "object" } } } ] }, "statesObject": { "type": "object", "patternProperties": { "^.*$": { "oneOf": [ { "$ref": "#/definitions/atomicStateNode" }, { "$ref": "#/definitions/compoundStateNode" }, { "$ref": "#/definitions/parallelStateNode" }, { "$ref": "#/definitions/historyStateNode" }, { "$ref": "#/definitions/finalStateNode" } ] } } }, "transitionsObject": { "type": "object", "patternProperties": { "^.*$": { "type": "array", "items": { "$ref": "#/definitions/transitionObject" } } } }, "transitionObject": { "type": "object", "properties": { "actions": { "type": "array", "items": { "$ref": "#/definitions/actionObject" } }, "cond": { "type": "object" }, "eventType": { "type": "string" }, "source": { "type": "string" }, "target": { "type": "array", "items": { "type": "string" } } }, "required": ["actions", "eventType", "source", "target"] }, "invokeObject": { "type": "object", "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "src": { "type": "object", "properties": { "type": { "type": "string" } } }, "autoForward": { "type": "boolean", "default": false } }, "required": ["type", "id", "src"], "additionalProperties": false }, "invokeArray": { "type": "array", "items": { "$ref": "#/definitions/invokeObject" } }, "functionObject": { "type": "object", "properties": { "$function": { "type": "string" } } }, "order": { "type": "integer" } }, "properties": { "id": { "title": "ID", "type": "string" }, "initial": { "type": "string" }, "key": { "type": "string" }, "type": { "type": "string", "enum": ["compound", "parallel"] }, "context": { "type": "object" }, "states": { "$ref": "#/definitions/statesObject" }, "on": { "$ref": "#/definitions/transitionsObject" }, "transitions": { "type": "array", "items": { "$ref": "#/definitions/transitionObject" } }, "entry": { "type": "array" }, "exit": { "type": "array" }, "order": { "$ref": "#/definitions/order" }, "invoke": { "$ref": "#/definitions/invokeArray" }, "version": { "type": "string" } }, "required": ["id", "key", "type", "states"] }
machine
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Vulnerability Rating Taxonomy", "description": "A Taxonomy of potential vulnerabilities with suggested technical priority rating", "definitions": { "VRTmetadata": { "type": "object", "properties": { "release_date": { "type": "string", "format": "date-time" } } }, "VRT": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[a-z_]*$" }, "type": { "type": "string", "enum": [ "category", "subcategory", "variant" ] }, "name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()/,.<]*$" }, "priority": { "anyOf": [ { "type": "number", "minimum": 1, "maximum": 5 }, { "type": "null" } ] } }, "required": [ "id", "name", "type", "priority" ] }, "VRTparent": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[a-z_]*$" }, "name": { "type": "string", "pattern": "^[ a-zA-Z0-9-+()/,.<]*$" }, "type": { "type": "string", "enum": [ "category", "subcategory" ] }, "children": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/VRTparent" }, { "$ref": "#/definitions/VRT" } ] }, "minItems": 1 } }, "required": [ "id", "name", "type", "children" ] } }, "type": "object", "required": [ "metadata", "content" ], "properties": { "metadata": { "$ref": "#/definitions/VRTmetadata" }, "content": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/VRTparent" }, { "$ref": "#/definitions/VRT" } ] } } } }
o27789
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://dcc.icgc.org/gene-text", "type": "object", "properties": { "entrezGene": { "id": "https://dcc.icgc.org/gene-text/entrezGene", "type": "array", "items": { "id": "https://dcc.icgc.org/gene-text/entrezGene/0", "type": "string" }, "additionalItems": false }, "hgnc": { "id": "https://dcc.icgc.org/gene-text/hgnc", "type": "array", "items": { "id": "https://dcc.icgc.org/gene-text/hgnc/0", "type": "string" }, "additionalItems": false }, "id": { "id": "https://dcc.icgc.org/gene-text/id", "type": "string" }, "name": { "id": "https://dcc.icgc.org/gene-text/name", "type": "string" }, "omimGene": { "id": "https://dcc.icgc.org/gene-text/omimGene", "type": "array", "items": { "id": "https://dcc.icgc.org/gene-text/omimGene/0", "type": "string" }, "additionalItems": false }, "symbol": { "id": "https://dcc.icgc.org/gene-text/symbol", "type": "string" }, "synonyms": { "id": "https://dcc.icgc.org/gene-text/synonyms", "type": "array", "items": { "id": "https://dcc.icgc.org/gene-text/synonyms/0", "type": "string" }, "additionalItems": false }, "type": { "id": "https://dcc.icgc.org/gene-text/type", "type": "string" }, "uniprotkbSwissprot": { "id": "https://dcc.icgc.org/gene-text/uniprotkbSwissprot", "type": "array", "items": { "id": "https://dcc.icgc.org/gene-text/uniprotkbSwissprot/0", "type": "string" }, "additionalItems": false } }, "additionalProperties": false }
o47115
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "api_key", "freesurfer_license" ], "type": "object", "properties": { "t1w_anatomy": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "api_key": { "type": "object", "properties": {} }, "t2w_anatomy": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } }, "freesurfer_license": { "type": "object", "properties": {} } } }, "config": { "required": [ "save_outputs", "freesurfer", "save_intermediate_work", "intermediate_folders", "intermediate_files" ], "type": "object", "properties": { "save_outputs": { "default": false, "type": "boolean" }, "freesurfer": { "default": true, "type": "boolean" }, "intermediate_files": { "default": "ref_image_corrected_brain.nii.gz", "type": "string" }, "save_intermediate_work": { "default": false, "type": "boolean" }, "intermediate_folders": { "default": "", "type": "string" } } } }, "title": "Invocation manifest for fMRIPREP: A Robust Preprocessing Pipeline for fMRI Data" }
o41253
{ "description": "An applicant applies to one or more **programs** through **designations**. **Programs** render a **decision** for the **designation**.", "links": [ { "description": "Display the designation for the applicant with the given applicant CAS ID and program ID.", "href": "/api/v1/user_identities/:user_identity_id/programs/:program_id/applicants_by_cas_id/:applicant_cas_id/designation", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "GET", "rel": "self", "title": "Show" }, { "description": "Update the designation with the given applicant CASID and program ID. **WARNING:** You'll get this error when you're trying to set a decision_id to a designation that already has a local status assigned. If you want to be able to force the decision_id please contact Liaison to turn on the \"Disassociate Decision Codes from Local Status\" feature which will allow you to set the decision even if the local_status is present.", "href": "/api/v1/user_identities/:user_identity_id/programs/:program_id/applicants_by_cas_id/:applicant_cas_id/designation", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "PATCH", "rel": "update", "schema": { "properties": { "designation": { "properties": { "decision_id": { "description": "The unique identifier for the decision to set. If the designation is in received status and the preliminary_data_handling feature is on, the code will prevent changes to the decision code.", "example": 43, "type": [ "integer", "null" ] } }, "type": "object" } }, "type": "object" }, "targetSchema": { "properties": { "decision": { "properties": { "id": { "example": 43, "type": "integer" }, "name": { "example": "Matriculated", "type": "string" } }, "type": [ "object", "null" ] }, "decisions_href": { "description": "Hypertext reference for valid decisions.", "example": "/api/v1/user_identities/1/decisions", "pattern": "/api/v1/user_identities/\\d+/decisions", "type": "string" }, "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/user_identities/1/programs/42023191739237/applicants_by_cas_id/4/designation", "pattern": "/api/v1/user_identities/\\d+/programs/\\d+/applicants_by_cas_id/\\d+/designation", "type": "string" }, "local_status": { "type": "null" } } }, "title": "Update" } ], "properties": { "designation": { "properties": { "decision": { "properties": { "id": { "description": "Unique identifier of this decision.", "example": 42, "type": "integer" }, "name": { "description": "Human-readable name for this decision.", "example": "Offer Accepted", "type": "string" } }, "type": [ "object", "null" ] }, "decisions_href": { "description": "Hypertext reference for valid decisions.", "example": "/api/v1/user_identities/1/decisions", "pattern": "/api/v1/user_identities/\\d+/decisions", "type": "string" }, "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/user_identities/1/programs/42023191739237/applicants_by_cas_id/3/designation", "pattern": "/api/v1/user_identities/\\d+/programs/\\d+/applicants_by_cas_id/\\d+/designation", "type": "string" }, "local_status": { "description": "For programs using WebAdMIT to manage their admissions process, a local status is a way for those programs to enter their workflow into WebAdMIT. Typically, these programs will tie a decision to a local status. Decisions are used for reporting at a national level (or school-wide level for UniCAS), but local statuses are for an individual program's process.", "properties": { "id": { "description": "Unique identifier of this local status.", "example": 123456, "type": "integer" }, "title": { "description": "Human-readable title for this local status.", "example": "Deposit Made", "type": "string" } }, "type": [ "object", "null" ] } }, "type": "object" } }, "title": "Designation", "type": "object" }
o9510
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Auth", "id": "#/definitions/auth-attribute", "description": "Represents an attribute for any authorization method provided by Postman. For example `username` and `password` are set as auth attributes for Basic Authentication method.", "properties": { "key": { "type": "string" }, "value": {}, "type": { "type": "string" } }, "required": [ "key" ] }
o67594
{ "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": [ "string", "null" ] }, "optional": { "description": "Specify whether the Secret must be defined", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_936_Normalized
{ "errorMessage": { "uniqueItemProperties": "should NOT contain objects with the same zoneId" }, "items": { "additionalProperties": false, "properties": { "offeringId": { "type": "string" }, "zoneId": { "type": "string" } }, "required": [ "zoneId", "offeringId" ], "type": "object" }, "type": "array", "uniqueItemProperties": [ "zoneId" ] }
o27828
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "line1": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "zip": { "$ref": "#/definitions/US_zipCode" }, "country": { "type": "string" } }, "additionalProperties": false, "required": [ "line1", "city", "state", "zip", "country" ], "definitions": { "US_zipCode": { "type": "string", "pattern": "^[0-9]{5}(-[0-9]{4})?$" } } }
o81566
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/soundcloud-audio-block/1-0-0.json#", "properties": { "aside": { "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "rule": "single", "type": "boolean" }, "type": "boolean" }, "auto_play": { "pbj": { "rule": "single", "type": "boolean" }, "type": "boolean" }, "css_class": { "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pattern": "^[\\w\\s-]+$", "pbj": { "rule": "single", "type": "string" }, "type": "string" }, "etag": { "pattern": "^[\\w\\.:-]+$", "pbj": { "rule": "single", "type": "string" }, "type": "string" }, "hide_related": { "pbj": { "rule": "single", "type": "boolean" }, "type": "boolean" }, "poster_image_ref": { "description": "A reference to an image asset to use as the poster that will override what is provided by soundcloud.", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "rule": "single", "type": "identifier" }, "type": "string" }, "show_comments": { "pbj": { "rule": "single", "type": "boolean" }, "type": "boolean" }, "track_id": { "pattern": "^\\d+$", "pbj": { "rule": "single", "type": "string" }, "type": "string" }, "updated_date": { "_format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "rule": "single", "type": "date-time" }, "type": "string" }, "visual": { "description": "Whether or not to use the thumbnail as a poster image.", "pbj": { "rule": "single", "type": "boolean" }, "type": "boolean" } }, "required": [ "track_id" ], "type": "object" }
o82694
{ "additionalProperties": false, "description": "Client creation request", "oneOf": [ { "properties": { "grantType": { "enum": [ "authorization_code" ] }, "responseType": { "default": "code", "enum": [ "code" ] } }, "required": [ "grantType" ] }, { "properties": { "grantType": { "enum": [ "client_credentials" ] }, "responseType": { "default": "token", "enum": [ "token" ] } }, "required": [ "grantType" ] } ], "properties": { "grantType": { "type": "string" }, "redirectUris": { "items": { "type": "string" }, "type": "array" }, "responseType": { "type": "string" }, "scopes": { "items": { "type": "string" }, "type": "array" } }, "title": "OAuthClientRequest", "type": "object" }
o10011
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "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" } }, "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_86e1ccc1
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiGroup": { "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "rbac.authorization.k8s.io/v1" ], "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": [ "ClusterRoleBinding" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1_RoleRef", "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1_Subject" }, "type": [ "array", "null" ] } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBinding", "version": "v1" } ] }
kb_87_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "description": "The transportation network used for routing in the scene.", "esriDocumentation": { "examples": [ { "code": { "transportationNetworks": [ { "name": "main.campus_ND", "path": "file:./esricampus.geodatabase", "title": "campus_ND" } ] }, "title": "Transportation Networks" } ] }, "properties": { "name": { "description": "The name of the transportation network. The name must be unique within a scene.", "type": "string" }, "path": { "description": "The path to the geodatabase which contains the network.", "pattern": "^file:.+\\.geodatabase?$", "type": "string" }, "title": { "description": "A title or alias of the network layer. This can be used in the client user interface.", "type": "string" } }, "required": [ "name", "path", "title" ], "title": "Transportation Network", "type": "object" }
o90328
{ "$comment": "design document https://g0v.hackmd.io/eIeU2g86Tfu5VnLazNfUvQ", "description": "A representation of an UserSettings", "properties": { "allowNewReplyUpdate": { "type": "boolean" }, "newReplyNotifyToken": { "type": "string" }, "userId": { "type": "string" } }, "required": [ "userId", "allowNewReplyUpdate" ], "title": "UserSettings", "type": "object" }
o32963
{ "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "resources": { "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "verbs": { "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "required": [ "verbs" ], "type": "object" }
kb_849_Normalized
{ "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" }, "shape": { "description": "The shape to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }
calculate_area_9946349f
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", "properties": { "accessModes": { "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "dataSource": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" }, "selector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over volumes to consider for binding." }, "storageClassName": { "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", "type": [ "string", "null" ] }, "volumeMode": { "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", "type": [ "string", "null" ] }, "volumeName": { "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.", "type": [ "string", "null" ] } }, "type": "object" }
kb_670_Normalized
{ "additionalProperties": true, "properties": { "attestationCert": { "_id": "attestationCert", "minLength": 1, "type": "string" }, "publicKey": { "_id": "publicKey", "minLength": 1, "type": "string" } }, "required": [ "publicKey", "attestationCert" ], "title": "u2f.properties", "type": "object" }
o58273
{ "additionalProperties": false, "properties": { "commonModule": { "default": true, "description": "Flag to control whether the CommonModule is imported.", "type": "boolean", "visible": false }, "flat": { "default": false, "description": "Flag to indicate if a dir is created.", "type": "boolean" }, "module": { "alias": "m", "description": "Allows specification of the declaring module.", "type": "string" }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "The name of the module.", "type": "string" }, "path": { "description": "The path to create the module.", "format": "path", "type": "string", "visible": false }, "project": { "$default": { "$source": "projectName" }, "description": "The name of the project.", "type": "string" }, "routing": { "default": false, "description": "Generates a routing module.", "type": "boolean" }, "routingScope": { "default": "Child", "description": "The scope for the generated routing.", "enum": [ "Child", "Root" ], "type": "string" }, "spec": { "default": true, "description": "Specifies if a spec file is generated.", "type": "boolean" } }, "required": [], "title": "Angular Module Options Schema", "type": "object" }
o45405
{ "properties": { "client_details": { "properties": { "email": { "description": "The email address of the client", "type": "string" }, "name": { "description": "The name of the client", "type": "string" } }, "required": [ "name", "email" ], "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": [ "client_details", "items" ], "type": "object" }
generate_invoice_5e32c363
{ "type": "object", "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "minProperties": 2, "maxProperties": 5, "additionalProperties": false, "properties": { "fabric_uuid": { "$id": "/properties/input/properties/fabric_uuid", "format": "uuid", "type": "string", "title": "The Fabric_uuid Schema", "description": "UUID of the fabric object created", "default": "", "examples": [ "123456789" ] }, "contrail_command_host": { "$id": "/properties/input/properties/contrail_command_host", "format": "uuid", "type": "string", "title": "The Fabric_uuid Schema", "description": "UUID of the fabric object created", "default": "", "examples": [ "10.10.10.10:9091" ] }, "cc_username": { "$id": "/properties/input/properties/cc_username", "description": "The Contrail Command Login Username", "type": "string" }, "cc_password": { "$id": "/properties/input/properties/cc_password", "description": "The Contrail Command Login Password", "type": "string" }, "fabric_fq_name": { "$id": "/properties/input/properties/fabric_fq_name", "type": "array", "items": { "$id": "/properties/input/properties/fabric_fq_name/items", "type": "string", "title": "The Fabric_fq_name Schema", "description": "FQNAME of the fabric object created", "default": "", "examples": [ "default-global-system-config", "fabric01" ] } }, "manage_underlay": { "type": "boolean", "title": "Manage underlay networking", "description": "Set to true if need to configure device underlay networking" } } }
o8454
{ "properties": { "destination": { "properties": { "latitude": { "description": "The latitude of the destination coordinate", "type": "number" }, "longitude": { "description": "The longitude of the destination coordinate", "type": "number" } }, "type": "object" }, "source": { "properties": { "latitude": { "description": "The latitude of the source coordinate", "type": "number" }, "longitude": { "description": "The longitude of the source coordinate", "type": "number" } }, "type": "object" } }, "required": [ "source", "destination" ], "type": "object" }
calculate_distance_8e9d1e1f
{ "properties": { "dimensions": { "dependencies": { "shape": [ "circle", "rectangle", "triangle" ] }, "properties": { "base": { "description": "The base length of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "width", "height", "base" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_bd151164
{ "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. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." }, "maxUnavailable": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." } }, "type": "object" }
kb_881_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "The location id" }, "meta": { "type": [ "object" ], "properties": { "type": { "type": "integer", "description": "The location type" } } }, "phone": { "type": "string", "description": "The location phone" }, "street": { "type": "string", "description": "The location street" }, "boxNumber": { "type": "string", "description": "The location box number" }, "streetNumber": { "type": "string", "description": "The location street number" }, "zipCode": { "type": "string", "description": "The location zip code" }, "town": { "type": "string", "description": "The location town" }, "country": { "type": "string", "description": "The location country" } }, "claroline": { "requiredAtCreation": [ "name", "street", "streetNumber", "zipCode", "town", "country" ], "ids": [ "id", "name" ] } }
o32478
{ "$schema": "http://json-schema.org/draft-04/schema#", "targetType": "document_surface1d", "schemaType": "NamedEntity", "title": "Named Entity", "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 } } } }, "TypeNE": { "type": "string", "description": "Named entity's type.", "enum": [ "personne", "lieu", "organisation", "autre" ], "searchable": true, "searchModes": [ "basic" ], "locked": true }, "TypeEn_Wikipedia": { "type": "array", "_uniqueItems": true, "description": "Type of entity on Wikipedia.", "searchable": true, "searchModes": [ "basic" ], "locked": false, "minItems": 0, "items": { "type": "string" } }, "description": { "type": "string", "description": "Description of the named entity.", "searchable": true, "searchModes": [ "basic" ], "locked": false }, "wikipedia": { "type": "string", "description": "Reference URL for the entityt on Wikipedia", "searchable": true, "searchModes": [ "basic" ], "locked": false } } }
o33701
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Input configuration.", "type": "object", "properties": { "id": { "type": "integer", "description": "User identification.", "default": 12345 }, "name": { "type": "string", "description": "User name.", "default": "AVRELIANVS" } } }
o24544
{ "additionalProperties": true, "description": "Schema for a SendGrid processed event. Property descriptions derived from the SendGrid documentation: https://sendgrid.com/docs/for-developers/tracking-events/event/", "properties": { "asm_group_id": { "description": "The ID of the unsubscribe group the recipient\u2019s email address is included in. ASM IDs correspond to the ID that is returned when you create an unsubscribe group.", "maximum": 32767, "minimum": 0, "type": "integer" }, "category": { "description": "Categories are custom tags that you set for the purpose of organizing your emails. Categories can be set as an array or string, and they will be returned as such when posted in your event endpoint.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "email": { "_format": "email", "description": "The email address of the recipient", "type": "string" }, "marketing_campaign_id": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "integer" }, "marketing_campaign_name": { "description": "For emails sent through our Marketing Campaigns feature, we add Marketing Campaigns specific parameters to the Event Webhook. Both marketing_campaign_name and marketing_campaign_id are displayed as unique arguments in the event data.", "type": "string" }, "marketing_campaign_split_id": { "description": "Marketing campaign split id", "type": "integer" }, "marketing_campaign_version": { "description": "Displayed in the event data for emails sent as part of an A/B Test. The value for marketing_campaign_version are returned as A, B, C, etc.", "type": "string" }, "newsletter": { "additionalProperties": true, "description": "Legacy Marketing Email tool fields", "properties": { "newsletter_id": { "type": "string" }, "newsletter_send_id": { "type": "string" }, "newsletter_user_list_id": { "type": "string" } }, "type": "object" }, "send_at": { "description": "To schedule a send request for a large batch of emails, use the send_at parameter which will send all emails at approximately the same time. send_at is a UNIX timestamp.", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "sg_event_id": { "description": "A unique ID to this event that you can use for deduplication purposes. These IDs are up to 100 characters long and are URL safe.", "maxLength": 4096, "minLength": 22, "type": "string" }, "sg_message_id": { "description": "A unique, internal SendGrid ID for the message. The first half of this is pulled from the smtp-id.", "type": "string" }, "smtp-id": { "description": "A unique ID attached to the message by the originating system", "type": "string" }, "timestamp": { "_format": "date-time", "description": "The timestamp of when the message was sent", "type": "string" } }, "self": { "format": "jsonschema", "name": "processed", "vendor": "com.sendgrid", "version": "2-0-0" }, "type": "object" }
sp_195_Normalized
{ "$id": "https://json.schemastore.org/zuul.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "JobEntry": { "additionalProperties": false, "properties": { "job": { "$ref": "#/definitions/JobModel" } }, "required": ["job"], "title": "JobEntry", "type": "object" }, "JobModel": { "additionalProperties": false, "properties": { "abstract": { "default": false, "title": "Abstract", "type": "boolean" }, "allowed-projects": { "title": "Allowed-Projects", "type": "string" }, "ansible-version": { "anyOf": [ { "type": "number" }, { "enum": ["2.7", "2.8", "2.9", "2.10", "2.11"], "type": "string" } ], "title": "Ansible-Version" }, "attempts": { "title": "Attempts", "type": "integer" }, "branches": { "title": "Branches", "type": "string" }, "description": { "title": "Description", "type": "string" }, "dependencies": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "items": { "$ref": "#/definitions/JobDependencyModel" }, "type": "array" } ], "title": "Files" }, "failure-url": { "title": "Failure-Url", "type": "string" }, "files": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Files" }, "final": { "default": false, "title": "Final", "type": "boolean" }, "host-vars": { "additionalProperties": { "type": "object" }, "title": "Host-Vars", "type": "object" }, "irrelevant-files": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Irrelevant-Files" }, "name": { "title": "Name", "type": "string" }, "nodeset": { "title": "Nodeset" }, "override-checkout": { "title": "Override-Checkout", "type": "string" }, "parent": { "title": "Parent", "type": "string" }, "post-run": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Post-Run" }, "post-timeout": { "title": "Post-Timeout", "type": "integer" }, "pre-run": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Pre-Run" }, "provides": { "items": { "type": "string" }, "title": "Provides", "type": "array" }, "required-projects": { "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/RequiredProjectModel" } ] }, "title": "Required-Projects", "type": "array" }, "requires": { "items": { "type": "string" }, "title": "Requires", "type": "array" }, "roles": { "items": { "$ref": "#/definitions/ZuulRoleModel" }, "title": "Roles", "type": "array" }, "run": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Run" }, "secrets": { "anyOf": [ { "$ref": "#/definitions/JobSecretModel" }, { "items": { "anyOf": [ { "$ref": "#/definitions/JobSecretModel" }, { "type": "string" } ] }, "type": "array" } ], "title": "Secrets" }, "success-url": { "title": "Success-Url", "type": "string" }, "tags": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Tags" }, "timeout": { "title": "Timeout", "type": "integer" }, "vars": { "title": "Vars", "type": "object" }, "voting": { "default": true, "title": "Voting", "type": "boolean" }, "workspace-scheme": { "title": "Workspace Scheme", "enum": ["flat", "golang", "unique"], "type": "string" } }, "required": ["name"], "title": "JobModel", "type": "object" }, "JobDependencyModel": { "additionalProperties": false, "properties": { "name": { "title": "Name", "type": "string" }, "soft": { "default": false, "title": "Soft", "type": "boolean" } }, "required": ["name"], "title": "JobDependencyModel", "type": "object" }, "JobSecretModel": { "additionalProperties": false, "properties": { "name": { "title": "Name", "type": "string" }, "pass-to-parent": { "default": false, "title": "Pass-To-Parent", "type": "boolean" }, "secret": { "title": "Secret", "type": "string" } }, "required": ["name", "secret"], "title": "JobSecretModel", "type": "object" }, "PipelineModel": { "additionalProperties": false, "properties": { "jobs": { "items": {}, "title": "Jobs", "type": "array" }, "queue": { "title": "Queue", "type": "string" } }, "title": "PipelineModel", "type": "object" }, "ProjectEntry": { "additionalProperties": false, "properties": { "project": { "$ref": "#/definitions/ProjectModel" } }, "required": ["project"], "title": "ProjectEntry", "type": "object" }, "ProjectModel": { "additionalProperties": false, "properties": { "check": { "$ref": "#/definitions/PipelineModel" }, "default-branch": { "title": "Default-Branch", "type": "string" }, "description": { "title": "Description", "type": "string" }, "gate": { "$ref": "#/definitions/PipelineModel" }, "name": { "title": "Name", "type": "string" }, "periodic-weekly": { "$ref": "#/definitions/PipelineModel" }, "post": { "$ref": "#/definitions/PipelineModel" }, "promote": { "$ref": "#/definitions/PipelineModel" }, "queue": { "title": "Queue", "type": "string" }, "release": { "$ref": "#/definitions/PipelineModel" }, "templates": { "items": { "type": "string" }, "title": "Templates", "type": "array" }, "third-party-check": { "$ref": "#/definitions/PipelineModel" }, "vars": { "title": "Vars", "type": "object" } }, "title": "ProjectModel", "type": "object" }, "ProjectTemplateEntry": { "additionalProperties": false, "properties": { "project-template": { "$ref": "#/definitions/ProjectTemplateModel" } }, "required": ["project-template"], "title": "ProjectTemplateEntry", "type": "object" }, "ProjectTemplateModel": { "additionalProperties": false, "properties": { "check": { "$ref": "#/definitions/PipelineModel" }, "default-branch": { "title": "Default-Branch", "type": "string" }, "description": { "title": "Description", "type": "string" }, "gate": { "$ref": "#/definitions/PipelineModel" }, "name": { "title": "Name", "type": "string" }, "periodic-weekly": { "$ref": "#/definitions/PipelineModel" }, "post": { "$ref": "#/definitions/PipelineModel" }, "promote": { "$ref": "#/definitions/PipelineModel" }, "queue": { "title": "Queue", "type": "string" }, "release": { "$ref": "#/definitions/PipelineModel" }, "third-party-check": { "$ref": "#/definitions/PipelineModel" }, "vars": { "title": "Vars", "type": "object" } }, "required": ["name"], "title": "ProjectTemplateModel", "type": "object" }, "RequiredProjectModel": { "properties": { "name": { "title": "Name", "type": "string" }, "override-checkout": { "title": "Override-Checkout", "type": "string" } }, "required": ["name"], "title": "RequiredProjectModel", "type": "object" }, "SecretEntry": { "additionalProperties": false, "properties": { "secret": { "$ref": "#/definitions/SecretModel" } }, "required": ["secret"], "title": "SecretEntry", "type": "object" }, "SecretModel": { "additionalProperties": false, "properties": { "data": { "title": "Data", "type": "object" }, "name": { "title": "Name", "type": "string" } }, "required": ["name", "data"], "title": "SecretModel", "type": "object" }, "ZuulRoleModel": { "additionalProperties": false, "properties": { "zuul": { "title": "Zuul", "type": "string" } }, "required": ["zuul"], "title": "ZuulRoleModel", "type": "object" } }, "examples": ["zuul.d/*.yaml", "zuul-tests.d/*.yaml", ".zuul.yaml"], "items": { "anyOf": [ { "$ref": "#/definitions/JobEntry" }, { "$ref": "#/definitions/ProjectEntry" }, { "$ref": "#/definitions/ProjectTemplateEntry" }, { "$ref": "#/definitions/SecretEntry" } ] }, "title": "Zuul Config Schema", "type": "array" }
zuul
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/datasource/CreateDataSource.args.scheme.json", "title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b datasource.CreateDataSource", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u044b\u0437\u043e\u0432\u0443 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b datasource.CreateDataSource", "type": "object", "properties": { "class_code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 class_code", "type": "string" }, "sec_code": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 sec_code", "type": "string" }, "interval": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 interval", "type": "string", "pattern": "INTERVAL_TICK|INTERVAL_M1|INTERVAL_M2|INTERVAL_M3|INTERVAL_M4|INTERVAL_M5|INTERVAL_M6|INTERVAL_M10|INTERVAL_M15|INTERVAL_M20|INTERVAL_M30|INTERVAL_H1|INTERVAL_H2|INTERVAL_H4|INTERVAL_D1|INTERVAL_W1|INTERVAL_MN1" }, "param": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 param", "type": "string" } }, "additionalProperties": false, "required": [ "class_code", "sec_code", "interval" ] }
o5195
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "birthday": { "_format": "date-time", "description": "Birthday of the Household Member", "minLength": 1, "type": "string" }, "createdAt": { "_format": "date-time", "description": "[Output only] Creation time of the household member", "minLength": 1, "type": "string" }, "createdBy": { "description": "[Output only] Creator of the household member", "minLength": 1, "type": "string" }, "email": { "_format": "email", "description": "E-mail address for the Household Member", "minLength": 1, "type": "string" }, "firstName": { "description": "First name of Household Member", "minLength": 1, "type": "string" }, "gender": { "description": "Gender of the Household Member", "enum": [ "Male", "Female", "Other" ], "type": "string" }, "householdId": { "description": "[Output only] Unique ID of Household", "minLength": 1, "type": "string" }, "isActive": { "default": true, "description": "Flag to indicate if a household member is Active", "type": "boolean" }, "isArchived": { "default": false, "description": "Flag to indicate if a household member is Archived", "type": "boolean" }, "isDisabled": { "default": false, "description": "Flag to indicate if a household member is Disabled", "type": "boolean" }, "isHispanic": { "default": false, "description": "Flag to indicate if a household member is Hispanic", "type": "boolean" }, "isSpecialNeeds": { "default": false, "description": "Flag to indicate if a household member is Special Needs", "type": "boolean" }, "lastName": { "description": "Last name of Household Member", "minLength": 1, "type": "string" }, "memberId": { "description": "[Output only] Unique ID of Household Member", "minLength": 1, "type": "string" }, "memberType": { "description": "Member type of the household member", "enum": [ "headOfHousehold", "householdMember" ], "type": "string" }, "middleName": { "description": "Middle name of Household Member", "minLength": 1, "type": "string" }, "phone": { "description": "Phone number for the Household Member", "type": "number" }, "providedId": { "description": "Optional Unique ID provided by the Household Member", "minLength": 1, "type": "string" }, "race": { "description": "Race of the Household Member", "enum": [ "American Indian or Alaska Native", "Asian", "Black or African American", "Native Hawaiian or Other Pacific Islander", "White" ], "type": "string" }, "updatedAt": { "_format": "date-time", "description": "[Output only] Last modification time of the household member", "minLength": 1, "type": "string" }, "updatedBy": { "description": "[Output only] User to last modify the household member", "minLength": 1, "type": "string" }, "validationDate": { "_format": "date-time", "description": "Validation date of the Household Member", "minLength": 1, "type": "string" }, "validationType": { "description": "Validation type of the Household Member", "minLength": 1, "type": "string" } }, "required": [ "firstName", "lastName", "birthday", "gender" ], "title": "User", "type": "object" }
o53606
{ "properties": { "down_payment": { "description": "The down payment amount", "type": "number" }, "interest_rate": { "description": "The annual interest rate", "type": "number" }, "loan_amount": { "description": "The loan amount", "type": "number" }, "loan_term": { "description": "The loan term in years", "type": "integer" } }, "required": [ "loan_amount", "interest_rate", "loan_term", "down_payment" ], "type": "object" }
calculate_mortgage_payment_5952be32
{ "$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": [ "EiffelActivityFinishedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.0.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "string", "pattern": "^pkg:" }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "outcome": { "type": "object", "properties": { "conclusion": { "type": "string", "enum": [ "SUCCESSFUL", "UNSUCCESSFUL", "FAILED", "ABORTED", "TIMED_OUT", "INCONCLUSIVE" ] }, "description": { "type": "string" } }, "required": [ "conclusion" ] }, "persistentLogs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "additionalProperties": false, "required": [ "outcome" ] }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5330
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "description": { "type": "string" }, "build_time": { "type": "number" }, "icon": { "type": "string" }, "type": { "type": "string" }, "required_level": { "type": "number" }, "experience": { "type": "number" }, "prerequisites": { "type": "array", "items": {} }, "costs": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "count": { "type": "number" }, "name": { "type": "string" }, "item_id": { "type": "number" } } } } }, "required": [ "id", "name", "description", "build_time", "icon", "type", "required_level", "experience", "prerequisites", "costs" ] }, "properties": {}, "additionalProperties": false }
o45184
{ "additionalProperties": false, "properties": { "expire": { "max": 214748364, "min": 0, "type": "integer" }, "minimun": { "max": 214748364, "min": 0, "type": "integer" }, "mname": { "format": "hostname", "type": "string" }, "refresh": { "max": 214748364, "min": 0, "type": "integer" }, "retry": { "max": 214748364, "min": 0, "type": "integer" }, "rname": { "format": "hostname", "type": "string" }, "serial": { "max": 214748364, "min": 0, "type": "integer" } }, "required": [ "mname", "rname", "serial", "refresh", "retry", "expire", "minimun" ] }
o70328
{ "properties": { "billing_address": { "description": "The billing address", "type": "string" }, "due_date": { "description": "The due date of the invoice", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "items", "billing_address", "due_date" ], "type": "object" }
generate_invoice_ed2e4854
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "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", "null" ] }, "reason": { "description": "reason is the reason for the condition's last transition.", "type": [ "string", "null" ] }, "status": { "description": "status is the status of the condition (True, False, Unknown)", "type": [ "string", "null" ] }, "type": { "description": "type describes the current condition", "type": [ "string", "null" ] } }, "required": [ "type", "status" ], "type": "object" }
kb_396_Normalized
{ "title": "Filing", "$schema": "http://json-schema.org/draft-04/schema#", "description": "Filing represents a user submission against one or many proceedings.", "required": [ "_metadata", "filing" ], "type": "object", "properties": { "_metadata": { "required": [ "request", "response" ], "type": "object", "properties": { "request": { "required": [ "ip", "params", "time", "user" ], "type": "object", "properties": { "ip": { "type": "string" }, "params": { "type": "null" }, "user": { "type": "null" }, "time": { "type": "string" } } }, "response": { "required": [ "time" ], "type": "object", "properties": { "time": { "type": "string" } } } } }, "filing": { "required": [ "brief_comment_flag", "browser", "bureau_id_num", "confirmation_number", "date_accepted", "date_comment_period", "date_disseminated", "date_filed", "date_modified", "date_pn_ex_parte", "date_rcpt", "date_released", "date_reply_comment", "date_submission", "date_transmission_completed", "delagated_authority_number", "exparte_late_filed", "fcc_record", "file_numer", "filed_from", "filer", "flag_migrated_from_rips", "id_edocs", "id_proceeding", "id_ruleno", "id_trans", "id_user", "id_viewing_status", "path_info", "reg_flex_analysis", "remote_addr", "remote_host", "remote_ident", "remote_user", "report_number", "ruleno", "server_name", "small_business_impact", "subject", "submission_status", "submission_type", "total_page_count", "viewing_status" ], "type": "object", "properties": { "exparte_late_filed": { "type": "boolean" }, "date_disseminated": { "type": "string" }, "date_rcpt": { "type": "string" }, "total_page_count": { "type": "integer" }, "date_pn_ex_parte": { "type": "null" }, "file_numer": { "type": "null" }, "reg_flex_analysis": { "type": "null" }, "ruleno": { "type": "null" }, "id_viewing_status": { "type": "null" }, "subject": { "type": "null" }, "confirmation_number": { "type": "string" }, "remote_user": { "type": "null" }, "fcc_record": { "type": "null" }, "server_name": { "type": "string" }, "filed_from": { "type": "string" }, "viewing_status": { "type": "string" }, "date_filed": { "type": "string" }, "report_number": { "type": "null" }, "date_comment_period": { "type": "null" }, "id_edocs": { "type": "null" }, "filer": { "required": [ "address", "applicant_name", "author_name", "contact_email_id", "contact_name", "lawfirm_name" ], "type": "object", "properties": { "contact_email_id": { "type": "string" }, "author_name": { "type": "string" }, "lawfirm_name": { "type": "string" }, "address": { "required": [ "city", "country", "id_state", "line_1", "line_2", "postal_code" ], "type": "object", "properties": { "city": { "type": "string" }, "country": { "type": "string" }, "id_state": { "type": "string" }, "postal_code": { "type": "string" }, "line_1": { "type": "string" }, "line_2": { "type": "null" } } }, "contact_name": { "type": "string" }, "applicant_name": { "type": "null" } } }, "id_ruleno": { "type": "null" }, "remote_ident": { "type": "null" }, "submission_status": { "required": [ "id", "value" ], "type": "object", "properties": { "id": { "type": "integer" }, "value": { "type": "null" } } }, "path_info": { "type": "string" }, "delagated_authority_number": { "type": "null" }, "bureau_id_num": { "type": "null" }, "id_trans": { "type": "integer" }, "id_user": { "type": "integer" }, "date_transmission_completed": { "type": "string" }, "date_modified": { "type": "null" }, "date_accepted": { "type": "null" }, "remote_addr": { "type": "string" }, "brief_comment_flag": { "type": "integer" }, "date_reply_comment": { "type": "null" }, "date_submission": { "type": "string" }, "id_proceeding": { "type": "integer" }, "flag_migrated_from_rips": { "type": "null" }, "small_business_impact": { "type": "null" }, "date_released": { "type": "null" }, "remote_host": { "type": "string" }, "submission_type": { "required": [ "id", "value" ], "type": "object", "properties": { "id": { "type": "integer" }, "value": { "type": "string" } } }, "browser": { "type": "string" } } } } }
o62961
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "side_length": { "description": "The side length of the square (if applicable)", "type": "number" } }, "required": [ "radius", "side_length", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_fc5e0e5c
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "get spiders response", "properties": { "links": { "properties": { "self": { "properties": { "href": { "_format": "uri", "type": "string" } }, "required": [ "href" ], "type": "object" } }, "required": [ "self" ], "type": "object" }, "spiders": { "additionalProperties": true, "properties": {}, "type": "object" } }, "required": [ "spiders", "links" ], "title": "get spiders response", "type": "object" }
o76472
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "dcosReleaseVersion": { "type": "string", "pattern": "^(?:0|[1-9][0-9]*)(?:\\.(?:0|[1-9][0-9]*))*$", "description": "A string representation of a DC/OS Release Version" }, "url": { "type": "string", "allOf": [ { "format": "uri" }, { "pattern": "^https?://" } ] }, "v20Package": { "properties": { "packagingVersion": { "type": "string", "enum": [ "2.0" ], "description": "The version of the packaging format. Please do not use this version. It is only here for backwards compatibility. We recommend you use the latest version." }, "name": { "type": "string", "pattern": "^[a-z][a-z0-9-]*[a-z0-9]$", "description": "The name of the package." }, "version": { "type": "string", "description": "The version of the package. We recommend that you use semantic versions. See http://semver.org/ for more details on semantic versions." }, "scm": { "type": "string", "description": "Source control management. This is generally the URL of the project GitHub repository." }, "maintainer": { "type": "string", "description": "The maintainer of the package. This is generally an email address." }, "website": { "type": "string", "description": "URL to the website of a project. This is generally the URL of the project GitHub repository." }, "description": { "type": "string", "description": "Detailed description of what the package does." }, "framework": { "type": "boolean", "default": false, "description": "True if this package installs a new Mesos framework." }, "preInstallNotes": { "type": "string", "description": "Pre installation notes that would be useful to the user of this package." }, "postInstallNotes": { "type": "string", "description": "Post installation notes that would be useful to the user of this package." }, "postUninstallNotes": { "type": "string", "description": "Post uninstallation notes that would be useful to the user of this package." }, "tags": { "type": "array", "items": { "type": "string", "pattern": "^[^\\s]+$" }, "description": "A list of keywords associated with the package." }, "selected": { "type": "boolean", "description": "Flag indicating if the package is selected in search results", "default": false }, "licenses": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the license. For example one of [Apache License Version 2.0 | MIT License | BSD License | Proprietary]" }, "url": { "$ref": "#/definitions/url", "description": "The URL where the license can be accessed" } }, "additionalProperties": false, "required": [ "name", "url" ] } } }, "required": [ "packagingVersion", "name", "version", "maintainer", "description", "tags" ], "additionalProperties": false }, "v30Package": { "properties": { "packagingVersion": { "type": "string", "enum": [ "3.0" ], "description": "The version of the packaging format." }, "name": { "type": "string", "pattern": "^[a-z][a-z0-9-]*[a-z0-9]$", "description": "The name of the package." }, "version": { "type": "string", "pattern": "^[-a-zA-Z0-9.]+$", "description": "The version of the package. We recommend that you use semantic versions. See http://semver.org/ for details on semantic versions." }, "scm": { "type": "string", "description": "Source control management. This is generally the URL of the project GitHub repository." }, "maintainer": { "type": "string", "description": "The maintainer of the package. This is generally an email address." }, "website": { "type": "string", "description": "URL to the website of a project. This is generally the URL of the project GitHub repository." }, "description": { "type": "string", "description": "Detailed description of what the package does." }, "framework": { "type": "boolean", "default": false, "description": "True if this package installs a new Mesos framework." }, "preInstallNotes": { "type": "string", "description": "Pre installation notes that would be useful to the user of this package." }, "postInstallNotes": { "type": "string", "description": "Post installation notes that would be useful to the user of this package." }, "postUninstallNotes": { "type": "string", "description": "Post uninstallation notes that would be useful to the user of this package." }, "tags": { "type": "array", "items": { "type": "string", "pattern": "^[^\\s]+$" }, "description": "A list of keywords associated with the package." }, "selected": { "type": "boolean", "description": "Flag indicating if the package is selected in search results", "default": false }, "licenses": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the license. For example one of [Apache License Version 2.0 | MIT License | BSD License | Proprietary]" }, "url": { "$ref": "#/definitions/url", "description": "The URL where the license can be accessed" } }, "additionalProperties": false, "required": [ "name", "url" ] } }, "minDcosReleaseVersion": { "$ref": "#/definitions/dcosReleaseVersion", "description": "The minimum DC/OS Release Version the package can run on." } }, "required": [ "packagingVersion", "name", "version", "maintainer", "description", "tags" ], "additionalProperties": false }, "v40Package": { "properties": { "packagingVersion": { "type": "string", "enum": [ "4.0" ], "description": "The version of the packaging format." }, "name": { "type": "string", "pattern": "^[a-z][a-z0-9-]*[a-z0-9]$", "description": "The name of the package." }, "version": { "type": "string", "pattern": "^[-a-zA-Z0-9.]+$", "description": "The version of the package. We recommend that you use semantic versions. See http://semver.org/ for details on semantic versions." }, "scm": { "type": "string", "description": "Source control management. This is generally the URL of the project GitHub repository." }, "maintainer": { "type": "string", "description": "The maintainer of the package. This is generally an email address." }, "website": { "type": "string", "description": "URL to the website of a project. This is generally the URL of the project GitHub repository." }, "description": { "type": "string", "description": "Detailed description of what the package does." }, "framework": { "type": "boolean", "default": false, "description": "True if this package installs a new Mesos framework." }, "upgradesFrom": { "type": "array", "items": { "type": "string" }, "description": "List of versions that can upgrade to this package. If the property is a list containing the string '*', any version can upgrade to this package. If the property is not set or the empty list, no version can upgrade to this package." }, "downgradesTo": { "type": "array", "items": { "type": "string" }, "description": "List of versions that this package can downgrade to. If the property is a list containing the string '*', this package can downgrade to any version. If the property is not set or the empty list, this package cannot downgrade." }, "preInstallNotes": { "type": "string", "description": "Pre installation notes that would be useful to the user of this package." }, "postInstallNotes": { "type": "string", "description": "Post installation notes that would be useful to the user of this package." }, "postUninstallNotes": { "type": "string", "description": "Post uninstallation notes that would be useful to the user of this package." }, "tags": { "type": "array", "items": { "type": "string", "pattern": "^[^\\s]+$", "description": "A list of keywords associated with the package." } }, "selected": { "type": "boolean", "description": "Flag indicating if the package is selected in search results", "default": false }, "licenses": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the license. For example one of [Apache License Version 2.0 | MIT License | BSD License | Proprietary]" }, "url": { "$ref": "#/definitions/url", "description": "The URL where the license can be accessed" } }, "additionalProperties": false, "required": [ "name", "url" ] } }, "minDcosReleaseVersion": { "$ref": "#/definitions/dcosReleaseVersion", "description": "The minimum DC/OS Release Version the package can run on." } }, "required": [ "packagingVersion", "name", "version", "maintainer", "description", "tags" ], "additionalProperties": false } }, "type": "object", "oneOf": [ { "$ref": "#/definitions/v20Package" }, { "$ref": "#/definitions/v30Package" }, { "$ref": "#/definitions/v40Package" } ] }
o90607
{ "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_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_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_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_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_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_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "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", "null" ] } }, "required": [ "type" ], "type": "object" }
kb_553_Normalized
{ "title": "Invocation manifest for ROI to NIfTI", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "save_binary_masks": { "default": true, "type": "boolean" }, "save_combined_output": { "default": false, "type": "boolean" }, "save_slicer_color_table": { "default": false, "type": "boolean" } }, "required": [ "save_binary_masks", "save_combined_output", "save_slicer_color_table" ] }, "inputs": { "type": "object", "properties": { "api-key": { "type": "object" }, "Input_File": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } }, "required": [ "api-key", "Input_File" ] } }, "required": [ "config", "inputs" ] }
o41351
{ "properties": { "down_payment": { "description": "The down payment amount for the loan", "type": "number" }, "interest_rate": { "description": "The annual interest rate for the loan", "type": "number" }, "loan_amount": { "description": "The total amount of the loan", "type": "number" }, "loan_term": { "description": "The duration of the loan in years", "type": "integer" } }, "required": [ "loan_amount", "interest_rate", "loan_term", "down_payment" ], "type": "object" }
calculate_mortgage_payment_072de698
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "api_key" ], "type": "object", "properties": { "api_key": { "type": "object", "properties": {} } } }, "config": { "required": [ "freesurfer" ], "type": "object", "properties": { "freesurfer": { "default": true, "type": "boolean" } } } }, "title": "Invocation manifest for fMRIPREP: A Robust Preprocessing Pipeline for fMRI Data (1.0.0-rc5)" }
o41266
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/kubeDns.json", "$$target": "kubeDns.json", "title": "Kubernetes DNS Configurations", "description": "Describes the configuration of DNS for the Kubernetes cluster.", "properties": { "cluster_ip": { "description": "This should be the same as the IP set in the deployment.clusters[x].dns in the main configuration file.", "type": "string" }, "dns_domain": { "description": "This should be the same as the domain set in deployment.clusters[x].domain in the main configuration file.", "type": "string" }, "namespace": { "description": "Kubernetes is expecting DNS to be in kube-system.", "type": "string" } }, "required": [ "cluster_ip", "dns_domain" ], "additionalProperties": false, "type": "object" }
o90402
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "twoFactorAuthKey": { "type": "string", "minLength": 52, "maxLength": 52 }, "password": { "type": "string", "minLength": 8, "maxLength": 2048 } }, "required": [ "password", "twoFactorAuthKey" ], "additionalProperties": false }
o9858
{ "properties": { "include_lowercase": { "description": "Include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Include numbers in the password", "type": "boolean" }, "include_special_chars": { "description": "Include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_2f4ccac6
{ "optional": true, "properties": { "comment": { "type": "string" }, "eTag": { "type": "string" }, "expires": { "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?", "type": "string" }, "hitCount": { "type": "integer" }, "lastAccess": { "pattern": "^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?", "type": "string" } }, "required": [ "lastAccess", "eTag", "hitCount" ], "type": "object" }
o90437
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": [ "object", "null" ] } }, "type": "object" }
kb_655_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "properties": { "last_update": { "_format": "date-time", "type": "string" }, "name": { "pattern": "^[^/]+$", "type": "string" }, "urls": { "format": "urls", "type": "object" } }, "required": [ "urls", "name", "last_update" ], "type": "object" }
o63377
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "step_by_step_nav" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "pages_part_of_step_nav": { "description": "A list of content that should be navigable via this step by step journey", "$ref": "#/definitions/guid_list" }, "pages_related_to_step_nav": { "description": "A list of content that is related to this step by step navigation journey", "$ref": "#/definitions/guid_list" }, "pages_secondary_to_step_nav": { "description": "A list of content items that may be a part of but not essential to completing this step by step navigation journey.", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "step_by_step_nav" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "required": [ "step_by_step_nav" ], "additionalProperties": false, "properties": { "step_by_step_nav": { "$ref": "#/definitions/step_by_step_nav" } } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "individual_step": { "type": "object", "required": [ "title", "contents" ], "additionalProperties": false, "properties": { "contents": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/step_item_paragraph" }, { "$ref": "#/definitions/step_item_list" } ] } }, "logic": { "type": "string", "enum": [ "and", "or" ] }, "title": { "type": "string" } } }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "step_by_step_nav": { "type": "object", "required": [ "title", "introduction", "steps" ], "additionalProperties": false, "properties": { "introduction": { "$ref": "#/definitions/body_html_and_govspeak" }, "steps": { "type": "array", "items": { "$ref": "#/definitions/individual_step" } }, "title": { "type": "string" } } }, "step_item_list": { "type": "object", "required": [ "type", "contents" ], "additionalProperties": false, "properties": { "contents": { "type": "array", "items": { "type": "object", "required": [ "text" ], "additionalProperties": false, "properties": { "context": { "type": "string" }, "href": { "type": "string", "format": "uri" }, "text": { "type": "string" } } } }, "style": { "type": "string", "enum": [ "choice", "required", "optional" ] }, "type": { "type": "string" } } }, "step_item_paragraph": { "type": "object", "required": [ "type", "text" ], "additionalProperties": false, "properties": { "text": { "type": "string" }, "type": { "type": "string" } } }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21394
{ "properties": { "dimensions": { "oneOf": [ { "required": [ "length", "width" ] }, { "required": [ "radius" ] } ], "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of geometric shape", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_87069d3b
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "experienceViewId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "createdById": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "createdByType": { "type": "string", "enum": [ "flow", "user", "apiToken" ] }, "lastUpdatedById": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "lastUpdatedByType": { "type": "string", "enum": [ "flow", "user", "apiToken" ] }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "viewType": { "type": "string", "enum": [ "layout", "page", "component" ] }, "layoutId": { "type": [ "string", "null" ], "pattern": "^[A-Fa-f\\d]{24}$" }, "layoutName": { "type": "string", "minLength": 1, "maxLength": 255 }, "body": { "type": "string", "maxLength": 131072, "minLength": 1 }, "viewTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false } } }
o9895
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "experienceUserIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "experienceEndpointIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "groupTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "deviceQueryJson": { "type": [ "string", "null" ], "maxLength": 8192 }, "parentId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "null" } ] } }, "additionalProperties": false }
o9879
{ "$schema": "http://json-schema.org/draft-04/schema#", "$id": "https://github.com/abstracta/jmeter-java-dsl/jmeter-java-dsl-cli/config-schema.json", "title": "cli configuration", "description": "Defines configuration to be used with cli", "type": "object", "properties": { "recorder": { "title": "recorder command configuration", "type": "object", "properties": { "url": { "description": "Initial URL to start recording from", "examples": [ "http://myservice.com" ], "type": "string" }, "workdir": { "description": "Directory where logs (eg: jtl files) and other relevant data is stored", "type": "string", "default": "recording" }, "urlIncludes": { "description": "Regular expressions used to only record requests with matching URLs.\nNOTE: Don't include scheme (e.g: http://) in regex", "examples": [ "[^?]*mysite.com.*" ], "type": "array", "items": { "type": "string" } }, "urlExcludes": { "description": "Regular expressions used to NOT record requests with matching URLs.\nNOTE: Don't include scheme (e.g: http://) in regex", "examples": [ ".*google.com.*" ], "type": "array", "items": { "type": "string" } }, "urlIgnoreDefaultFilter": { "description": "Specifies to use or not the default URL filter. The default filter ignores URLs matching: (?i).*\\.(bmp|css|js|gif|ico|jpe?g|png|svg|swf|ttf|woff2?|webp)(\\?.*)?", "type": "boolean", "default": false }, "logFilteredRequests": { "description": "Specifies to include in generated JTL file, filtered and not recorded requests or not.", "type": "boolean", "default": false }, "headerExcludes": { "description": "Regular expressions used to ignore matching headers from recording", "examples": [ "(?i)sec-.*" ], "type": "array", "items": { "type": "string" } }, "headerIgnoreDefaultFilter": { "description": "Specifies to use or not the default headers filter. The default filter ignores these headers: Accept-Language,Upgrade-Insecure-Requests,Accept-Encoding,User-Agent,Accept,Referer,Origin,X-Requested-With,Cache-Control", "type": "boolean", "default": false }, "correlations": { "description": "Specifies list of correlation rules between requests and previous responses, avoiding fixed and brittle recorded test plans", "type": "array", "items": { "title": "correlation", "type": "object", "properties": { "variable": { "description": "Name of the variable used to store a value extracted from a response and to be used in a following request", "examples": [ "productId" ], "type": "string" }, "extractor": { "description": "Defines regular expression and, optionally, other parameters which define how to extract values from responses (or even requests), to be used in following requests", "oneOf": [ { "description": "Regular expression where the first capturing group defines the extracted value, while the rest is used for context matching", "type": "string", "examples": [ "name=\"productId\" value=\"([^\"]+)\"" ] }, { "type": "object", "properties": { "regex": { "description": "Regular expression where the first capturing group defines the extracted value, while the rest is used for context matching", "type": "string", "examples": [ "name=\"productId\" value=\"([^\"]+)\"" ] }, "target": { "description": "Specifies sample result property to apply the extractor to.\nFor details on available options check: https://javadoc.io/static/us.abstracta.jmeter/jmeter-java-dsl/1.8/us/abstracta/jmeter/javadsl/core/postprocessors/DslRegexExtractor.TargetField.html#enum.constant.summary", "type": "string", "enum": [ "RESPONSE_BODY", "RESPONSE_HEADERS", "REQUEST_URL", "REQUEST_HEADERS", "RESPONSE_BODY_UNESCAPED", "RESPONSE_BODY_AS_A_DOCUMENT", "RESPONSE_CODE", "RESPONSE_MESSAGE" ], "default": "RESPONSE_BODY" } }, "required": ["regex"] } ] }, "replacement": { "description": "Regular expression used to replace in requests previously extracted values. The first capturing group defines the place where the extracted value should appear (and replaced by variable reference), while the rest of the regex is used for context matching", "examples": [ "productId=(.*)" ], "type": "string" } }, "additionalProperties": false } } }, "additionalProperties": false } }, "additionalProperties": false }
jmdsl-config-schema
{ "definitions": { "negativeInteger": { "maximum": -1, "type": "integer" }, "nonEmptyString": { "minLength": 1, "type": "string" }, "positiveInteger": { "minimum": 1, "type": "integer" } }, "type": "object", "properties": { "negativeInteger": { "$ref": "#/definitions/negativeInteger" }, "nonEmptyString": { "$ref": "#/definitions/nonEmptyString" }, "positiveInteger": { "$ref": "#/definitions/positiveInteger" } }, "required": [ "negativeInteger", "nonEmptyString", "positiveInteger" ] }
o76583
{ "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 type of shape (e.g., circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_55c69db1
{ "$schema": "http://json-schema.org/draft-04/schema#", "message": { "sub-id": { "type": "string", "pattern": "[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}" }, "topic": { "type": "string", "pattern": "^/[a-z\\-]+$" }, "since": { "type": "number" }, "snapshot": { "type": "boolean" }, "filter": { "type": "string", "maxLength": 137, "pattern": "^[\\w\\-\\.#@\\*\\[\\]\\?]+$" } }, "properties": { "message.sub-id": { "$ref": "#/message/sub-id" }, "message.topic": { "$ref": "#/message/topic" }, "message.since": { "$ref": "#/message/since" }, "message.snapshot": { "$ref": "#/message/snapshot" }, "message.filter": { "$ref": "#/message/filter" } }, "required": [ "message.sub-id", "message.topic", "message.since", "message.snapshot", "message.filter" ] }
o29013
{ "properties": { "include_lowercase": { "description": "Whether to include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Whether to include numbers in the password", "type": "boolean" }, "include_special_characters": { "description": "Whether to include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Whether to include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length", "include_uppercase", "include_lowercase", "include_numbers", "include_special_characters" ], "type": "object" }
generate_random_password_28e0a484
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "traits_trait_canonical_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.", "title": "Canonical URL", "type": "string" }, "traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "traits_trait_owner_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)", "type": "string" }, "sponsored": { "description": "True if this content is advertorial or native advertising.", "type": "boolean" } }, "title": "Owner information ", "type": "object" }, "traits_trait_revision_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "branch": { "description": "The name of the branch this revision was created on.", "type": "string" }, "editions": { "description": "A list of identifiers of editions that point to this revision.", "items": { "type": "string" }, "type": "array" }, "parent_id": { "description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.", "type": "string" }, "published": { "description": "Whether or not this revision's parent story is published, in any form or place", "type": "boolean" }, "revision_id": { "description": "The unique id of this revision.", "type": "string" }, "user_id": { "description": "The unique user id of the person who created this revision.", "type": "string" } }, "title": "Revision", "type": "object" }, "traits_trait_version_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.", "enum": [ "0.10.9" ], "title": "Describes the ANS version of this object", "type": "string" } }, "description": "A redirect to another story.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "canonical_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "owner": { "$ref": "#/definitions/traits_trait_owner_json" }, "redirect_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "revision": { "$ref": "#/definitions/traits_trait_revision_json" }, "type": { "enum": [ "redirect" ], "type": "string" }, "version": { "$ref": "#/definitions/traits_trait_version_json" } }, "required": [ "type", "version", "canonical_url", "redirect_url" ], "title": "A redirect object.", "type": "object" }
wp_13_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "anatomical" ], "type": "object", "properties": { "anatomical": { "type": "object", "properties": { "type": { "enum": [ "nifti", "mgh", "dicom" ] } } } } }, "config": { "required": [ "output_mgh", "output_nifti" ], "type": "object", "properties": { "output_mgh": { "default": false, "type": "boolean" }, "output_nifti": { "default": true, "type": "boolean" } } } }, "title": "Invocation manifest for FreeSurfer: MBIRN Defacer for structural MRI (mri-deface v1.22)" }
o41328
{ "properties": { "down_payment": { "description": "The down payment amount (optional)", "type": "number" }, "interest_rate": { "description": "The annual interest rate", "type": "number" }, "loan_amount": { "description": "The amount of the mortgage loan", "type": "number" }, "loan_term": { "description": "The duration of the mortgage loan in years", "type": "integer" } }, "required": [ "loan_amount", "interest_rate", "loan_term" ], "type": "object" }
calculate_mortgage_payment_13c9494e
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.5.8/utils/video_stream.json", "title": "A stream of video.", "description": "Configuration for a piece of video content, over a stream.", "type": "object", "properties": { "height": { "description": "The height of the video.", "type": "number" }, "width": { "description": "The width of the video.", "type": "number" }, "filesize": { "description": "The size of the video, in bytes.", "type": "number" }, "audio_codec": { "description": "The audio codec.", "type": "string" }, "video_codec": { "description": "The video codec.", "type": "string" }, "stream_type": { "description": "The type of video (e.g. mp4).", "type": "string" }, "url": { "type": "string" }, "bitrate": { "description": "The bitrate of the video", "type": "number" }, "provider": { "description": "The provider of the video.", "type": "string" } } }
o86643
{ "definitions": { "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_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_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" } }, "description": "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" }
kb_347_Normalized
{ "properties": { "openldap-admin": { "description": "OpenLDAP Admin service configuration properties", "properties": { "cpus": { "default": 0.1, "description": "CPU shares to allocate to each OpenLDAP node.", "minimum": 0.1, "type": "number" }, "ldap_host": { "default": "openldap", "description": "The name of the OpenLDAP instance to connect to.", "type": "string" }, "ldap_host_port": { "default": 389, "description": "The port where the OpenLDAP server is listening on. Defaults to 389", "type": "number" }, "mem": { "default": 128.0, "description": "Memory to allocate to each OpenLDAP node.", "minimum": 128.0, "type": "number" }, "name": { "default": "openldap-admin", "description": "Package name.", "type": "string" }, "port": { "default": 11389, "description": "Port number to be used for external clear web traffic", "type": "number" }, "version": { "default": "1.2.2", "description": "Package version.", "type": "string" }, "virtual_host": { "default": "phpldapadmin.example.org", "description": "Virtual host to be used to publish the UI", "type": "string" } }, "required": [ "cpus", "mem" ], "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "name": { "default": "openldap-admin", "description": "The name of the OpenLDAP Admin service instance", "type": "string" } }, "type": "object" } } }
o90802
{ "additionalProperties": false, "description": "Bad row caused by internal error (such as unhandled exception), least structured bad row", "properties": { "failure": { "description": "Error message, either human-readable or stacktrace", "type": "string" }, "payload": { "additionalProperties": false, "description": "The enriched event that resulted in a storage loader failure", "properties": { "app_id": { "maxLength": 255, "type": [ "string", "null" ] }, "base_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "br_colordepth": { "maxLength": 12, "type": [ "string", "null" ] }, "br_cookies": { "type": [ "boolean", "null" ] }, "br_family": { "maxLength": 50, "type": [ "string", "null" ] }, "br_features_director": { "type": [ "boolean", "null" ] }, "br_features_flash": { "type": [ "boolean", "null" ] }, "br_features_gears": { "type": [ "boolean", "null" ] }, "br_features_java": { "type": [ "boolean", "null" ] }, "br_features_pdf": { "type": [ "boolean", "null" ] }, "br_features_quicktime": { "type": [ "boolean", "null" ] }, "br_features_realplayer": { "type": [ "boolean", "null" ] }, "br_features_silverlight": { "type": [ "boolean", "null" ] }, "br_features_windowsmedia": { "type": [ "boolean", "null" ] }, "br_lang": { "maxLength": 255, "type": [ "string", "null" ] }, "br_name": { "maxLength": 50, "type": [ "string", "null" ] }, "br_renderengine": { "maxLength": 50, "type": [ "string", "null" ] }, "br_type": { "maxLength": 50, "type": [ "string", "null" ] }, "br_version": { "maxLength": 50, "type": [ "string", "null" ] }, "br_viewheight": { "type": [ "integer", "null" ] }, "br_viewwidth": { "type": [ "integer", "null" ] }, "collector_tstamp": { "_format": "date-time", "type": "string" }, "contexts": { "type": [ "object", "null" ] }, "derived_contexts": { "type": [ "object", "null" ] }, "derived_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "doc_charset": { "maxLength": 128, "type": [ "string", "null" ] }, "doc_height": { "type": [ "integer", "null" ] }, "doc_width": { "type": [ "integer", "null" ] }, "domain_sessionid": { "maxLength": 128, "type": [ "string", "null" ] }, "domain_sessionidx": { "type": [ "integer", "null" ] }, "domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "dvce_created_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_ismobile": { "type": [ "boolean", "null" ] }, "dvce_screenheight": { "type": [ "integer", "null" ] }, "dvce_screenwidth": { "type": [ "integer", "null" ] }, "dvce_sent_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "dvce_type": { "maxLength": 50, "type": [ "string", "null" ] }, "etl_tags": { "maxLength": 500, "type": [ "string", "null" ] }, "etl_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "event": { "maxLength": 128, "type": [ "string", "null" ] }, "event_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "event_format": { "maxLength": 128, "type": [ "string", "null" ] }, "event_id": { "maxLength": 36, "type": "string" }, "event_name": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_vendor": { "maxLength": 1000, "type": [ "string", "null" ] }, "event_version": { "maxLength": 128, "type": [ "string", "null" ] }, "geo_city": { "maxLength": 75, "type": [ "string", "null" ] }, "geo_country": { "maxLength": 2, "type": [ "string", "null" ] }, "geo_latitude": { "type": [ "number", "null" ] }, "geo_longitude": { "type": [ "number", "null" ] }, "geo_region": { "maxLength": 3, "type": [ "string", "null" ] }, "geo_region_name": { "maxLength": 100, "type": [ "string", "null" ] }, "geo_timezone": { "maxLength": 64, "type": [ "string", "null" ] }, "geo_zipcode": { "maxLength": 15, "type": [ "string", "null" ] }, "ip_domain": { "maxLength": 128, "type": [ "string", "null" ] }, "ip_isp": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_netspeed": { "maxLength": 100, "type": [ "string", "null" ] }, "ip_organization": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_campaign": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_clickid": { "maxLength": 128, "type": [ "string", "null" ] }, "mkt_content": { "maxLength": 500, "type": [ "string", "null" ] }, "mkt_medium": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_network": { "maxLength": 64, "type": [ "string", "null" ] }, "mkt_source": { "maxLength": 255, "type": [ "string", "null" ] }, "mkt_term": { "maxLength": 255, "type": [ "string", "null" ] }, "name_tracker": { "maxLength": 128, "type": [ "string", "null" ] }, "network_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "os_family": { "maxLength": 50, "type": [ "string", "null" ] }, "os_manufacturer": { "maxLength": 50, "type": [ "string", "null" ] }, "os_name": { "maxLength": 50, "type": [ "string", "null" ] }, "os_timezone": { "maxLength": 255, "type": [ "string", "null" ] }, "page_referrer": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_title": { "maxLength": 2000, "type": [ "string", "null" ] }, "page_url": { "maxLength": 4096, "type": [ "string", "null" ] }, "page_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "page_urlpath": { "maxLength": 3000, "type": [ "string", "null" ] }, "page_urlport": { "type": [ "integer", "null" ] }, "page_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "page_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "platform": { "maxLength": 255, "type": [ "string", "null" ] }, "pp_xoffset_max": { "type": [ "integer", "null" ] }, "pp_xoffset_min": { "type": [ "integer", "null" ] }, "pp_yoffset_max": { "type": [ "integer", "null" ] }, "pp_yoffset_min": { "type": [ "integer", "null" ] }, "refr_domain_userid": { "maxLength": 128, "type": [ "string", "null" ] }, "refr_dvce_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "refr_medium": { "maxLength": 25, "type": [ "string", "null" ] }, "refr_source": { "maxLength": 50, "type": [ "string", "null" ] }, "refr_term": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlfragment": { "maxLength": 3000, "type": [ "string", "null" ] }, "refr_urlhost": { "maxLength": 255, "type": [ "string", "null" ] }, "refr_urlpath": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlport": { "type": [ "integer", "null" ] }, "refr_urlquery": { "maxLength": 6000, "type": [ "string", "null" ] }, "refr_urlscheme": { "maxLength": 16, "type": [ "string", "null" ] }, "se_action": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_category": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_label": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_property": { "maxLength": 1000, "type": [ "string", "null" ] }, "se_value": { "type": [ "number", "null" ] }, "ti_category": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "ti_name": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "ti_price": { "type": [ "number", "null" ] }, "ti_price_base": { "type": [ "number", "null" ] }, "ti_quantity": { "type": [ "integer", "null" ] }, "ti_sku": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_affiliation": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_city": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_country": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_currency": { "maxLength": 3, "type": [ "string", "null" ] }, "tr_orderid": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_shipping": { "type": [ "number", "null" ] }, "tr_shipping_base": { "type": [ "number", "null" ] }, "tr_state": { "maxLength": 255, "type": [ "string", "null" ] }, "tr_tax": { "type": [ "number", "null" ] }, "tr_tax_base": { "type": [ "number", "null" ] }, "tr_total": { "type": [ "number", "null" ] }, "tr_total_base": { "type": [ "number", "null" ] }, "true_tstamp": { "_format": "date-time", "type": [ "string", "null" ] }, "txn_id": { "type": [ "integer", "null" ] }, "unstruct_event": { "type": [ "object", "null" ] }, "user_fingerprint": { "maxLength": 128, "type": [ "string", "null" ] }, "user_id": { "maxLength": 255, "type": [ "string", "null" ] }, "user_ipaddress": { "maxLength": 128, "type": [ "string", "null" ] }, "useragent": { "maxLength": 1000, "type": [ "string", "null" ] }, "v_collector": { "maxLength": 100, "type": "string" }, "v_etl": { "maxLength": 100, "type": "string" }, "v_tracker": { "maxLength": 100, "type": [ "string", "null" ] } }, "type": "object" }, "processor": { "additionalProperties": false, "description": "Information about the piece of software responsible for the creation of enrichment failures", "properties": { "artifact": { "description": "Artifact responsible for the creation of enrichment failures", "maxLength": 512, "type": "string" }, "version": { "description": "Version of the artifact responsible for the creation of enrichment failures", "maxLength": 32, "pattern": "^(\\d+\\.\\d+\\.\\d+.*)$", "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" } }, "required": [ "payload", "failure" ], "self": { "format": "jsonschema", "name": "loader_runtime_error", "vendor": "com.snowplowanalytics.snowplow.badrows", "version": "1-0-1" }, "type": "object" }
sp_339_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Some common definitions", "type": "object", "definitions": { "id": { "description": "Unique identifier.", "readOnly": true, "format": "uuid", "example": "01234567-89ab-cdef-0123-456789abcdef", "type": "string", "minLength": 1 }, "created_at": { "description": "Creation time.", "example": "2014-07-25T19:14:29.503Z", "format": "date-time", "readOnly": true, "type": "string" }, "updated_at": { "description": "Update date-time.", "example": "2014-07-25T19:14:29.503Z", "format": "date-time", "readOnly": false, "type": "string" }, "email": { "description": "Email", "format": "email", "readOnly": false, "type": "string", "minLength": 1 }, "password": { "description": "password", "readOnly": false, "type": "string", "minLength": 1 } }, "properties": { "id": { "$ref": "#/definitions/id" }, "created_at": { "$ref": "#/definitions/created_at" }, "updated_at": { "$ref": "#/definitions/updated_at" }, "email": { "$ref": "#/definitions/email" }, "password": { "$ref": "#/definitions/password" } }, "required": [ "id", "created_at", "updated_at", "email", "password" ] }
o27028
{ "title": "lighting", "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "description": "Object containing information on how the scene is lit.", "properties": { "datetime": { "type": "number", "description": "The current date and time of the simulated sun. It is a number representing the number of milliseconds since 1 January, 1970 UTC." }, "directShadows": { "type": "boolean", "description": "Indicates whether to show shadows cast by the sun.", "default": false }, "displayUTCOffset": { "type": "number", "description": "UTC offset in decimal hours. Not to be applied to datetime for sun position, only to adjust display of datetime in UI. If displayUTCOffset is null, offset is calculated for the current location (approximate only)." } }, "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "lighting", "code": { "lighting": { "datetime": 1458054000000, "directShadows": true, "displayUTCOffset": 1 } } } ] } }
o90230
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://mcda.drugis.org/dataSource.json#", "title": "MCDA problem schema", "description": "MCDA dataSource schema for uploaded JSON", "type": "object", "required": [ "id", "unitOfMeasurement", "scale" ], "additionalProperties": false, "properties": { "id": { "description": "identifier of the data source", "type": "string" }, "unitOfMeasurement": { "type": "object", "required": [ "type", "label" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "custom", "percentage", "decimal" ] }, "label": { "type": "string" } } }, "source": { "description": "Where the data comes from", "type": "string" }, "sourceLink": { "description": "Link to the source", "type": "string" }, "strengthOfEvidence": { "description": "Strengths of the data", "type": "string" }, "uncertainties": { "description": "Uncertainties about the data", "type": "string" }, "scale": { "description": "The minimum and maximum values the data can have", "type": "array", "minItems": 2, "maxItems": 2, "items": { "oneOf": [ { "type": "number" }, { "type": "null" } ] } }, "pvf": { "oneOf": [ { "description": "The partial value function", "type": "object", "required": [ "direction", "type", "range" ], "additionalProperties": false, "properties": { "direction": { "type": "string", "enum": [ "increasing", "decreasing" ] }, "type": { "type": "string", "enum": [ "linear", "piecewise-linear" ] }, "range": { "type": "array", "minItems": 2, "maxItems": 2, "items": { "type": "number" } }, "values": { "type": "array", "minItems": 3, "maxItems": 3, "items": { "type": "number" } }, "cutoffs": { "type": "array", "minItems": 3, "maxItems": 3, "items": { "type": "number" } } } }, { "type": "null" } ] } } }
o37086
{ "properties": { "order_details": { "properties": { "items": { "items": { "properties": { "price": { "description": "The price of the product", "type": "number" }, "product_name": { "description": "The name of the product", "type": "string" }, "quantity": { "description": "The quantity of the product", "type": "integer" } }, "required": [ "product_name", "quantity", "price" ], "type": "object" }, "type": "array" }, "order_number": { "description": "The order number", "type": "string" } }, "required": [ "order_number", "items" ], "type": "object" } }, "required": [ "order_details" ], "type": "object" }
generate_invoice_f07e2f90
{ "additionalProperties": false, "definitions": { "config": { "additionalProperties": false, "id": "#/definitions/config", "patternProperties": { "^x-": {} }, "properties": { "external": { "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "file": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": "object" }, "constraints": { "service": { "anyOf": [ { "required": [ "build" ] }, { "required": [ "image" ] } ], "id": "#/definitions/constraints/service", "properties": { "build": { "required": [ "context" ] } } } }, "deployment": { "additionalProperties": false, "id": "#/definitions/deployment", "properties": { "endpoint_mode": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "mode": { "type": "string" }, "placement": { "additionalProperties": false, "properties": { "constraints": { "items": { "type": "string" }, "type": "array" }, "preferences": { "items": { "additionalProperties": false, "properties": { "spread": { "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "replicas": { "type": "integer" }, "resources": { "additionalProperties": false, "properties": { "limits": { "additionalProperties": false, "properties": { "cpus": { "type": "string" }, "memory": { "type": "string" } }, "type": "object" }, "reservations": { "additionalProperties": false, "properties": { "cpus": { "type": "string" }, "generic_resources": { "$ref": "#/definitions/generic_resources" }, "memory": { "type": "string" } }, "type": "object" } }, "type": "object" }, "restart_policy": { "additionalProperties": false, "properties": { "condition": { "type": "string" }, "delay": { "_format": "duration", "type": "string" }, "max_attempts": { "type": "integer" }, "window": { "_format": "duration", "type": "string" } }, "type": "object" }, "rollback_config": { "additionalProperties": false, "properties": { "delay": { "_format": "duration", "type": "string" }, "failure_action": { "type": "string" }, "max_failure_ratio": { "type": "number" }, "monitor": { "_format": "duration", "type": "string" }, "order": { "enum": [ "start-first", "stop-first" ], "type": "string" }, "parallelism": { "type": "integer" } }, "type": "object" }, "update_config": { "additionalProperties": false, "properties": { "delay": { "_format": "duration", "type": "string" }, "failure_action": { "type": "string" }, "max_failure_ratio": { "type": "number" }, "monitor": { "_format": "duration", "type": "string" }, "order": { "enum": [ "start-first", "stop-first" ], "type": "string" }, "parallelism": { "type": "integer" } }, "type": "object" } }, "type": [ "object", "null" ] }, "generic_resources": { "id": "#/definitions/generic_resources", "items": { "additionalProperties": false, "properties": { "discrete_resource_spec": { "additionalProperties": false, "properties": { "kind": { "type": "string" }, "value": { "type": "number" } }, "type": "object" } }, "type": "object" }, "type": "array" }, "healthcheck": { "additionalProperties": false, "id": "#/definitions/healthcheck", "properties": { "disable": { "type": "boolean" }, "interval": { "_format": "duration", "type": "string" }, "retries": { "type": "number" }, "start_period": { "_format": "duration", "type": "string" }, "test": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "timeout": { "_format": "duration", "type": "string" } }, "type": "object" }, "list_of_strings": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "list_or_dict": { "oneOf": [ { "additionalProperties": false, "patternProperties": { ".+": { "type": [ "string", "number", "null" ] } }, "type": "object" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "network": { "additionalProperties": false, "id": "#/definitions/network", "patternProperties": { "^x-": {} }, "properties": { "attachable": { "type": "boolean" }, "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "internal": { "type": "boolean" }, "ipam": { "additionalProperties": false, "properties": { "config": { "items": { "additionalProperties": false, "properties": { "subnet": { "type": "string" } }, "type": "object" }, "type": "array" }, "driver": { "type": "string" } }, "type": "object" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": [ "object", "null" ] }, "secret": { "additionalProperties": false, "id": "#/definitions/secret", "patternProperties": { "^x-": {} }, "properties": { "external": { "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "file": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": "object" }, "service": { "additionalProperties": false, "id": "#/definitions/service", "patternProperties": { "^x-": {} }, "properties": { "build": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "args": { "$ref": "#/definitions/list_or_dict" }, "cache_from": { "$ref": "#/definitions/list_of_strings" }, "context": { "type": "string" }, "dockerfile": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "network": { "type": "string" }, "shm_size": { "type": [ "integer", "string" ] }, "target": { "type": "string" } }, "type": "object" } ] }, "cap_add": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cap_drop": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "cgroup_parent": { "type": "string" }, "command": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "configs": { "items": { "oneOf": [ { "type": "string" }, { "properties": { "gid": { "type": "string" }, "mode": { "type": "number" }, "source": { "type": "string" }, "target": { "type": "string" }, "uid": { "type": "string" } }, "type": "object" } ] }, "type": "array" }, "container_name": { "type": "string" }, "credential_spec": { "additionalProperties": false, "properties": { "file": { "type": "string" }, "registry": { "type": "string" } }, "type": "object" }, "depends_on": { "$ref": "#/definitions/list_of_strings" }, "deploy": { "$ref": "#/definitions/deployment" }, "devices": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "dns": { "$ref": "#/definitions/string_or_list" }, "dns_search": { "$ref": "#/definitions/string_or_list" }, "domainname": { "type": "string" }, "entrypoint": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "env_file": { "$ref": "#/definitions/string_or_list" }, "environment": { "$ref": "#/definitions/list_or_dict" }, "expose": { "items": { "format": "expose", "type": [ "string", "number" ] }, "type": "array", "_uniqueItems": true }, "external_links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "extra_hosts": { "$ref": "#/definitions/list_or_dict" }, "healthcheck": { "$ref": "#/definitions/healthcheck" }, "hostname": { "type": "string" }, "image": { "type": "string" }, "init": { "type": "boolean" }, "ipc": { "type": "string" }, "isolation": { "type": "string" }, "labels": { "$ref": "#/definitions/list_or_dict" }, "links": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "logging": { "additionalProperties": false, "properties": { "driver": { "type": "string" }, "options": { "patternProperties": { "^.+$": { "type": [ "string", "number", "null" ] } }, "type": "object" } }, "type": "object" }, "mac_address": { "type": "string" }, "network_mode": { "type": "string" }, "networks": { "oneOf": [ { "$ref": "#/definitions/list_of_strings" }, { "additionalProperties": false, "patternProperties": { "^[a-zA-Z0-9._-]+$": { "oneOf": [ { "additionalProperties": false, "properties": { "aliases": { "$ref": "#/definitions/list_of_strings" }, "ipv4_address": { "type": "string" }, "ipv6_address": { "type": "string" } }, "type": "object" }, { "type": "null" } ] } }, "type": "object" } ] }, "pid": { "type": [ "string", "null" ] }, "ports": { "items": { "oneOf": [ { "format": "ports", "type": "number" }, { "_format": "ports", "type": "string" }, { "additionalProperties": false, "properties": { "mode": { "type": "string" }, "protocol": { "type": "string" }, "published": { "type": "integer" }, "target": { "type": "integer" } }, "type": "object" } ] }, "type": "array", "_uniqueItems": true }, "privileged": { "type": "boolean" }, "read_only": { "type": "boolean" }, "restart": { "type": "string" }, "secrets": { "items": { "oneOf": [ { "type": "string" }, { "properties": { "gid": { "type": "string" }, "mode": { "type": "number" }, "source": { "type": "string" }, "target": { "type": "string" }, "uid": { "type": "string" } }, "type": "object" } ] }, "type": "array" }, "security_opt": { "items": { "type": "string" }, "type": "array", "_uniqueItems": true }, "shm_size": { "type": [ "number", "string" ] }, "stdin_open": { "type": "boolean" }, "stop_grace_period": { "_format": "duration", "type": "string" }, "stop_signal": { "type": "string" }, "sysctls": { "$ref": "#/definitions/list_or_dict" }, "tmpfs": { "$ref": "#/definitions/string_or_list" }, "tty": { "type": "boolean" }, "ulimits": { "patternProperties": { "^[a-z]+$": { "oneOf": [ { "type": "integer" }, { "additionalProperties": false, "properties": { "hard": { "type": "integer" }, "soft": { "type": "integer" } }, "required": [ "soft", "hard" ], "type": "object" } ] } }, "type": "object" }, "user": { "type": "string" }, "userns_mode": { "type": "string" }, "volumes": { "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "bind": { "properties": { "propagation": { "type": "string" } }, "type": "object" }, "consistency": { "type": "string" }, "read_only": { "type": "boolean" }, "source": { "type": "string" }, "target": { "type": "string" }, "tmpfs": { "properties": { "size": { "minimum": 0, "type": "integer" } }, "type": "object" }, "type": { "type": "string" }, "volume": { "properties": { "nocopy": { "type": "boolean" } }, "type": "object" } }, "required": [ "type" ], "type": "object" } ], "_uniqueItems": true }, "type": "array" }, "working_dir": { "type": "string" } }, "type": "object" }, "string_or_list": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/list_of_strings" } ] }, "volume": { "additionalProperties": false, "id": "#/definitions/volume", "patternProperties": { "^x-": {} }, "properties": { "driver": { "type": "string" }, "driver_opts": { "patternProperties": { "^.+$": { "type": [ "string", "number" ] } }, "type": "object" }, "external": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "type": [ "boolean", "object" ] }, "labels": { "$ref": "#/definitions/list_or_dict" }, "name": { "type": "string" } }, "type": [ "object", "null" ] } }, "patternProperties": { "^x-": {} }, "properties": { "configs": { "additionalProperties": false, "id": "#/properties/configs", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/config" } }, "type": "object" }, "networks": { "id": "#/properties/networks", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/network" } }, "type": "object" }, "secrets": { "additionalProperties": false, "id": "#/properties/secrets", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/secret" } }, "type": "object" }, "services": { "additionalProperties": false, "id": "#/properties/services", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/service" } }, "type": "object" }, "version": { "type": "string" }, "volumes": { "additionalProperties": false, "id": "#/properties/volumes", "patternProperties": { "^[a-zA-Z0-9._-]+$": { "$ref": "#/definitions/volume" } }, "type": "object" } }, "required": [ "version" ], "type": "object" }
o80249
{ "$schema": "http://json-schema.org/draft-04/schema", "properties": { "agency": { "type": "string" }, "best_fishing": { "properties": { "description": { "type": "string" }, "lakes": { "additionalProperties": { "properties": { "comment": { "type": "string" }, "gnis_id": { "type": "number" }, "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "type": "object" }, "type": "object" }, "rivers": { "type": "object" } }, "type": "object" }, "conformsTo": { "_format": "uri", "type": "string" }, "date_effective": { "_format": "date-time", "type": "string" }, "date_expires": { "_format": "date-time", "type": "string" }, "documentation": { "_format": "uri", "type": "string" }, "fishing_techniques": { "type": "string" }, "limits": { "properties": { "description": { "type": "string" } }, "type": "object" }, "schema_version": { "type": "string" }, "species": { "properties": { "aliases": { "items": { "type": "string" }, "type": "array" }, "bova_id": { "type": "number" }, "identification": { "type": "string" }, "images": { "items": { "properties": { "credit": { "type": "string" }, "name": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }, "type": "array" }, "name": { "type": "string" }, "taxonomy": { "type": "string" } }, "required": [ "bova_id", "name", "taxonomy" ], "type": "object" }, "state": { "maxLength": 2, "minLength": 2, "pattern": "([A-Z]{2})", "type": "string" } }, "required": [ "agency", "date_effective", "date_expires", "documentation", "schema_version", "conformsTo", "state", "species" ], "title": "fishing", "type": "object" }
o65503
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "A date in the format YYYY-MM-DD.", "pattern": "^\\d{4}-\\d{2}-\\d{2}$", "type": "string" }
o77414
{ "$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": [ "EiffelIssueVerifiedEvent" ] }, "version": { "type": "string", "enum": [ "1.1.0" ], "default": "1.1.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": { "issues": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "BUG", "IMPROVEMENT", "FEATURE", "WORK_ITEM", "REQUIREMENT", "OTHER" ] }, "tracker": { "type": "string" }, "id": { "type": "string" }, "uri": { "type": "string" }, "value": { "type": "string", "enum": [ "SUCCESS", "FAILURE", "INCONCLUSIVE" ] } }, "required": [ "type", "tracker", "id", "uri", "value" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "issues" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5379
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Fibaro Home Center Weather JSON Schema", "name": "weather", "type": "object", "properties": { "ConditionCode": { "type": "string" }, "Humidity": { "type": "string" }, "PreviousConditionCode": { "type": "string" }, "PreviousHumidity": { "type": "string" }, "PreviousTemperature": { "type": "string" }, "PreviousWeatherConditionConverted": { "type": "string" }, "PreviousWind": { "type": "string" }, "Temperature": { "type": "string" }, "WeatherCondition": { "type": "string" }, "WeatherConditionConverted": { "type": "string" }, "Wind": { "type": "string" }, "saveLogs": { "enum": [ "0", "1" ] }, "TemperatureUnit": { "enum": [ "C", "F" ] } }, "required": [ "ConditionCode", "Humidity", "PreviousConditionCode", "PreviousHumidity", "PreviousTemperature", "PreviousWeatherConditionConverted", "PreviousWind", "Temperature", "WeatherCondition", "WeatherConditionConverted", "Wind", "saveLogs", "TemperatureUnit" ], "additionalProperties": false }
o56024
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "bulk_publishing": { "type": "boolean" }, "links": { "type": "object", "additionalProperties": false, "properties": { "facet_groups": { "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links.", "$ref": "#/definitions/guid_list" }, "facet_values": { "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups.", "$ref": "#/definitions/guid_list" }, "finder": { "description": "Powers links from content back to finders the content is surfaced on", "$ref": "#/definitions/guid_list" }, "lead_organisations": { "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array.", "$ref": "#/definitions/guid_list" }, "mainstream_browse_pages": { "description": "Powers the /browse section of the site. These are known as sections in some legacy apps.", "$ref": "#/definitions/guid_list" }, "meets_user_needs": { "description": "The user needs this piece of content meets.", "$ref": "#/definitions/guid_list" }, "ordered_related_items": { "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger.", "$ref": "#/definitions/guid_list" }, "ordered_related_items_overrides": { "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation.", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "All organisations linked to this content item. This should include lead organisations.", "$ref": "#/definitions/guid_list" }, "original_primary_publishing_organisation": { "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list" }, "parent": { "description": "The parent content item.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "$ref": "#/definitions/guid_list", "maxItems": 1 }, "related": { "$ref": "#/definitions/guid_list" }, "suggested_ordered_related_items": { "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test.", "$ref": "#/definitions/guid_list" }, "taxons": { "description": "Prototype-stage taxonomy label for this content item", "$ref": "#/definitions/guid_list" }, "topics": { "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps.", "$ref": "#/definitions/guid_list" } } }, "previous_version": { "type": "string" } }, "definitions": { "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true } } }
o21421
{ "description": "Test collection 1", "properties": { "_metadata": { "properties": { "created_by": { "type": "string" }, "date_created": { "type": "string" }, "date_modified": { "type": "string" } }, "type": "object" }, "_uid": { "isAutoIncrement": true, "isIndex": true, "isUnique": true, "type": "number" }, "field_1": { "type": "string" }, "field_2": { "type": "string" }, "field_3": { "type": "string" }, "field_4": { "type": "array" }, "field_5": { "type": "string" } }, "required": [ "_uid", "_metadata" ], "title": "Test 1", "type": "object" }
o57231
{ "properties": { "customer": { "description": "The name of the customer", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer", "items" ], "type": "object" }
create_invoice_70d1862a
{ "$id": "https://json.schemastore.org/ruff.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "ApiBan": { "type": "object", "required": ["msg"], "properties": { "msg": { "description": "The message to display when the API is used.", "type": "string" } }, "additionalProperties": false }, "ConstantType": { "type": "string", "enum": ["bytes", "complex", "float", "int", "str", "tuple"] }, "Convention": { "oneOf": [ { "description": "Use Google-style docstrings.", "type": "string", "enum": ["google"] }, { "description": "Use NumPy-style docstrings.", "type": "string", "enum": ["numpy"] }, { "description": "Use PEP257-style docstrings.", "type": "string", "enum": ["pep257"] } ] }, "Flake8AnnotationsOptions": { "type": "object", "properties": { "allow-star-arg-any": { "description": "Whether to suppress `ANN401` for dynamically typed `*args` and `**kwargs` arguments.", "type": ["boolean", "null"] }, "ignore-fully-untyped": { "description": "Whether to suppress `ANN*` rules for any declaration that hasn't been typed at all. This makes it easier to gradually add types to a codebase.", "type": ["boolean", "null"] }, "mypy-init-return": { "description": "Whether to allow the omission of a return type hint for `__init__` if at least one argument is annotated.", "type": ["boolean", "null"] }, "suppress-dummy-args": { "description": "Whether to suppress `ANN000`-level violations for arguments matching the \"dummy\" variable regex (like `_`).", "type": ["boolean", "null"] }, "suppress-none-returning": { "description": "Whether to suppress `ANN200`-level violations for functions that meet either of the following criteria:\n\n- Contain no `return` statement. - Explicit `return` statement(s) all return `None` (explicitly or implicitly).", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8BanditOptions": { "type": "object", "properties": { "check-typed-exception": { "description": "Whether to disallow `try`-`except`-`pass` (`S110`) for specific exception types. By default, `try`-`except`-`pass` is only disallowed for `Exception` and `BaseException`.", "type": ["boolean", "null"] }, "hardcoded-tmp-directory": { "description": "A list of directories to consider temporary.", "type": ["array", "null"], "items": { "type": "string" } }, "hardcoded-tmp-directory-extend": { "description": "A list of directories to consider temporary, in addition to those specified by `hardcoded-tmp-directory`.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8BugbearOptions": { "type": "object", "properties": { "extend-immutable-calls": { "description": "Additional callable functions to consider \"immutable\" when evaluating, e.g., the `no-mutable-default-argument` rule (`B006`) or `no-function-call-in-dataclass-defaults` rule (`RUF009`).", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8BuiltinsOptions": { "type": "object", "properties": { "builtins-ignorelist": { "description": "Ignore list of builtins.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8ComprehensionsOptions": { "type": "object", "properties": { "allow-dict-calls-with-keyword-arguments": { "description": "Allow `dict` calls that make use of keyword arguments (e.g., `dict(a=1, b=2)`).", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8CopyrightOptions": { "type": "object", "properties": { "author": { "description": "Author to enforce within the copyright notice. If provided, the author must be present immediately following the copyright notice.", "type": ["string", "null"] }, "min-file-size": { "description": "A minimum file size (in bytes) required for a copyright notice to be enforced. By default, all files are validated.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "notice-rgx": { "description": "The regular expression used to match the copyright notice, compiled with the [`regex`](https://docs.rs/regex/latest/regex/) crate.\n\nDefaults to `(?i)Copyright\\s+(\\(C\\)\\s+)?\\d{4}(-\\d{4})*`, which matches the following: - `Copyright 2023` - `Copyright (C) 2023` - `Copyright 2021-2023` - `Copyright (C) 2021-2023`", "type": ["string", "null"] } }, "additionalProperties": false }, "Flake8ErrMsgOptions": { "type": "object", "properties": { "max-string-length": { "description": "Maximum string length for string literals in exception messages.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "Flake8GetTextOptions": { "type": "object", "properties": { "extend-function-names": { "description": "Additional function names to consider as internationalization calls, in addition to those included in `function-names`.", "type": ["array", "null"], "items": { "type": "string" } }, "function-names": { "description": "The function names to consider as internationalization calls.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8ImplicitStrConcatOptions": { "type": "object", "properties": { "allow-multiline": { "description": "Whether to allow implicit string concatenations for multiline strings. By default, implicit concatenations of multiline strings are allowed (but continuation lines, delimited with a backslash, are prohibited).\n\nNote that setting `allow-multiline = false` should typically be coupled with disabling `explicit-string-concatenation` (`ISC003`). Otherwise, both explicit and implicit multiline string concatenations will be seen as violations.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8ImportConventionsOptions": { "type": "object", "properties": { "aliases": { "description": "The conventional aliases for imports. These aliases can be extended by the `extend_aliases` option.", "type": ["object", "null"], "additionalProperties": { "type": "string" } }, "banned-aliases": { "description": "A mapping from module to its banned import aliases.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "banned-from": { "description": "A list of modules that are allowed to be imported from", "type": ["array", "null"], "items": { "type": "string" }, "uniqueItems": true }, "extend-aliases": { "description": "A mapping from module to conventional import alias. These aliases will be added to the `aliases` mapping.", "type": ["object", "null"], "additionalProperties": { "type": "string" } } }, "additionalProperties": false }, "Flake8PytestStyleOptions": { "type": "object", "properties": { "fixture-parentheses": { "description": "Boolean flag specifying whether `@pytest.fixture()` without parameters should have parentheses. If the option is set to `true` (the default), `@pytest.fixture()` is valid and `@pytest.fixture` is invalid. If set to `false`, `@pytest.fixture` is valid and `@pytest.fixture()` is invalid.", "type": ["boolean", "null"] }, "mark-parentheses": { "description": "Boolean flag specifying whether `@pytest.mark.foo()` without parameters should have parentheses. If the option is set to `true` (the default), `@pytest.mark.foo()` is valid and `@pytest.mark.foo` is invalid. If set to `false`, `@pytest.fixture` is valid and `@pytest.mark.foo()` is invalid.", "type": ["boolean", "null"] }, "parametrize-names-type": { "description": "Expected type for multiple argument names in `@pytest.mark.parametrize`. The following values are supported:\n\n- `csv` — a comma-separated list, e.g. `@pytest.mark.parametrize('name1,name2', ...)` - `tuple` (default) — e.g. `@pytest.mark.parametrize(('name1', 'name2'), ...)` - `list` — e.g. `@pytest.mark.parametrize(['name1', 'name2'], ...)`", "anyOf": [ { "$ref": "#/definitions/ParametrizeNameType" }, { "type": "null" } ] }, "parametrize-values-row-type": { "description": "Expected type for each row of values in `@pytest.mark.parametrize` in case of multiple parameters. The following values are supported:\n\n- `tuple` (default) — e.g. `@pytest.mark.parametrize(('name1', 'name2'), [(1, 2), (3, 4)])` - `list` — e.g. `@pytest.mark.parametrize(('name1', 'name2'), [[1, 2], [3, 4]])`", "anyOf": [ { "$ref": "#/definitions/ParametrizeValuesRowType" }, { "type": "null" } ] }, "parametrize-values-type": { "description": "Expected type for the list of values rows in `@pytest.mark.parametrize`. The following values are supported:\n\n- `tuple` — e.g. `@pytest.mark.parametrize('name', (1, 2, 3))` - `list` (default) — e.g. `@pytest.mark.parametrize('name', [1, 2, 3])`", "anyOf": [ { "$ref": "#/definitions/ParametrizeValuesType" }, { "type": "null" } ] }, "raises-extend-require-match-for": { "description": "List of additional exception names that require a match= parameter in a `pytest.raises()` call. This extends the default list of exceptions that require a match= parameter. This option is useful if you want to extend the default list of exceptions that require a match= parameter without having to specify the entire list. Note that this option does not remove any exceptions from the default list.", "type": ["array", "null"], "items": { "type": "string" } }, "raises-require-match-for": { "description": "List of exception names that require a match= parameter in a `pytest.raises()` call.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8QuotesOptions": { "type": "object", "properties": { "avoid-escape": { "description": "Whether to avoid using single quotes if a string contains single quotes, or vice-versa with double quotes, as per [PEP 8](https://peps.python.org/pep-0008/#string-quotes). This minimizes the need to escape quotation marks within strings.", "type": ["boolean", "null"] }, "docstring-quotes": { "description": "Quote style to prefer for docstrings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] }, "inline-quotes": { "description": "Quote style to prefer for inline strings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] }, "multiline-quotes": { "description": "Quote style to prefer for multiline strings (either \"single\" or \"double\").", "anyOf": [ { "$ref": "#/definitions/Quote" }, { "type": "null" } ] } }, "additionalProperties": false }, "Flake8SelfOptions": { "type": "object", "properties": { "ignore-names": { "description": "A list of names to ignore when considering `flake8-self` violations.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "Flake8TidyImportsOptions": { "type": "object", "properties": { "ban-relative-imports": { "description": "Whether to ban all relative imports (`\"all\"`), or only those imports that extend into the parent module or beyond (`\"parents\"`).", "anyOf": [ { "$ref": "#/definitions/Strictness" }, { "type": "null" } ] }, "banned-api": { "description": "Specific modules or module members that may not be imported or accessed. Note that this rule is only meant to flag accidental uses, and can be circumvented via `eval` or `importlib`.", "type": ["object", "null"], "additionalProperties": { "$ref": "#/definitions/ApiBan" } } }, "additionalProperties": false }, "Flake8TypeCheckingOptions": { "type": "object", "properties": { "exempt-modules": { "description": "Exempt certain modules from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "runtime-evaluated-base-classes": { "description": "Exempt classes that list any of the enumerated classes as a base class from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "runtime-evaluated-decorators": { "description": "Exempt classes decorated with any of the enumerated decorators from needing to be moved into type-checking blocks.", "type": ["array", "null"], "items": { "type": "string" } }, "strict": { "description": "Enforce TC001, TC002, and TC003 rules even when valid runtime imports are present for the same module. See flake8-type-checking's [strict](https://github.com/snok/flake8-type-checking#strict) option.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Flake8UnusedArgumentsOptions": { "type": "object", "properties": { "ignore-variadic-names": { "description": "Whether to allow unused variadic arguments, like `*args` and `**kwargs`.", "type": ["boolean", "null"] } }, "additionalProperties": false }, "ImportSection": { "anyOf": [ { "$ref": "#/definitions/ImportType" }, { "type": "string" } ] }, "ImportType": { "type": "string", "enum": [ "future", "standard-library", "third-party", "first-party", "local-folder" ] }, "IsortOptions": { "type": "object", "properties": { "classes": { "description": "An override list of tokens to always recognize as a Class for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } }, "combine-as-imports": { "description": "Combines as imports on the same line. See isort's [`combine-as-imports`](https://pycqa.github.io/isort/docs/configuration/options.html#combine-as-imports) option.", "type": ["boolean", "null"] }, "constants": { "description": "An override list of tokens to always recognize as a CONSTANT for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } }, "extra-standard-library": { "description": "A list of modules to consider standard-library, in addition to those known to Ruff in advance.", "type": ["array", "null"], "items": { "type": "string" } }, "force-single-line": { "description": "Forces all from imports to appear on their own line.", "type": ["boolean", "null"] }, "force-sort-within-sections": { "description": "Don't sort straight-style imports (like `import sys`) before from-style imports (like `from itertools import groupby`). Instead, sort the imports by module, independent of import style.", "type": ["boolean", "null"] }, "force-to-top": { "description": "Force specific imports to the top of their appropriate section.", "type": ["array", "null"], "items": { "type": "string" } }, "force-wrap-aliases": { "description": "Force `import from` statements with multiple members and at least one alias (e.g., `import A as B`) to wrap such that every line contains exactly one member. For example, this formatting would be retained, rather than condensing to a single line:\n\n```python from .utils import ( test_directory as test_directory, test_id as test_id ) ```\n\nNote that this setting is only effective when combined with `combine-as-imports = true`. When `combine-as-imports` isn't enabled, every aliased `import from` will be given its own line, in which case, wrapping is not necessary.", "type": ["boolean", "null"] }, "forced-separate": { "description": "A list of modules to separate into auxiliary block(s) of imports, in the order specified.", "type": ["array", "null"], "items": { "type": "string" } }, "known-first-party": { "description": "A list of modules to consider first-party, regardless of whether they can be identified as such via introspection of the local filesystem.", "type": ["array", "null"], "items": { "type": "string" } }, "known-local-folder": { "description": "A list of modules to consider being a local folder. Generally, this is reserved for relative imports (`from . import module`).", "type": ["array", "null"], "items": { "type": "string" } }, "known-third-party": { "description": "A list of modules to consider third-party, regardless of whether they can be identified as such via introspection of the local filesystem.", "type": ["array", "null"], "items": { "type": "string" } }, "lines-after-imports": { "description": "The number of blank lines to place after imports. Use `-1` for automatic determination.", "type": ["integer", "null"], "format": "int" }, "lines-between-types": { "description": "The number of lines to place between \"direct\" and `import from` imports.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "no-lines-before": { "description": "A list of sections that should _not_ be delineated from the previous section via empty lines.", "type": ["array", "null"], "items": { "$ref": "#/definitions/ImportSection" } }, "order-by-type": { "description": "Order imports by type, which is determined by case, in addition to alphabetically.", "type": ["boolean", "null"] }, "relative-imports-order": { "description": "Whether to place \"closer\" imports (fewer `.` characters, most local) before \"further\" imports (more `.` characters, least local), or vice versa.\n\nThe default (\"furthest-to-closest\") is equivalent to isort's `reverse-relative` default (`reverse-relative = false`); setting this to \"closest-to-furthest\" is equivalent to isort's `reverse-relative = true`.", "anyOf": [ { "$ref": "#/definitions/RelativeImportsOrder" }, { "type": "null" } ] }, "required-imports": { "description": "Add the specified import line to all files.", "type": ["array", "null"], "items": { "type": "string" } }, "section-order": { "description": "Override in which order the sections should be output. Can be used to move custom sections.", "type": ["array", "null"], "items": { "$ref": "#/definitions/ImportSection" } }, "sections": { "description": "A list of mappings from section names to modules. By default custom sections are output last, but this can be overridden with `section-order`.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "single-line-exclusions": { "description": "One or more modules to exclude from the single line rule.", "type": ["array", "null"], "items": { "type": "string" } }, "split-on-trailing-comma": { "description": "If a comma is placed after the last member in a multi-line import, then the imports will never be folded into one line.\n\nSee isort's [`split-on-trailing-comma`](https://pycqa.github.io/isort/docs/configuration/options.html#split-on-trailing-comma) option.", "type": ["boolean", "null"] }, "variables": { "description": "An override list of tokens to always recognize as a var for `order-by-type` regardless of casing.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "LineLength": { "description": "The length of a line of text that is considered too long.", "type": "integer", "format": "uint", "minimum": 0.0 }, "McCabeOptions": { "type": "object", "properties": { "max-complexity": { "description": "The maximum McCabe complexity to allow before triggering `C901` errors.", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "ParametrizeNameType": { "type": "string", "enum": ["csv", "tuple", "list"] }, "ParametrizeValuesRowType": { "type": "string", "enum": ["tuple", "list"] }, "ParametrizeValuesType": { "type": "string", "enum": ["tuple", "list"] }, "Pep8NamingOptions": { "type": "object", "properties": { "classmethod-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a class method (in addition to the builtin `@classmethod`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list takes a `cls` argument as its first argument.", "type": ["array", "null"], "items": { "type": "string" } }, "ignore-names": { "description": "A list of names (or patterns) to ignore when considering `pep8-naming` violations.", "type": ["array", "null"], "items": { "type": "string" } }, "staticmethod-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a static method (in addition to the builtin `@staticmethod`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list has no `self` or `cls` argument.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PyUpgradeOptions": { "type": "object", "properties": { "keep-runtime-typing": { "description": "Whether to avoid PEP 585 (`List[int]` -> `list[int]`) and PEP 604 (`Union[str, int]` -> `str | int`) rewrites even if a file imports `from __future__ import annotations`.\n\nThis setting is only applicable when the target Python version is below 3.9 and 3.10 respectively, and is most commonly used when working with libraries like Pydantic and FastAPI, which rely on the ability to parse type annotations at runtime. The use of `from __future__ import annotations` causes Python to treat the type annotations as strings, which typically allows for the use of language features that appear in later Python versions but are not yet supported by the current version (e.g., `str | int`). However, libraries that rely on runtime type annotations will break if the annotations are incompatible with the current Python version.\n\nFor example, while the following is valid Python 3.8 code due to the presence of `from __future__ import annotations`, the use of `str| int` prior to Python 3.10 will cause Pydantic to raise a `TypeError` at runtime:\n\n```python from __future__ import annotations\n\nimport pydantic\n\nclass Foo(pydantic.BaseModel): bar: str | int ```", "type": ["boolean", "null"] } }, "additionalProperties": false }, "Pycodestyle": { "type": "object", "properties": { "ignore-overlong-task-comments": { "description": "Whether line-length violations (`E501`) should be triggered for comments starting with `task-tags` (by default: \\[\"TODO\", \"FIXME\", and \"XXX\"\\]).", "type": ["boolean", "null"] }, "max-doc-length": { "description": "The maximum line length to allow for line-length violations within documentation (`W505`), including standalone comments.", "anyOf": [ { "$ref": "#/definitions/LineLength" }, { "type": "null" } ] } }, "additionalProperties": false }, "Pydocstyle": { "type": "object", "properties": { "convention": { "description": "Whether to use Google-style or NumPy-style conventions or the PEP257 defaults when analyzing docstring sections.", "anyOf": [ { "$ref": "#/definitions/Convention" }, { "type": "null" } ] }, "ignore-decorators": { "description": "Ignore docstrings for functions or methods decorated with the specified fully-qualified decorators.", "type": ["array", "null"], "items": { "type": "string" } }, "property-decorators": { "description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a property (in addition to the builtin `@property` and standard-library `@functools.cached_property`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list can use a non-imperative summary line.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PyflakesOptions": { "type": "object", "properties": { "extend-generics": { "description": "Additional functions or classes to consider generic, such that any subscripts should be treated as type annotation (e.g., `ForeignKey` in `django.db.models.ForeignKey[\"User\"]`.", "type": ["array", "null"], "items": { "type": "string" } } }, "additionalProperties": false }, "PylintOptions": { "type": "object", "properties": { "allow-magic-value-types": { "description": "Constant types to ignore when used as \"magic values\" (see: `PLR2004`).", "type": ["array", "null"], "items": { "$ref": "#/definitions/ConstantType" } }, "max-args": { "description": "Maximum number of arguments allowed for a function or method definition (see: `PLR0913`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-branches": { "description": "Maximum number of branches allowed for a function or method body (see: `PLR0912`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-returns": { "description": "Maximum number of return statements allowed for a function or method body (see `PLR0911`)", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 }, "max-statements": { "description": "Maximum number of statements allowed for a function or method body (see: `PLR0915`).", "type": ["integer", "null"], "format": "uint", "minimum": 0.0 } }, "additionalProperties": false }, "PythonVersion": { "type": "string", "enum": ["py37", "py38", "py39", "py310", "py311", "py312"] }, "Quote": { "oneOf": [ { "description": "Use double quotes.", "type": "string", "enum": ["double"] }, { "description": "Use single quotes.", "type": "string", "enum": ["single"] } ] }, "RelativeImportsOrder": { "oneOf": [ { "description": "Place \"closer\" imports (fewer `.` characters, most local) before \"further\" imports (more `.` characters, least local).", "type": "string", "enum": ["closest-to-furthest"] }, { "description": "Place \"further\" imports (more `.` characters, least local) imports before \"closer\" imports (fewer `.` characters, most local).", "type": "string", "enum": ["furthest-to-closest"] } ] }, "RuleSelector": { "type": "string", "enum": [ "A", "A0", "A00", "A001", "A002", "A003", "AIR", "AIR0", "AIR00", "AIR001", "ALL", "ANN", "ANN0", "ANN00", "ANN001", "ANN002", "ANN003", "ANN1", "ANN10", "ANN101", "ANN102", "ANN2", "ANN20", "ANN201", "ANN202", "ANN204", "ANN205", "ANN206", "ANN4", "ANN40", "ANN401", "ARG", "ARG0", "ARG00", "ARG001", "ARG002", "ARG003", "ARG004", "ARG005", "ASYNC", "ASYNC1", "ASYNC10", "ASYNC100", "ASYNC101", "ASYNC102", "B", "B0", "B00", "B002", "B003", "B004", "B005", "B006", "B007", "B008", "B009", "B01", "B010", "B011", "B012", "B013", "B014", "B015", "B016", "B017", "B018", "B019", "B02", "B020", "B021", "B022", "B023", "B024", "B025", "B026", "B027", "B028", "B029", "B03", "B030", "B031", "B032", "B033", "B9", "B90", "B904", "B905", "BLE", "BLE0", "BLE00", "BLE001", "C", "C4", "C40", "C400", "C401", "C402", "C403", "C404", "C405", "C406", "C408", "C409", "C41", "C410", "C411", "C413", "C414", "C415", "C416", "C417", "C418", "C419", "C9", "C90", "C901", "COM", "COM8", "COM81", "COM812", "COM818", "COM819", "CPY", "CPY001", "D", "D1", "D10", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D2", "D20", "D200", "D201", "D202", "D203", "D204", "D205", "D206", "D207", "D208", "D209", "D21", "D210", "D211", "D212", "D213", "D214", "D215", "D3", "D30", "D300", "D301", "D4", "D40", "D400", "D401", "D402", "D403", "D404", "D405", "D406", "D407", "D408", "D409", "D41", "D410", "D411", "D412", "D413", "D414", "D415", "D416", "D417", "D418", "D419", "DJ", "DJ0", "DJ00", "DJ001", "DJ003", "DJ006", "DJ007", "DJ008", "DJ01", "DJ012", "DJ013", "DTZ", "DTZ0", "DTZ00", "DTZ001", "DTZ002", "DTZ003", "DTZ004", "DTZ005", "DTZ006", "DTZ007", "DTZ01", "DTZ011", "DTZ012", "E", "E1", "E10", "E101", "E111", "E112", "E113", "E114", "E115", "E116", "E117", "E201", "E202", "E203", "E211", "E221", "E222", "E223", "E224", "E225", "E226", "E227", "E228", "E231", "E241", "E242", "E251", "E252", "E261", "E262", "E265", "E266", "E271", "E272", "E273", "E274", "E275", "E4", "E40", "E401", "E402", "E5", "E50", "E501", "E7", "E70", "E701", "E702", "E703", "E71", "E711", "E712", "E713", "E714", "E72", "E721", "E722", "E73", "E731", "E74", "E741", "E742", "E743", "E9", "E90", "E902", "E99", "E999", "EM", "EM1", "EM10", "EM101", "EM102", "EM103", "ERA", "ERA0", "ERA00", "ERA001", "EXE", "EXE0", "EXE00", "EXE001", "EXE002", "EXE003", "EXE004", "EXE005", "F", "F4", "F40", "F401", "F402", "F403", "F404", "F405", "F406", "F407", "F5", "F50", "F501", "F502", "F503", "F504", "F505", "F506", "F507", "F508", "F509", "F52", "F521", "F522", "F523", "F524", "F525", "F54", "F541", "F6", "F60", "F601", "F602", "F62", "F621", "F622", "F63", "F631", "F632", "F633", "F634", "F7", "F70", "F701", "F702", "F704", "F706", "F707", "F72", "F722", "F8", "F81", "F811", "F82", "F821", "F822", "F823", "F84", "F841", "F842", "F9", "F90", "F901", "FA", "FA1", "FA10", "FA100", "FA102", "FBT", "FBT0", "FBT00", "FBT001", "FBT002", "FBT003", "FIX", "FIX0", "FIX00", "FIX001", "FIX002", "FIX003", "FIX004", "FLY", "FLY0", "FLY00", "FLY002", "G", "G0", "G00", "G001", "G002", "G003", "G004", "G01", "G010", "G1", "G10", "G101", "G2", "G20", "G201", "G202", "I", "I0", "I00", "I001", "I002", "ICN", "ICN0", "ICN00", "ICN001", "ICN002", "ICN003", "INP", "INP0", "INP00", "INP001", "INT", "INT0", "INT00", "INT001", "INT002", "INT003", "ISC", "ISC0", "ISC00", "ISC001", "ISC002", "ISC003", "N", "N8", "N80", "N801", "N802", "N803", "N804", "N805", "N806", "N807", "N81", "N811", "N812", "N813", "N814", "N815", "N816", "N817", "N818", "N9", "N99", "N999", "NPY", "NPY0", "NPY00", "NPY001", "NPY002", "NPY003", "PD", "PD0", "PD00", "PD002", "PD003", "PD004", "PD007", "PD008", "PD009", "PD01", "PD010", "PD011", "PD012", "PD013", "PD015", "PD9", "PD90", "PD901", "PERF", "PERF1", "PERF10", "PERF101", "PERF102", "PERF2", "PERF20", "PERF203", "PERF4", "PERF40", "PERF401", "PERF402", "PGH", "PGH0", "PGH00", "PGH001", "PGH002", "PGH003", "PGH004", "PGH005", "PIE", "PIE7", "PIE79", "PIE790", "PIE794", "PIE796", "PIE8", "PIE80", "PIE800", "PIE804", "PIE807", "PIE81", "PIE810", "PL", "PLC", "PLC0", "PLC01", "PLC013", "PLC0132", "PLC02", "PLC020", "PLC0205", "PLC0208", "PLC04", "PLC041", "PLC0414", "PLC1901", "PLC3", "PLC30", "PLC300", "PLC3002", "PLE", "PLE0", "PLE01", "PLE010", "PLE0100", "PLE0101", "PLE011", "PLE0116", "PLE0117", "PLE0118", "PLE02", "PLE024", "PLE0241", "PLE03", "PLE030", "PLE0302", "PLE0307", "PLE06", "PLE060", "PLE0604", "PLE0605", "PLE1", "PLE11", "PLE114", "PLE1142", "PLE12", "PLE120", "PLE1205", "PLE1206", "PLE13", "PLE130", "PLE1307", "PLE131", "PLE1310", "PLE15", "PLE150", "PLE1507", "PLE17", "PLE170", "PLE1700", "PLE2", "PLE25", "PLE250", "PLE2502", "PLE251", "PLE2510", "PLE2512", "PLE2513", "PLE2514", "PLE2515", "PLR", "PLR0", "PLR01", "PLR012", "PLR0124", "PLR013", "PLR0133", "PLR02", "PLR020", "PLR0206", "PLR04", "PLR040", "PLR0402", "PLR09", "PLR091", "PLR0911", "PLR0912", "PLR0913", "PLR0915", "PLR1", "PLR17", "PLR170", "PLR1701", "PLR171", "PLR1711", "PLR172", "PLR1722", "PLR2", "PLR20", "PLR200", "PLR2004", "PLR5", "PLR55", "PLR550", "PLR5501", "PLW", "PLW0", "PLW01", "PLW012", "PLW0120", "PLW0129", "PLW013", "PLW0131", "PLW04", "PLW040", "PLW0406", "PLW06", "PLW060", "PLW0602", "PLW0603", "PLW07", "PLW071", "PLW0711", "PLW1", "PLW15", "PLW150", "PLW1508", "PLW2", "PLW29", "PLW290", "PLW2901", "PLW3", "PLW33", "PLW330", "PLW3301", "PT", "PT0", "PT00", "PT001", "PT002", "PT003", "PT004", "PT005", "PT006", "PT007", "PT008", "PT009", "PT01", "PT010", "PT011", "PT012", "PT013", "PT015", "PT016", "PT017", "PT018", "PT019", "PT02", "PT020", "PT021", "PT022", "PT023", "PT024", "PT025", "PT026", "PTH", "PTH1", "PTH10", "PTH100", "PTH101", "PTH102", "PTH103", "PTH104", "PTH105", "PTH106", "PTH107", "PTH108", "PTH109", "PTH11", "PTH110", "PTH111", "PTH112", "PTH113", "PTH114", "PTH115", "PTH116", "PTH117", "PTH118", "PTH119", "PTH12", "PTH120", "PTH121", "PTH122", "PTH123", "PTH124", "PYI", "PYI0", "PYI00", "PYI001", "PYI002", "PYI003", "PYI004", "PYI005", "PYI006", "PYI007", "PYI008", "PYI009", "PYI01", "PYI010", "PYI011", "PYI012", "PYI013", "PYI014", "PYI015", "PYI016", "PYI02", "PYI020", "PYI021", "PYI024", "PYI025", "PYI029", "PYI03", "PYI032", "PYI033", "PYI034", "PYI035", "PYI04", "PYI042", "PYI043", "PYI044", "PYI045", "PYI048", "PYI05", "PYI050", "PYI052", "PYI053", "PYI054", "Q", "Q0", "Q00", "Q000", "Q001", "Q002", "Q003", "RET", "RET5", "RET50", "RET501", "RET502", "RET503", "RET504", "RET505", "RET506", "RET507", "RET508", "RSE", "RSE1", "RSE10", "RSE102", "RUF", "RUF0", "RUF00", "RUF001", "RUF002", "RUF003", "RUF005", "RUF006", "RUF007", "RUF008", "RUF009", "RUF01", "RUF010", "RUF011", "RUF012", "RUF013", "RUF1", "RUF10", "RUF100", "RUF2", "RUF20", "RUF200", "S", "S1", "S10", "S101", "S102", "S103", "S104", "S105", "S106", "S107", "S108", "S11", "S110", "S112", "S113", "S3", "S30", "S301", "S302", "S303", "S304", "S305", "S306", "S307", "S308", "S31", "S310", "S311", "S312", "S313", "S314", "S315", "S316", "S317", "S318", "S319", "S32", "S320", "S321", "S323", "S324", "S5", "S50", "S501", "S506", "S508", "S509", "S6", "S60", "S601", "S602", "S603", "S604", "S605", "S606", "S607", "S608", "S609", "S61", "S612", "S7", "S70", "S701", "SIM", "SIM1", "SIM10", "SIM101", "SIM102", "SIM103", "SIM105", "SIM107", "SIM108", "SIM109", "SIM11", "SIM110", "SIM112", "SIM114", "SIM115", "SIM116", "SIM117", "SIM118", "SIM2", "SIM20", "SIM201", "SIM202", "SIM208", "SIM21", "SIM210", "SIM211", "SIM212", "SIM22", "SIM220", "SIM221", "SIM222", "SIM223", "SIM3", "SIM30", "SIM300", "SIM4", "SIM40", "SIM401", "SIM9", "SIM91", "SIM910", "SLF", "SLF0", "SLF00", "SLF001", "SLOT", "SLOT0", "SLOT00", "SLOT000", "SLOT001", "SLOT002", "T", "T1", "T10", "T100", "T2", "T20", "T201", "T203", "TCH", "TCH0", "TCH00", "TCH001", "TCH002", "TCH003", "TCH004", "TCH005", "TD", "TD0", "TD00", "TD001", "TD002", "TD003", "TD004", "TD005", "TD006", "TD007", "TID", "TID2", "TID25", "TID251", "TID252", "TRY", "TRY0", "TRY00", "TRY002", "TRY003", "TRY004", "TRY2", "TRY20", "TRY200", "TRY201", "TRY3", "TRY30", "TRY300", "TRY301", "TRY302", "TRY4", "TRY40", "TRY400", "TRY401", "UP", "UP0", "UP00", "UP001", "UP003", "UP004", "UP005", "UP006", "UP007", "UP008", "UP009", "UP01", "UP010", "UP011", "UP012", "UP013", "UP014", "UP015", "UP017", "UP018", "UP019", "UP02", "UP020", "UP021", "UP022", "UP023", "UP024", "UP025", "UP026", "UP027", "UP028", "UP029", "UP03", "UP030", "UP031", "UP032", "UP033", "UP034", "UP035", "UP036", "UP037", "UP038", "UP039", "W", "W1", "W19", "W191", "W2", "W29", "W291", "W292", "W293", "W5", "W50", "W505", "W6", "W60", "W605", "YTT", "YTT1", "YTT10", "YTT101", "YTT102", "YTT103", "YTT2", "YTT20", "YTT201", "YTT202", "YTT203", "YTT204", "YTT3", "YTT30", "YTT301", "YTT302", "YTT303" ] }, "SerializationFormat": { "type": "string", "enum": [ "text", "json", "json-lines", "junit", "grouped", "github", "gitlab", "pylint", "azure" ] }, "Strictness": { "oneOf": [ { "description": "Ban imports that extend into the parent module or beyond.", "type": "string", "enum": ["parents"] }, { "description": "Ban all relative imports.", "type": "string", "enum": ["all"] } ] }, "TabSize": { "description": "The size of a tab.", "type": "integer", "format": "uint8", "minimum": 0.0 }, "Version": { "type": "string" } }, "properties": { "allowed-confusables": { "description": "A list of allowed \"confusable\" Unicode characters to ignore when enforcing `RUF001`, `RUF002`, and `RUF003`.", "type": ["array", "null"], "items": { "type": "string", "maxLength": 1, "minLength": 1 } }, "builtins": { "description": "A list of builtins to treat as defined references, in addition to the system builtins.", "type": ["array", "null"], "items": { "type": "string" } }, "cache-dir": { "description": "A path to the cache directory.\n\nBy default, Ruff stores cache results in a `.ruff_cache` directory in the current project root.\n\nHowever, Ruff will also respect the `RUFF_CACHE_DIR` environment variable, which takes precedence over that default.\n\nThis setting will override even the `RUFF_CACHE_DIR` environment variable, if set.", "type": ["string", "null"] }, "dummy-variable-rgx": { "description": "A regular expression used to identify \"dummy\" variables, or those which should be ignored when enforcing (e.g.) unused-variable rules. The default expression matches `_`, `__`, and `_var`, but not `_var_`.", "type": ["string", "null"] }, "exclude": { "description": "A list of file patterns to exclude from linting.\n\nExclusions are based on globs, and can be either:\n\n- Single-path patterns, like `.mypy_cache` (to exclude any directory named `.mypy_cache` in the tree), `foo.py` (to exclude any file named `foo.py`), or `foo_*.py` (to exclude any file matching `foo_*.py` ). - Relative patterns, like `directory/foo.py` (to exclude that specific file) or `directory/*.py` (to exclude any Python files in `directory`). Note that these paths are relative to the project root (e.g., the directory containing your `pyproject.toml`).\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).\n\nNote that you'll typically want to use [`extend-exclude`](#extend-exclude) to modify the excluded paths.", "type": ["array", "null"], "items": { "type": "string" } }, "extend": { "description": "A path to a local `pyproject.toml` file to merge into this configuration. User home directory and environment variables will be expanded.\n\nTo resolve the current `pyproject.toml` file, Ruff will first resolve this base configuration file, then merge in any properties defined in the current configuration file.", "type": ["string", "null"] }, "extend-exclude": { "description": "A list of file patterns to omit from linting, in addition to those specified by `exclude`.\n\nExclusions are based on globs, and can be either:\n\n- Single-path patterns, like `.mypy_cache` (to exclude any directory named `.mypy_cache` in the tree), `foo.py` (to exclude any file named `foo.py`), or `foo_*.py` (to exclude any file matching `foo_*.py` ). - Relative patterns, like `directory/foo.py` (to exclude that specific file) or `directory/*.py` (to exclude any Python files in `directory`). Note that these paths are relative to the project root (e.g., the directory containing your `pyproject.toml`).\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "extend-fixable": { "description": "A list of rule codes or prefixes to consider autofixable, in addition to those specified by `fixable`.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "extend-include": { "description": "A list of file patterns to include when linting, in addition to those specified by `include`.\n\nInclusion are based on globs, and should be single-path patterns, like `*.pyw`, to include any file with the `.pyw` extension.\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "extend-per-file-ignores": { "description": "A list of mappings from file pattern to rule codes or prefixes to exclude, in addition to any rules excluded by `per-file-ignores`.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "$ref": "#/definitions/RuleSelector" } } }, "extend-select": { "description": "A list of rule codes or prefixes to enable, in addition to those specified by `select`.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "external": { "description": "A list of rule codes that are unsupported by Ruff, but should be preserved when (e.g.) validating `# noqa` directives. Useful for retaining `# noqa` directives that cover plugins not yet implemented by Ruff.", "type": ["array", "null"], "items": { "type": "string" } }, "fix": { "description": "Enable autofix behavior by-default when running `ruff` (overridden by the `--fix` and `--no-fix` command-line flags).", "type": ["boolean", "null"] }, "fix-only": { "description": "Like `fix`, but disables reporting on leftover violation. Implies `fix`.", "type": ["boolean", "null"] }, "fixable": { "description": "A list of rule codes or prefixes to consider autofixable. By default, all rules are considered autofixable.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "flake8-annotations": { "description": "Options for the `flake8-annotations` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8AnnotationsOptions" }, { "type": "null" } ] }, "flake8-bandit": { "description": "Options for the `flake8-bandit` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BanditOptions" }, { "type": "null" } ] }, "flake8-bugbear": { "description": "Options for the `flake8-bugbear` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BugbearOptions" }, { "type": "null" } ] }, "flake8-builtins": { "description": "Options for the `flake8-builtins` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8BuiltinsOptions" }, { "type": "null" } ] }, "flake8-comprehensions": { "description": "Options for the `flake8-comprehensions` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ComprehensionsOptions" }, { "type": "null" } ] }, "flake8-copyright": { "description": "Options for the `copyright` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8CopyrightOptions" }, { "type": "null" } ] }, "flake8-errmsg": { "description": "Options for the `flake8-errmsg` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ErrMsgOptions" }, { "type": "null" } ] }, "flake8-gettext": { "description": "Options for the `flake8-gettext` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8GetTextOptions" }, { "type": "null" } ] }, "flake8-implicit-str-concat": { "description": "Options for the `flake8-implicit-str-concat` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ImplicitStrConcatOptions" }, { "type": "null" } ] }, "flake8-import-conventions": { "description": "Options for the `flake8-import-conventions` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8ImportConventionsOptions" }, { "type": "null" } ] }, "flake8-pytest-style": { "description": "Options for the `flake8-pytest-style` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8PytestStyleOptions" }, { "type": "null" } ] }, "flake8-quotes": { "description": "Options for the `flake8-quotes` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8QuotesOptions" }, { "type": "null" } ] }, "flake8-self": { "description": "Options for the `flake8_self` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8SelfOptions" }, { "type": "null" } ] }, "flake8-tidy-imports": { "description": "Options for the `flake8-tidy-imports` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8TidyImportsOptions" }, { "type": "null" } ] }, "flake8-type-checking": { "description": "Options for the `flake8-type-checking` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8TypeCheckingOptions" }, { "type": "null" } ] }, "flake8-unused-arguments": { "description": "Options for the `flake8-unused-arguments` plugin.", "anyOf": [ { "$ref": "#/definitions/Flake8UnusedArgumentsOptions" }, { "type": "null" } ] }, "force-exclude": { "description": "Whether to enforce `exclude` and `extend-exclude` patterns, even for paths that are passed to Ruff explicitly. Typically, Ruff will lint any paths passed in directly, even if they would typically be excluded. Setting `force-exclude = true` will cause Ruff to respect these exclusions unequivocally.\n\nThis is useful for [`pre-commit`](https://pre-commit.com/), which explicitly passes all changed files to the [`ruff-pre-commit`](https://github.com/astral-sh/ruff-pre-commit) plugin, regardless of whether they're marked as excluded by Ruff's own settings.", "type": ["boolean", "null"] }, "format": { "description": "The style in which violation messages should be formatted: `\"text\"` (default), `\"grouped\"` (group messages by file), `\"json\"` (machine-readable), `\"junit\"` (machine-readable XML), `\"github\"` (GitHub Actions annotations), `\"gitlab\"` (GitLab CI code quality report), `\"pylint\"` (Pylint text format) or `\"azure\"` (Azure Pipeline logging commands).", "anyOf": [ { "$ref": "#/definitions/SerializationFormat" }, { "type": "null" } ] }, "ignore": { "description": "A list of rule codes or prefixes to ignore. Prefixes can specify exact rules (like `F841`), entire categories (like `F`), or anything in between.\n\nWhen breaking ties between enabled and disabled rules (via `select` and `ignore`, respectively), more specific prefixes override less specific prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "ignore-init-module-imports": { "description": "Avoid automatically removing unused imports in `__init__.py` files. Such imports will still be flagged, but with a dedicated message suggesting that the import is either added to the module's `__all__` symbol, or re-exported with a redundant alias (e.g., `import os as os`).", "type": ["boolean", "null"] }, "include": { "description": "A list of file patterns to include when linting.\n\nInclusion are based on globs, and should be single-path patterns, like `*.pyw`, to include any file with the `.pyw` extension. `pyproject.toml` is included here not for configuration but because we lint whether e.g. the `[project]` matches the schema.\n\nFor more information on the glob syntax, refer to the [`globset` documentation](https://docs.rs/globset/latest/globset/#syntax).", "type": ["array", "null"], "items": { "type": "string" } }, "isort": { "description": "Options for the `isort` plugin.", "anyOf": [ { "$ref": "#/definitions/IsortOptions" }, { "type": "null" } ] }, "line-length": { "description": "The line length to use when enforcing long-lines violations (like `E501`).", "anyOf": [ { "$ref": "#/definitions/LineLength" }, { "type": "null" } ] }, "mccabe": { "description": "Options for the `mccabe` plugin.", "anyOf": [ { "$ref": "#/definitions/McCabeOptions" }, { "type": "null" } ] }, "namespace-packages": { "description": "Mark the specified directories as namespace packages. For the purpose of module resolution, Ruff will treat those directories as if they contained an `__init__.py` file.", "type": ["array", "null"], "items": { "type": "string" } }, "pep8-naming": { "description": "Options for the `pep8-naming` plugin.", "anyOf": [ { "$ref": "#/definitions/Pep8NamingOptions" }, { "type": "null" } ] }, "per-file-ignores": { "description": "A list of mappings from file pattern to rule codes or prefixes to exclude, when considering any matching files.", "type": ["object", "null"], "additionalProperties": { "type": "array", "items": { "$ref": "#/definitions/RuleSelector" } } }, "pycodestyle": { "description": "Options for the `pycodestyle` plugin.", "anyOf": [ { "$ref": "#/definitions/Pycodestyle" }, { "type": "null" } ] }, "pydocstyle": { "description": "Options for the `pydocstyle` plugin.", "anyOf": [ { "$ref": "#/definitions/Pydocstyle" }, { "type": "null" } ] }, "pyflakes": { "description": "Options for the `pyflakes` plugin.", "anyOf": [ { "$ref": "#/definitions/PyflakesOptions" }, { "type": "null" } ] }, "pylint": { "description": "Options for the `pylint` plugin.", "anyOf": [ { "$ref": "#/definitions/PylintOptions" }, { "type": "null" } ] }, "pyupgrade": { "description": "Options for the `pyupgrade` plugin.", "anyOf": [ { "$ref": "#/definitions/PyUpgradeOptions" }, { "type": "null" } ] }, "required-version": { "description": "Require a specific version of Ruff to be running (useful for unifying results across many environments, e.g., with a `pyproject.toml` file).", "anyOf": [ { "$ref": "#/definitions/Version" }, { "type": "null" } ] }, "respect-gitignore": { "description": "Whether to automatically exclude files that are ignored by `.ignore`, `.gitignore`, `.git/info/exclude`, and global `gitignore` files. Enabled by default.", "type": ["boolean", "null"] }, "select": { "description": "A list of rule codes or prefixes to enable. Prefixes can specify exact rules (like `F841`), entire categories (like `F`), or anything in between.\n\nWhen breaking ties between enabled and disabled rules (via `select` and `ignore`, respectively), more specific prefixes override less specific prefixes.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } }, "show-fixes": { "description": "Whether to show an enumeration of all autofixed lint violations (overridden by the `--show-fixes` command-line flag).", "type": ["boolean", "null"] }, "show-source": { "description": "Whether to show source code snippets when reporting lint violations (overridden by the `--show-source` command-line flag).", "type": ["boolean", "null"] }, "src": { "description": "The source code paths to consider, e.g., when resolving first- vs. third-party imports.\n\nAs an example: given a Python package structure like:\n\n```text my_package/ pyproject.toml src/ my_package/ __init__.py foo.py bar.py ```\n\nThe `src` directory should be included in the `src` option (e.g., `src = [\"src\"]`), such that when resolving imports, `my_package.foo` is considered a first-party import.\n\nWhen omitted, the `src` directory will typically default to the directory containing the nearest `pyproject.toml`, `ruff.toml`, or `.ruff.toml` file (the \"project root\"), unless a configuration file is explicitly provided (e.g., via the `--config` command-line flag).\n\nThis field supports globs. For example, if you have a series of Python packages in a `python_modules` directory, `src = [\"python_modules/*\"]` would expand to incorporate all of the packages in that directory. User home directory and environment variables will also be expanded.", "type": ["array", "null"], "items": { "type": "string" } }, "tab-size": { "description": "The tabulation size to calculate line length.", "anyOf": [ { "$ref": "#/definitions/TabSize" }, { "type": "null" } ] }, "target-version": { "description": "The minimum Python version to target, e.g., when considering automatic code upgrades, like rewriting type annotations.\n\nIf omitted, and Ruff is configured via a `pyproject.toml` file, the target version will be inferred from its `project.requires-python` field (e.g., `requires-python = \">=3.8\"`). If Ruff is configured via `ruff.toml` or `.ruff.toml`, no such inference will be performed.", "anyOf": [ { "$ref": "#/definitions/PythonVersion" }, { "type": "null" } ] }, "task-tags": { "description": "A list of task tags to recognize (e.g., \"TODO\", \"FIXME\", \"XXX\").\n\nComments starting with these tags will be ignored by commented-out code detection (`ERA`), and skipped by line-length rules (`E501`) if `ignore-overlong-task-comments` is set to `true`.", "type": ["array", "null"], "items": { "type": "string" } }, "typing-modules": { "description": "A list of modules whose imports should be treated equivalently to members of the `typing` module.\n\nThis is useful for ensuring proper type annotation inference for projects that re-export `typing` and `typing_extensions` members from a compatibility module. If omitted, any members imported from modules apart from `typing` and `typing_extensions` will be treated as ordinary Python objects.", "type": ["array", "null"], "items": { "type": "string" } }, "unfixable": { "description": "A list of rule codes or prefixes to consider non-autofix-able.", "type": ["array", "null"], "items": { "$ref": "#/definitions/RuleSelector" } } }, "title": "Options", "type": "object" }
ruff
{ "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" }, "side": { "description": "The length of a side (for square)", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, square, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_b3b8733c
{ "properties": { "cipherredirect": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "cipherurl": { "type": "string" }, "clientauth": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "clientcert": { "enum": [ "Mandatory", "Optional" ], "type": "string" }, "commonname": { "type": "string" }, "dh": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dhcount": { "type": "integer" }, "dhfile": { "type": "string" }, "dhkeyexpsizelimit": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dtls1": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dtls12": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dtlsflag": { "readonly": true, "type": "boolean" }, "dtlsprofilename": { "type": "string" }, "ersa": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "ersacount": { "type": "integer" }, "nonfipsciphers": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "ocspstapling": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "pushenctrigger": { "enum": [ "Always", "Merge", "Ignore", "Timer" ], "type": "string" }, "redirectportrewrite": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "sendclosenotify": { "enum": [ "YES", "NO" ], "type": "string" }, "serverauth": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "service": { "readonly": true, "type": "integer" }, "servicename": { "type": "string" }, "sessreuse": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "sesstimeout": { "type": "integer" }, "skipcaname": { "readonly": true, "type": "boolean" }, "snienable": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "ssl2": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "ssl3": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "sslprofile": { "type": "string" }, "sslredirect": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "sslv2redirect": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "sslv2url": { "type": "string" }, "strictsigdigestcheck": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "tls1": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "tls11": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "tls12": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "tls13": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" } }, "title": "sslservice", "type": "object" }
o30981
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "open": { "type": "object", "properties": { "onActions": { "type": "array", "default": [], "items": { "type": "string", "format": "topic" } }, "onGlobalMethod": { "type": "string", "description": "method on the global object (window) which may be called to show the developer tools, for example from a bookmark", "default": "laxarShowDeveloperTools" } } }, "button": { "type": "object", "description": "allows to render a button that opens the popup", "properties": { "enabled": { "type": "boolean", "default": true }, "htmlLabel": { "type": "string", "default": "<i class='fa fa-cube'></i> DeveloperTools" } } }, "grid": { "type": "object", "properties": { "anchor": { "type": "string", "default": "[data-ax-page], [ax-page]" }, "columns": { "type": "object", "properties": { "count": { "type": "integer", "description": "The number of grid columns to draw", "default": 12 }, "width": { "type": "integer", "description": "The width of each CSS grid column (in pixels, including padding, without gutter)", "default": 78 }, "padding": { "type": "integer", "description": "The left and right padding for each grid column (in pixels)", "default": 13 }, "gutter": { "type": "integer", "description": "The horizontal space between two grid columns (in pixels).", "default": 13 } }, "default": { "width": 78, "gutter": 26, "padding": 13, "count": 12 } }, "css": { "type": "object", "default": { "margin": "0 auto", "box-sizing": "content-box", "position": "fixed", "top": 0, "right": 0, "bottom": 0, "left": 0, "z-index": 100 } } } }, "develop": { "type": "object", "description": "allows to use the development version (debug.html) of the developer tools", "properties": { "enabled": { "type": "boolean", "default": false } } }, "tracker": { "type": "object", "description": "track and validate pattern events (actions, resources, flags)", "properties": { "enabled": { "type": "boolean", "default": false } } } } }
o89609