json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [], "type": "object" }, "shape": { "description": "The shape type", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_8156f8cc
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ImboLauncher configuration", "description": "The configuration file used by ImboLauncher to start one or more Imbo servers", "type": "object", "properties": { "servers": { "description": "List of server definitions", "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "version": { "description": "Which Imbo version to use for this definition", "type": "string" }, "host": { "description": "Which host to use for this server", "type": "string" }, "port": { "description": "Which port to use for this server", "type": "number" }, "config": { "description": "Which configuration file to use for this server", "type": "string" } }, "required": [ "version", "host", "port", "config" ] } } }, "required": [ "servers" ] }
o47248
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_9553d703
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "HealthDescriptor", "description": "Health for an instance", "type": "object", "additionalProperties": false, "properties": { "srvcId": { "description": "Service ID, normally same as Module ID", "type": "string" }, "instId": { "description": "Instance ID, unique on node", "type": "string" }, "healthMessage": { "description": "Health message", "type": "string" }, "healthStatus": { "description": "Whether healthy", "type": "boolean" } }, "required": [ "srvcId", "instId", "healthMessage", "healthStatus" ] }
o41717
{ "definitions": { "HardwareParameterLimits": { "additionalProperties": false, "properties": { "max": { "minimum": 1, "type": "number" }, "min": { "minimum": 1, "type": "number" }, "value": { "minimum": 1, "type": "number" } }, "required": [ "min", "max", "value" ], "type": "object" } }, "errorMessage": { "uniqueItemProperties": "should NOT contain objects with the same offeringId" }, "items": { "additionalProperties": false, "properties": { "cpunumber": { "$ref": "#/definitions/HardwareParameterLimits" }, "cpuspeed": { "$ref": "#/definitions/HardwareParameterLimits" }, "memory": { "$ref": "#/definitions/HardwareParameterLimits" }, "offeringId": { "type": "string" } }, "required": [ "offeringId", "cpunumber", "cpuspeed", "memory" ], "type": "object" }, "type": "array", "uniqueItemProperties": [ "offeringId" ] }
o27827
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "binwalk_details": { "type": "object", "description": "Details of Binwalk run on one file", "properties": { "path": { "type": "string" }, "output": { "type": "array", "items": { "type": "string" } } }, "required": [ "path", "output" ], "additionalProperties": false } }, "type": "object", "description": "Result of Binwalk worker", "properties": { "schema": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the schema", "pattern": "^[a-zA-Z0-9_]+$" }, "version": { "type": "string", "description": "Version of the schema", "pattern": "^[0-9]+-[0-9]+-[0-9]+$" }, "url": { "type": "string", "description": "Full URL of the schema", "format": "uri" } }, "required": [ "name", "version" ], "additionalProperties": false }, "_release": { "type": "string", "description": "Unique release id in form of \"ecosystem:package:version\"" }, "status": { "type": "string", "enum": [ "success", "error" ] }, "details": { "type": "array", "items": { "$ref": "#/definitions/binwalk_details" } }, "summary": { "type": "array", "items": { "type": "string" } } }, "required": [ "status", "details", "summary" ], "additionalProperties": false, "title": "binary_data-v1-0-0" }
o42027
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "NewDemoModel", "required": [ "Metadata" ], "type": "object", "properties": { "Metadata": { "required": [ "Masters", "Minions", "Provider", "RAM", "vcpu", "Storage" ], "properties": { "Masters": { "properties": { "Instance": { "type": "string" }, "size": { "type": "integer" } }, "type": "object" }, "Minions": { "properties": { "Instance": { "type": "string" }, "size": { "type": "integer" } }, "type": "object" }, "Provider": { "type": "string" }, "RAM": { "type": "string" }, "Storage": { "type": "string" }, "vcpu": { "type": "integer" } }, "type": "object" } } }
o32847
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Kangrat", "description": "A schema for Kangrat", "type": "object", "properties": { "siteName": { "type": "string", "default": "My Kangrat Site", "description": "The name of the site" }, "author": { "type": "string", "default": "somebody", "description": "The author of the site" }, "basePage": { "type": "string", "default": "./basepage.html", "description": "The base page to build the templates off of" }, "pages": { "type": "object", "additionalProperties": { "$ref": "#/definitions/page" }, "description": "A map where the keys is the page name, the value is the schema and the template" }, "elements": { "type": "object", "description": "A map where the keys are the element tag, and the value is the data about how to get the element", "additionalProperties": { "$ref": "#/definitions/bowerElement" } } }, "additionalProperties": true, "required": [ "siteName", "author", "basePage", "pages", "elements" ], "definitions": { "page": { "type": "object", "properties": { "schema": { "type": "object", "description": "A declaration of schema fields as the keys, the type of the field as a value", "additionalProperties": { "type": "string", "enum": [ "string", "number", "object", "array", "boolean" ] } }, "template": { "type": "array", "items": { "$ref": "#/definitions/templateElement" }, "description": "an array of elements and their bindings to a schema field" } }, "additionalProperties": false }, "templateElement": { "type": "object", "properties": { "elementTag": { "type": "string" }, "propertyBindings": { "type": "object", "description": "A declaration of bindings for this template, keys are the schema field and values are the element property" } }, "required": [ "elementTag" ] }, "bowerElement": { "type": "object", "properties": { "bowerPackage": { "type": "string", "description": "The package to install with bower for this element" }, "elementPath": { "type": "string", "description": "The path to the .html file to include (with root set to bower_components, no leading dotslash)" } }, "additionalProperties": false } } }
o72570
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "status": { "type": "string", "enum": [ "initialized", "failure" ], "default": "initialized", "description": "der Status der StartStoppApplikation" }, "messages": { "type": "array", "items": { "type": "string" } } }, "required": [ "status" ] }
o79714
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "diskDevice": { "additionalProperties": false, "properties": { "device": { "pattern": "^/dev/[^/]+(/[^/]+)*$", "type": "string" }, "type": { "enum": [ "disk" ] } }, "required": [ "type", "device" ] }, "diskUUID": { "additionalProperties": false, "properties": { "label": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "type": "string" }, "type": { "enum": [ "disk" ] } }, "required": [ "type", "label" ] }, "nfs": { "additionalProperties": false, "properties": { "remotePath": { "pattern": "^(/[^/]+)+$", "type": "string" }, "server": { "oneOf": [ { "format": "host-name" }, { "format": "ipv4" }, { "format": "ipv6" } ], "type": "string" }, "type": { "enum": [ "nfs" ] } }, "required": [ "type", "server", "remotePath" ] }, "tmpfs": { "additionalProperties": false, "properties": { "sizeInMB": { "maximum": 512, "minimum": 16, "type": "integer" }, "type": { "enum": [ "tmpfs" ] } }, "required": [ "type", "sizeInMB" ] } }, "description": "schema for an fstab entry", "id": "classpath:///jsonschema/entry-schema.json#", "properties": { "fstype": { "enum": [ "ext3", "ext4", "btrfs" ] }, "options": { "items": { "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "readonly": { "type": "boolean" }, "storage": { "oneOf": [ { "$ref": "#/definitions/diskDevice" }, { "$ref": "#/definitions/diskUUID" }, { "$ref": "#/definitions/nfs" }, { "$ref": "#/definitions/tmpfs" } ], "type": "object" } }, "required": [ "storage" ], "type": "object" }
o83760
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "http://localhost:3000/schemas/refresh-token-request.json#", "properties": { "grant_type": { "enum": [ "refresh_token" ], "type": "string" }, "redirect_uri": { "type": "string" }, "refresh_token": { "minLength": 1, "type": "string" }, "scope": { "enum": [ "openid", "profile", "email", "address", "phone" ], "type": "array" } }, "required": [ "grant_type", "refresh_token" ], "title": "refresh", "type": "object" }
o20478
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape to calculate the area of", "enum": [ "Square", "Rectangle", "Triangle", "Circle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f3c5d1e7
{ "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", "base", "height", "length", "width" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, triangle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_27dec4dc
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "events": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" }, "coverPicture": { "type": [ "string", "null" ] }, "profilePicture": { "type": "string" }, "description": { "type": [ "string", "null" ] }, "distance": { "type": "string" }, "startTime": { "type": "string" }, "endTime": { "type": [ "string", "null" ] }, "timeFromNow": { "type": "integer" }, "category": { "type": [ "string", "null" ] }, "stats": { "type": "object", "properties": { "attending": { "type": "integer" }, "declined": { "type": "integer" }, "maybe": { "type": "integer" }, "noreply": { "type": "integer" } }, "required": [ "attending", "declined", "maybe", "noreply" ] }, "venue": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "about": { "type": [ "string", "null" ] }, "emails": { "type": [ "array", "null" ] }, "coverPicture": { "type": "string" }, "profilePicture": { "type": "string" }, "location": { "type": "object", "properties": { "city": { "type": "string" }, "country": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "state": { "type": "string" }, "street": { "type": "string" }, "zip": { "type": "string" } }, "required": [ "latitude", "longitude" ] } }, "required": [ "id", "name", "location" ] } }, "required": [ "id", "name", "distance", "startTime", "timeFromNow", "stats", "venue" ] } }, "metadata": { "type": "object", "properties": { "venues": { "type": "integer" }, "venuesWithEvents": { "type": "integer" }, "events": { "type": "integer" } }, "required": [ "venues", "venuesWithEvents", "events" ] } }, "required": [ "events", "metadata" ] }
o79030
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "apiTest": { "type": "object", "properties": { "api": { "type": "string", "description": "URL called to perform the api test" }, "message": { "type": "string", "description": "Describes the outcome of the api test. Includes any exceptions if required" }, "success": { "type": "boolean", "description": "true if the api test succeeds or false if the api test fails" } }, "additionalProperties": false, "required": [ "api", "message", "success" ] } }, "type": "array", "items": { "$ref": "#/definitions/apiTest" } }
o79518
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additinalProperties": false, "properties": { "title": { "type": "string" }, "icon": { "type": "string" }, "background": { "type": "string" }, "background-color": { "type": "string", "format": "css-color" }, "icon-size": { "type": "integer" }, "window": { "type": "object", "properties": { "position": { "type": "object", "properties": { "x": { "type": "integer" }, "y": { "type": "integer" } }, "required": [ "x", "y" ] }, "size": { "type": "object", "properties": { "width": { "type": "integer" }, "height": { "type": "integer" } }, "required": [ "width", "height" ] } } }, "format": { "type": "string", "enum": [ "UDRW", "UDRO", "UDCO", "UDZO", "ULFO", "UDBZ" ] }, "contents": { "type": "array", "items": { "type": "object", "properties": { "x": { "type": "integer" }, "y": { "type": "integer" }, "type": { "type": "string", "enum": [ "link", "file", "position" ] }, "path": { "type": "string" }, "name": { "type": "string" } }, "required": [ "x", "y", "type", "path" ] } } }, "required": [ "title", "contents" ] }
o65022
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_LeaseSpec": { "description": "LeaseSpec is a specification of a Lease.", "properties": { "acquireTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "acquireTime is a time when the current lease was acquired." }, "holderIdentity": { "description": "holderIdentity contains the identity of the holder of a current lease.", "type": "string" }, "leaseDurationSeconds": { "_format": "int32", "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", "type": "integer" }, "leaseTransitions": { "_format": "int32", "description": "leaseTransitions is the number of transitions of a lease between holders.", "type": "integer" }, "renewTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "renewTime is a time when the current holder of a lease has last updated the lease." } }, "type": "object" }, "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_MicroTime": { "_format": "date-time", "description": "MicroTime is version of Time with microsecond level precision.", "type": "string" }, "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": "Lease defines a lease concept.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "Lease" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_coordination_v1beta1_LeaseSpec", "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "coordination.k8s.io", "kind": "Lease", "version": "v1beta1" } ] }
kb_514_Normalized
{ "$ref": "#/definitions/ExcludeConfig", "definitions": { "ExcludeConfig": { "additionalProperties": false, "description": "defines filters to exclude folders, types or files from all or specific checks", "properties": { "": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 3 }, "Anonymous": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 4 }, "ArrayAccess": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 5 }, "ArrayLiteral": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 6 }, "ArrowFunction": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 7 }, "AvoidIdentifier": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 8 }, "AvoidStarImport": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 9 }, "AvoidTernaryOperator": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 10 }, "BlockBreakingConditional": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 11 }, "CatchParameterName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 12 }, "CodeSimilarity": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 13 }, "ConditionalCompilation": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 14 }, "ConstantName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 15 }, "CyclomaticComplexity": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 16 }, "DefaultComesLast": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 17 }, "DocCommentStyle": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 18 }, "Dynamic": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 19 }, "ERegLiteral": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 20 }, "EmptyBlock": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 21 }, "EmptyLines": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 22 }, "EmptyPackage": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 23 }, "ExtendedEmptyLines": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 24 }, "FieldDocComment": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 25 }, "FileLength": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 26 }, "Final": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 27 }, "HexadecimalLiteral": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 28 }, "HiddenField": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 29 }, "Indentation": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 30 }, "IndentationCharacter": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 31 }, "InnerAssignment": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 32 }, "Interface": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 33 }, "LeftCurly": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 34 }, "LineLength": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 35 }, "ListenerName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 36 }, "LocalVariableName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 37 }, "MagicNumber": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 38 }, "MemberName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 39 }, "MethodCount": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 40 }, "MethodLength": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 41 }, "MethodName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 42 }, "ModifierOrder": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 43 }, "MultipleStringLiterals": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 44 }, "MultipleVariableDeclarations": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 45 }, "NeedBraces": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 46 }, "NestedControlFlow": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 47 }, "NestedForDepth": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 48 }, "NestedIfDepth": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 49 }, "NestedTryDepth": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 50 }, "NullableParameter": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 51 }, "OperatorWhitespace": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 52 }, "OperatorWrap": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 53 }, "ParameterName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 54 }, "ParameterNumber": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 55 }, "PublicAccessor": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 56 }, "RedundantAccessMeta": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 57 }, "RedundantAllowMeta": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 58 }, "RedundantModifier": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 59 }, "Return": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 60 }, "ReturnCount": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 61 }, "RightCurly": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 62 }, "SeparatorWhitespace": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 63 }, "SeparatorWrap": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 64 }, "SimplifyBooleanExpression": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 65 }, "SimplifyBooleanReturn": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 66 }, "Spacing": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 67 }, "StringLiteral": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 68 }, "TODOComment": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 69 }, "TabForAligning": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 70 }, "Trace": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 71 }, "TrailingWhitespace": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 72 }, "Type": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 73 }, "TypeDocComment": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 74 }, "TypeName": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 75 }, "UnnecessaryConstructor": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 76 }, "UnusedImport": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 77 }, "UnusedLocalVar": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 78 }, "VarTypeHint": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 79 }, "VariableInitialisation": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 80 }, "WhitespaceAfter": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 81 }, "WhitespaceAround": { "$ref": "#/definitions/ExcludeFilterList", "propertyOrder": 82 }, "all": { "$ref": "#/definitions/ExcludeFilterList" }, "path": { "description": "filters excludes relative to\n\t- RELATIVE_TO_PROJECT = use project root\n\t- RELATIVE_TO_SOURCE = use path(s) specified via \"-s <path>\" command line switches", "enum": [ "RELATIVE_TO_PROJECT", "RELATIVE_TO_SOURCE" ], "type": "string" }, "version": { "maximum": 1, "minimum": 1, "type": "integer" } }, "type": "object" }, "ExcludeFilterList": { "description": "list of path filters, e.g.\n\t- full type names\n\t- names of individual folder or subfolders\n\t- partial folder or type names\n\n\teach line can have an additional range specification:\n\t- \":<linenumber>\" = only matches a specific line number - valid line number start at 1\n\t- \":<start>-<end>\" = matches line numbers from <start> to <end> (including both)\n\t- \":<identifier>\" = matches any line or block that has <identifier> name (Haxe keywords currently unsupported)", "items": { "type": "string" }, "type": "array" } } }
o18948
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "email": { "_format": "email", "maxLength": 1024, "type": "string" }, "password": { "maxLength": 2048, "minLength": 8, "type": "string" }, "token": { "type": "string" } }, "required": [ "token", "email", "password" ], "type": "object" }
o6251
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://mindsnacks.github.io/Zinc/schemas/v1/manifest.json#", "type": "object", "required": [ "catalog", "bundle", "version", "files" ], "additionalProperties": false, "properties": { "format": { "type": "string", "pattern": "1" }, "catalog": { "type": "string", "minLength": 1 }, "bundle": { "type": "string", "minLength": 1 }, "version": { "type": "integer", "minimum": 1 }, "flavors": { "type": "array", "items": { "type": "string", "minLength": 1 } }, "files": { "type": "object", "patternProperties": { ".+": { "type": "object", "required": [ "sha", "formats" ], "additionalProperties": false, "properties": { "sha": { "type": "string", "pattern": "[0-9a-f]{40}" }, "formats": { "type": "object", "additionalProperties": false, "patternProperties": { "^(gz|raw)$": { "type": "object", "properties": { "size": { "type": "integer", "minimum": 0 } }, "required": [ "size" ], "additionalProperties": false } } }, "flavors": { "type": "array", "items": { "type": "string", "minLength": 1 } } } } } } } }
o60880
{ "properties": { "end_time": { "description": "The end time of the event", "format": "date-time", "type": "string" }, "location": { "description": "The location of the event", "type": "string" }, "participants": { "description": "The participants of the event", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the event", "format": "date-time", "type": "string" }, "title": { "description": "The title of the event", "type": "string" } }, "required": [ "title", "start_time", "end_time" ], "type": "object" }
create_calendar_event_8c89f79b
{ "additionalProperties": false, "properties": { "data": {}, "error": {}, "meta": { "type": "object" }, "warning": {} }, "title": "API Results", "type": "object" }
o10089
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Problem set", "type": "array", "items": { "title": "Problem", "type": "object", "properties": { "GoalTypes": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "SuggestFuzzyTypes": { "type": "boolean" }, "SuggestTypes": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true }, "Type": { "type": "string" } } }, "required": [ "Type", "GoalTypes", "SuggestTypes", "SuggestEnvironmentTypes" ] }
o33017
{ "description": "EndpointPort represents a Port used by an EndpointSlice", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", "type": [ "string", "null" ] }, "name": { "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": [ "string", "null" ] }, "port": { "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "format": "int32", "type": [ "integer", "null" ] }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": [ "string", "null" ] } }, "type": "object" }
kb_301_Normalized
{ "additionalProperties": false, "definitions": { "attributes": { "additionalProperties": { "type": "string" }, "type": "object" }, "selector": { "additionalProperties": { "type": "string" }, "type": "object" } }, "description": "This schema describes the structure of the devfile object", "meta:license": [ " Copyright (c) 2012-2019 Red Hat, Inc.", " This program and the accompanying materials are made", " available under the terms of the Eclipse Public License 2.0", " which is available at https://www.eclipse.org/legal/epl-2.0/", " SPDX-License-Identifier: EPL-2.0", " Contributors:", " Red Hat, Inc. - initial API and implementation" ], "properties": { "apiVersion": { "const": "1.0.0", "title": "Devfile API Version" }, "attributes": { "additionalProperties": { "type": "string" }, "editorFree": { "default": "false", "description": "Defines that no editor is needed and default one should not be provisioned. Defaults to `false`.", "type": "boolean" }, "persistVolumes": { "default": "true", "description": "Defines whether volumes should be stored or not. Defaults to `true`. In case of `false` workspace volumes will be created as `emptyDir`. The data in the `emptyDir` volume is deleted forever when a workspace Pod is removed for any reason(pod is crashed, workspace is restarted).", "type": "boolean" }, "type": "object" }, "commands": { "description": "Description of the predefined commands to be available in workspace", "items": { "additionalProperties": false, "properties": { "actions": { "description": "List of the actions of given command. Now the only one command must be specified in list but there are plans to implement supporting multiple actions commands.", "items": { "oneOf": [ { "additionalProperties": false, "properties": { "command": {}, "component": {}, "type": {}, "workdir": {} }, "required": [ "type", "component", "command" ] }, { "additionalProperties": false, "anyOf": [ { "additionalProperties": true, "required": [ "type", "reference" ] }, { "additionalProperties": true, "required": [ "type", "referenceContent" ] } ], "properties": { "reference": {}, "referenceContent": {}, "type": {} } } ], "properties": { "command": { "description": "The actual action command-line string", "examples": [ "mvn package" ], "type": "string" }, "component": { "description": "Describes component to which given action relates", "examples": [ "mvn-stack" ], "type": "string" }, "reference": { "description": "the path relative to the location of the devfile to the configuration file defining one or more actions in the editor-specific format", "examples": [ "../ide-config/launch.json" ], "type": "string" }, "referenceContent": { "description": "The content of the referenced configuration file that defines one or more actions in the editor-specific format", "examples": [ "{\"version\": \"2.0.0\",\n \"tasks\": [\n {\n \"type\": \"typescript\",\n \"tsconfig\": \"tsconfig.json\",\n \"problemMatcher\": [\n \"$tsc\"\n ],\n \"group\": {\n \"kind\": \"build\",\n \"isDefault\": true\n }\n }\n ]}" ], "type": "string" }, "type": { "description": "Describes action type", "examples": [ "exec", "vscode-task", "vscode-launch" ], "type": "string" }, "workdir": { "description": "Working directory where the command should be executed", "examples": [ "/projects/spring-petclinic" ], "type": "string" } }, "type": "object" }, "maxItems": 1, "minItems": 1, "title": "The Command Actions List", "type": "array" }, "attributes": { "$ref": "#/definitions/attributes", "description": "Additional command attributes" }, "name": { "description": "Describes the name of the command. Should be unique per commands set.", "examples": [ "build" ], "type": "string" }, "previewUrl": { "properties": { "path": { "type": "string" }, "port": { "maximum": 65535, "minimum": 0, "type": "number" } }, "required": [ "port" ], "type": "object" } }, "required": [ "name", "actions" ], "type": "object" }, "title": "The Commands List", "type": "array" }, "components": { "description": "Description of the workspace components, such as editor and plugins", "items": { "additionalProperties": true, "if": { "properties": { "type": { "type": "string" } }, "required": [ "type" ] }, "properties": { "alias": { "description": "The name using which other places of this devfile (like commands) can refer to this component. This attribute is optional but must be unique in the devfile if specified.", "examples": [ "mvn-stack" ], "type": "string" }, "automountWorkspaceSecrets": { "description": "Describes whether namespace secrets should be mount to the component.", "type": "boolean" }, "cpuLimit": { "anyOf": [ { "type": "string" }, { "exclusiveMinimum": 0, "type": "number" } ], "description": "Describes CPU limit for the component. You can express CPU limit as a float-point cores or as a fixed-point integer millicores using 'm' suffix", "examples": [ "2", "0.235", "100m", "1230m" ] }, "cpuRequest": { "anyOf": [ { "type": "string" }, { "exclusiveMinimum": 0, "type": "number" } ], "description": "Describes CPU request for the component. You can express CPU request as a float-point cores or as a fixed-point integer millicores using 'm' suffix", "examples": [ "2", "0.235", "100m", "1230m" ] }, "endpoints": { "description": "Describes dockerimage component endpoints", "items": { "description": "Describes dockerimage component endpoint", "name": "object", "properties": { "attributes": { "additionalProperties": { "type": "string" }, "discoverable": { "default": "false", "description": "Identifies endpoint as accessible by its name.", "type": "boolean" }, "javaType": "java.util.Map<String, String>", "protocol": { "description": "Defines protocol that should be used for communication with endpoint. Is used for endpoint URL evaluation", "type": "boolean" }, "public": { "default": "true", "description": "Identifies endpoint as workspace internally or externally accessible.", "type": "boolean" }, "secure": { "default": "false", "description": "Identifies server as secure or non-secure. Requests to secure servers will be authenticated and must contain machine token", "type": "boolean" }, "type": "object" }, "name": { "description": "The Endpoint name", "title": "The Endpoint Name", "type": "string" }, "port": { "description": "The container port that should be used as endpoint", "title": "The Endpoint Port", "type": "integer" } }, "required": [ "name", "port" ] }, "type": "array" }, "env": { "description": "The environment variables list that should be set to docker container", "items": { "description": "Describes environment variable", "properties": { "name": { "description": "The environment variable name", "title": "The Environment Variable Name", "type": "string" }, "value": { "description": "The environment variable value", "title": "The Environment Variable Value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "type": "array" }, "mountSources": { "default": "false", "description": "Describes whether projects sources should be mount to the component. `CHE_PROJECTS_ROOT` environment variable should contains a path where projects sources are mount", "type": "boolean" }, "type": { "description": "Describes type of the component, e.g. whether it is an plugin or editor or other type", "enum": [ "cheEditor", "chePlugin", "kubernetes", "openshift", "dockerimage" ], "examples": [ "chePlugin", "cheEditor", "kubernetes", "openshift", "dockerimage" ] }, "volumes": { "description": "Describes volumes which should be mount to component", "items": { "description": "Describe volume that should be mount to component", "properties": { "containerPath": { "examples": [ "/home/user/data" ], "title": "The path where volume should be mount to container", "type": "string" }, "name": { "description": "The volume name. If several components mount the same volume then they will reuse the volume and will be able to access to the same files", "examples": [ "my-data" ], "title": "The Volume Name", "type": "string" } }, "required": [ "name", "containerPath" ], "type": "object" }, "type": "array" } }, "required": [ "type" ], "then": { "allOf": [ { "if": { "properties": { "type": { "enum": [ "cheEditor", "chePlugin" ] } } }, "then": { "oneOf": [ { "not": { "required": [ "reference" ] }, "required": [ "id" ] }, { "not": { "required": [ "id" ] }, "required": [ "reference" ] } ], "properties": { "alias": {}, "id": { "description": "Describes the component id. It has the following format: {plugin/editor PUBLISHER}/{plugin/editor NAME}/{plugin/editor VERSION}", "examples": [ "eclipse/maven-jdk8/1.0.0" ], "pattern": "[a-z0-9_\\-.]+/[a-z0-9_\\-.]+/[a-z0-9_\\-.]+$", "type": "string" }, "memoryLimit": { "anyOf": [ { "type": "string" }, { "exclusiveMinimum": 0, "type": "integer" } ], "description": "Describes memory limit for the component. You can express memory as a plain integer or as a fixed-point integer using one of these suffixes: E, P, T, G, M, K. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki", "examples": [ "128974848", "129e6", "129M", "123Mi" ] }, "memoryRequest": { "anyOf": [ { "type": "string" }, { "exclusiveMinimum": 0, "type": "integer" } ], "description": "Describes memory request for the component. You can express memory as a plain integer or as a fixed-point integer using one of these suffixes: E, P, T, G, M, K. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki", "examples": [ "128974848", "129e6", "129M", "123Mi" ] }, "reference": { "description": "Describes raw location of plugin yaml file.", "examples": [ "https://pastebin.com/raw/kYprWiNB" ], "type": "string" }, "registryUrl": { "description": "Describes URL of custom plugin registry.", "examples": [ "https://che-plugin-registry.openshift.io/v3/" ], "pattern": "^(https?://)[a-zA-Z0-9_\\-./]+", "type": "string" }, "type": {} } } }, { "if": { "properties": { "type": { "enum": [ "cheEditor" ] } } }, "then": { "additionalProperties": false, "properties": { "alias": {}, "automountWorkspaceSecrets": {}, "cpuLimit": {}, "cpuRequest": {}, "endpoints": {}, "env": {}, "id": {}, "memoryLimit": {}, "memoryRequest": {}, "reference": {}, "registryUrl": {}, "type": {}, "volumes": {} } } }, { "if": { "properties": { "type": { "enum": [ "chePlugin" ] } } }, "then": { "additionalProperties": false, "properties": { "alias": {}, "automountWorkspaceSecrets": {}, "cpuLimit": {}, "cpuRequest": {}, "endpoints": {}, "env": {}, "id": {}, "memoryLimit": {}, "memoryRequest": {}, "preferences": { "additionalProperties": { "anyOf": [ { "type": [ "boolean", "string", "number" ] }, { "items": { "type": [ "boolean", "string", "number" ] }, "type": "array" } ] }, "description": "Additional plugin preferences", "examples": [ "{\"java.home\": \"/home/user/jdk11\", \"java.jdt.ls.vmargs\": \"-Xmx1G\"}" ], "type": "object" }, "reference": {}, "registryUrl": {}, "type": {}, "volumes": {} } } }, { "if": { "properties": { "type": { "enum": [ "kubernetes", "openshift" ] } } }, "then": { "additionalProperties": false, "anyOf": [ { "additionalProperties": true, "required": [ "reference" ] }, { "additionalProperties": true, "required": [ "referenceContent" ] } ], "properties": { "alias": {}, "automountWorkspaceSecrets": {}, "endpoints": {}, "entrypoints": { "items": { "properties": { "args": { "default": null, "description": "The arguments to supply to the command running the component. The arguments are supplied either to the default command provided in the image of the container or to the overridden command. Defaults to null, meaning use whatever is defined in the image.", "examples": [ "['-R', '-f']" ], "items": { "type": "string" }, "type": "array" }, "command": { "default": null, "description": "The command to run in the component instead of the default one provided in the image of the container. Defaults to null, meaning use whatever is defined in the image.", "examples": [ "['/bin/sh', '-c']" ], "items": { "type": "string" }, "type": "array" }, "containerName": { "description": "The name of the container to apply the entrypoint to. If not specified, the entrypoint is modified on all matching containers.", "type": "string" }, "parentName": { "description": "The name of the top level object in the referenced object list in which to search for containers. If not specified, the objects to search through can have any name.", "type": "string" }, "parentSelector": { "$ref": "#/definitions/selector", "description": "The selector on labels of the top level objects in the referenced list in which to search for containers. If not specified, the objects to search through can have any labels." } }, "type": "object" }, "type": "array" }, "env": {}, "mountSources": {}, "reference": { "description": "Describes absolute or devfile-relative location of Kubernetes list yaml file. Applicable only for 'kubernetes' and 'openshift' type components", "examples": [ "petclinic-app.yaml" ], "type": "string" }, "referenceContent": { "description": "Inlined content of a file specified in field 'reference'", "examples": [ "{\"kind\":\"List\",\"items\":[{\"apiVersion\":\"v1\",\"kind\":\"Pod\",\"metadata\":{\"name\":\"ws\"},\"spec\":{\"containers\":[{\"image\":\"quay.io/eclipse/che-dev:nightly\"}]}}]}" ], "type": "string" }, "selector": { "$ref": "#/definitions/selector", "description": "Describes the objects selector for the recipe type components. Allows to pick-up only selected items from k8s/openshift list", "examples": [ "{\n \"app.kubernetes.io/name\" : \"mysql\", \n \"app.kubernetes.io/component\" : \"database\", \n \"app.kubernetes.io/part-of\" : \"petclinic\" \n}" ] }, "type": {}, "volumes": {} } } }, { "if": { "properties": { "type": { "enum": [ "dockerimage" ] } } }, "then": { "additionalProperties": false, "properties": { "alias": {}, "args": { "default": null, "description": "The arguments to supply to the command running the dockerimage component. The arguments are supplied either to the default command provided in the image or to the overridden command. Defaults to null, meaning use whatever is defined in the image.", "examples": [ "['-R', '-f']" ], "items": { "type": "string" }, "type": "array" }, "automountWorkspaceSecrets": {}, "command": { "default": null, "description": "The command to run in the dockerimage component instead of the default one provided in the image. Defaults to null, meaning use whatever is defined in the image.", "examples": [ "['/bin/sh', '-c']" ], "items": { "type": "string" }, "type": "array" }, "cpuLimit": {}, "cpuRequest": {}, "endpoints": {}, "env": {}, "image": { "description": "Specifies the docker image that should be used for component", "examples": [ "eclipse/maven-jdk8:1.0.0" ], "type": "string" }, "memoryLimit": { "anyOf": [ { "type": "string" }, { "exclusiveMinimum": 0, "type": "integer" } ], "description": "Describes memory limit for the component. You can express memory as a plain integer or as a fixed-point integer using one of these suffixes: E, P, T, G, M, K. You can also use the power-of-two equivalents: Ei, Pi, Ti, Gi, Mi, Ki", "examples": [ "128974848", "129e6", "129M", "123Mi" ] }, "mountSources": {}, "type": {}, "volumes": {} }, "required": [ "image", "memoryLimit" ] } } ] }, "type": "object" }, "title": "The Components List", "type": "array" }, "metadata": { "additionalProperties": false, "anyOf": [ { "required": [ "name" ] }, { "required": [ "generateName" ] } ], "properties": { "generateName": { "description": "Workspaces created from devfile, will use it as base and append random suffix. It's used when name is not defined.", "examples": [ "petclinic-" ], "minLength": 1, "title": "Devfile Generate Name", "type": "string" }, "name": { "description": "The name of the devfile. Workspaces created from devfile, will inherit this name", "examples": [ "petclinic-dev-environment" ], "minLength": 1, "title": "Devfile Name", "type": "string" } }, "type": "object" }, "projects": { "description": "Description of the projects, containing names and sources locations", "items": { "additionalProperties": false, "properties": { "clonePath": { "description": "The path relative to the root of the projects to which this project should be cloned into. This is a unix-style relative path (i.e. uses forward slashes). The path is invalid if it is absolute or tries to escape the project root through the usage of '..'. If not specified, defaults to the project name.", "type": "string" }, "name": { "examples": [ "petclinic" ], "title": "The Project Name", "type": "string" }, "source": { "description": "Describes the project's source - type and location", "properties": { "branch": { "description": "The name of the of the branch to check out after obtaining the source from the location. The branch has to already exist in the source otherwise the default branch is used. In case of git, this is also the name of the remote branch to push to.", "examples": [ "master", "feature-42" ], "type": "string" }, "commitId": { "description": "The id of the commit to reset the checked out branch to. Note that this is equivalent to 'startPoint' and provided for convenience.", "examples": [ "349d3ad" ], "type": "string" }, "location": { "description": "Project's source location address. Should be URL for git and github located projects, or file:// for zip.", "examples": [ "[email protected]:spring-projects/spring-petclinic.git" ], "type": "string" }, "sparseCheckoutDir": { "description": "Part of project to populate in the working directory.", "examples": [ "/core/", "core/", "core", "/wsmaster/che-core-api-workspace/", "/d*" ], "type": "string" }, "startPoint": { "description": "The tag or commit id to reset the checked out branch to.", "examples": [ "release/4.2", "349d3ad", "v4.2.0" ], "type": "string" }, "tag": { "description": "The name of the tag to reset the checked out branch to. Note that this is equivalent to 'startPoint' and provided for convenience.", "examples": [ "v4.2.0" ], "type": "string" }, "type": { "description": "Project's source type.", "examples": [ "git", "github", "zip" ], "type": "string" } }, "required": [ "type", "location" ], "title": "The Project Source object", "type": "object" } }, "required": [ "name", "source" ], "type": "object" }, "title": "The Projects List", "type": "array" } }, "required": [ "apiVersion", "metadata" ], "title": "Devfile object", "type": "object" }
o32934
{ "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": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "current": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, "required": [ "metric", "current" ], "type": "object" }
kb_733_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://flynn.io/schema/common#", "definitions": { "id": { "description": "unique identifier", "format": "uuid", "type": "string" }, "created_at": { "description": "object creation timestamp", "format": "date-time", "type": "string" }, "updated_at": { "description": "object last updated timestamp", "format": "date-time", "type": "string" }, "config": { "type": "object", "additionalProperties": { "type": "string" } } }, "properties": { "id": { "$ref": "#/definitions/id" }, "created_at": { "$ref": "#/definitions/created_at" }, "updated_at": { "$ref": "#/definitions/updated_at" }, "config": { "$ref": "#/definitions/config" } }, "required": [ "id", "created_at", "updated_at", "config" ] }
o89016
{ "additionalProperties": false, "items": { "additionalProperties": false, "properties": { "creator": { "type": "string" }, "creatorScore": { "type": "number" }, "lastEventId": { "type": "string" }, "photographer": { "type": "string" }, "productId": { "type": "string" } }, "required": [ "productId" ], "type": "object" }, "self": { "format": "jsonschema", "name": "contribution/items", "vendor": "com.nordstrom", "version": "1-0-0" }, "type": "array" }
o12085
{ "properties": { "down_payment": { "description": "The down payment amount", "type": "number" }, "insurance": { "description": "The annual insurance amount", "type": "number" }, "interest_rate": { "description": "The annual interest rate", "type": "number" }, "loan_amount": { "description": "The loan amount", "type": "number" }, "loan_term": { "description": "The term of the loan in years", "type": "integer" }, "property_tax": { "description": "The annual property tax amount", "type": "number" } }, "required": [ "loan_amount", "interest_rate", "loan_term", "down_payment", "property_tax", "insurance" ], "type": "object" }
calculate_mortgage_payment_f78dc2f8
{ "type": "object", "properties": { "map1": { "$ref": "#/definitions/MyMap1" }, "map2": { "$ref": "#/definitions/MyMap2" } }, "required": [ "map1", "map2" ], "definitions": { "MyMap1": { "type": "object", "additionalProperties": { "$ref": "#/definitions/MyType" } }, "MyType": { "type": "object", "properties": {} }, "MyMap2": { "description": "The additionalProperties annotation should be ignored", "additionalProperties": { "type": [ "string", "number" ] }, "type": "object" } }, "$schema": "http://json-schema.org/draft-04/schema#" }
o25956
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangle)", "type": "number" }, "height": { "description": "The height of the shape (for triangle)", "type": "number" }, "length": { "description": "The length of the shape (for rectangle)", "type": "number" }, "radius": { "description": "The radius of the shape (for circle)", "type": "number" }, "side_length": { "description": "The side length of the shape (for square)", "type": "number" }, "width": { "description": "The width of the shape (for rectangle)", "type": "number" } }, "required": [ "side_length" ], "type": "object" }, "shape": { "description": "The shape to calculate the area of", "enum": [ "square", "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_0fc2aec9
{ "properties": { "attachments": { "description": "The file path(s) of the attachments", "items": { "type": "string" }, "type": "array" }, "bcc": { "description": "The email address(es) to be blind carbon copied", "type": "string" }, "body": { "description": "The body of the email", "type": "string" }, "cc": { "description": "The email address(es) to be carbon copied", "type": "string" }, "subject": { "description": "The subject of the email", "type": "string" }, "to": { "description": "The email address of the recipient", "format": "email", "type": "string" } }, "required": [ "to", "subject", "body" ], "type": "object" }
send_email_f3f10120
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelTestCaseFinishedEvent" ] }, "version": { "type": "string", "enum": [ "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": { "outcome": { "type": "object", "properties": { "verdict": { "type": "string", "enum": [ "PASSED", "FAILED", "INCONCLUSIVE" ] }, "conclusion": { "type": "string", "enum": [ "SUCCESSFUL", "FAILED", "ABORTED", "TIMED_OUT", "INCONCLUSIVE" ] }, "description": { "type": "string" }, "metrics": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": {} }, "required": [ "name", "value" ], "additionalProperties": false } } }, "required": [ "verdict", "conclusion" ], "additionalProperties": false }, "persistentLogs": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "uri": { "type": "string" } }, "required": [ "name", "uri" ], "additionalProperties": false } }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "outcome" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additionalProperties": false }
o5398
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "nifti" ], "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } } }, "config": { "type": "object", "properties": {} } }, "title": "Invocation manifest for MRIQC: NR-IQMs for Functional MRI (mriqc v0.9.0-0)" }
o41343
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Doctrine ORM Entity JSON schema for Xcore Generator", "type": "object", "definitions": { "entity-name": { "type": "string", "description": "Entity name without namespace", "minLength": 1 }, "property-name": { "type": "string", "description": "Property name", "minLength": 1 } }, "properties": { "name": { "$ref": "#/definitions/entity-name" }, "get": { "type": "boolean" }, "set": { "type": "boolean" }, "namespace": { "type": "string" }, "nullable": { "type": "boolean", "default": true, "description": "All properties are nullable by default." }, "properties": { "type": "array", "minItems": 1, "items": { "properties": { "id": { "type": "boolean", "default": true }, "generatedValue": { "enum": [ "AUTO", "SEQUENCE", "IDENTITY", "UUID", "TABLE", "NONE", "CUSTOM" ], "default": "AUTO" }, "sequenceGenerator": { "type": "object", "properties": { "sequenceName": { "type": "string" }, "initialValue": { "type": "integer" }, "allocationSize": { "type": "integer" } } }, "name": { "$ref": "#/definitions/property-name" }, "columnName": { "type": "string" }, "get": { "enum": [ true, false, "has", "is" ], "description": "Whether is getter enabled/getter type" }, "set": { "type": "boolean" }, "length": { "type": "integer", "minimum": 1 }, "nullable": { "type": "boolean", "default": true }, "type": { "enum": [ "string", "integer", "smallint", "bigint", "boolean", "decimal", "date", "time", "datetime", "datetimez", "text", "object", "array", "simple_array", "json_array", "float", "guid", "blob" ] }, "manyToOne": { "type": "object", "properties": { "targetEntity": { "type": "string" }, "inversedBy": { "type": "string" } }, "required": [ "targetEntity" ] }, "oneToOne": { "type": "object", "properties": { "targetEntity": { "type": "string" }, "mappedBy": { "type": "string" }, "inversedBy": { "type": "string" } }, "required": [ "targetEntity" ] }, "oneToMany": { "type": "object", "properties": { "targetEntity": { "type": "string" }, "mappedBy": { "type": "string" } } }, "manyToMany": { "type": "object", "properties": { "targetEntity": { "type": "string" }, "inversedBy": { "type": "string" }, "mappedBy": { "type": "string" } } }, "joinColumn": { "type": "object", "properties": { "name": { "type": "string" }, "referencedColumnName": { "type": "string" } } }, "asserts": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "oneOf": [ { "properties": { "assert": { "enum": [ "NotBlank" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Blank" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "NotNull" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "IsNull" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "IsTrue" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "IsFalse" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Type" ] }, "type": { "enum": [ "array", "bool", "callable", "float", "double", "int", "integer", "long", "null", "numeric", "object", "real", "resource", "scalar", "string", "alnum", "alpha", "cntrl", "digit", "graph", "lower", "print", "punct", "space", "upper", "xdigit" ] }, "message": { "type": "string" } }, "required": [ "type" ] }, { "properties": { "assert": { "enum": [ "Email" ] }, "strict": { "type": "boolean", "default": true }, "checkMX": { "type": "boolean", "default": true }, "checkHost": { "type": "boolean", "default": true }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Length" ] }, "min": { "type": "integer" }, "max": { "type": "integer" }, "charset": { "type": "integer", "default": "UTF-8" }, "minMessage": { "type": "string" }, "maxMessage": { "type": "string" }, "exactMessage": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Url" ] }, "protocols": { "type": "array", "items": { "type": "string" } }, "checkDNS": { "type": "boolean", "default": true }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Regex" ] }, "pattern": { "type": "string" }, "htmlPattern": { "type": [ "string", "boolean" ] }, "match": { "type": "boolean", "default": true }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Ip" ] }, "version": { "enum": [ "4", "6", "all", "4_no_priv", "6_no_priv", "all_no_priv", "4_no_res", "6_no_res", "all_no_res", "4_public", "6_public", "all_public" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Uuid" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Range" ] }, "min": { "type": [ "integer", "string" ] }, "max": { "type": [ "integer", "string" ] }, "minMessage": { "type": "string" }, "maxMessage": { "type": "string" }, "invalidMessage": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "EqualTo" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "NotEqualTo" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "IdenticalTo" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "NotIdenticalTo" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "LessThan" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "LessThanOrEqual" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "GreaterThan" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "GreaterThanOrEqual" ] }, "value": { "type": [ "integer", "number", "null", "string", "boolean" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Date" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "DateTime" ] }, "format": { "type": "string" }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Time" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Language" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Locale" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Country" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Currency" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Luhn" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Iban" ] }, "message": { "type": "string" } } }, { "properties": { "assert": { "enum": [ "Bic" ] }, "message": { "type": "string" } } } ], "required": [ "assert" ] } } }, "additionalProperties": false, "required": [ "name" ] }, "additionalProperties": false } }, "required": [ "name" ], "additionalProperties": false }
o17529
{ "properties": { "base": { "description": "The base of the triangle (required for triangle)", "type": "number" }, "height": { "description": "The height of the triangle (required for triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (required for rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (required for circle)", "type": "number" }, "shape": { "description": "The shape for which the area should be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (required for rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_be52a9a0
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Jsst Baz", "description": "An explanation about the purpose of this instance.", "properties": { "name": { "type": "string", "title": "Name schema.", "description": "An explanation about the purpose of this instance.", "default": "bob" }, "unf": { "type": "object", "title": "Unf schema.", "description": "An explanation about the purpose of this instance.", "properties": { "a": { "type": "string", "title": "A schema.", "description": "An explanation about the purpose of this instance.", "default": "a" } }, "required": [ "a" ] } }, "required": [ "name", "unf" ] }
o53075
{ "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" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "square", "rectangle", "triangle" ], "type": "string" }, "side_length": { "description": "The side length of the square", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_e0d1d8d8
{ "id": "https://raw.githubusercontent.com/InfinniPlatform/InfinniPlatform/master/Files/Schema/rabbitmqMessageQueue.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "rabbitmqMessageQueue", "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043e\u0447\u0435\u0440\u0435\u0434\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 RabbitMQ.", "type": "object", "properties": { "HostName": { "description": "\u0410\u0434\u0440\u0435\u0441 \u0438\u043b\u0438 \u0434\u043e\u043c\u0435\u043d\u043d\u043e\u0435 \u0438\u043c\u044f.", "type": "string", "default": "localhost" }, "Port": { "description": "\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430.", "type": "integer", "default": 5672 }, "UserName": { "description": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.", "type": "string", "default": "guest" }, "Password": { "description": "\u041f\u0430\u0440\u043e\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.", "type": "string", "default": "guest" }, "ManagementApiPort": { "description": "\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 \u0434\u043b\u044f RabbitMQ Management HTTP API.", "type": "integer", "default": 15672 }, "PrefetchCount": { "description": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439, \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044e.", "type": "integer", "default": 1000 }, "MaxConcurrentThreads": { "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439.", "type": "integer", "default": 200 }, "ReconnectTimeout": { "description": "\u0412\u0440\u0435\u043c\u044f \u043c\u0435\u0436\u0434\u0443 \u043f\u043e\u043f\u044b\u0442\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443 RabbitMQ \u0432 c\u0435\u043a\u0443\u043d\u0434\u0430\u0445.", "type": "integer", "default": 5 }, "MaxReconnectRetries": { "description": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043f\u044b\u0442\u043e\u043a \u043f\u0435\u0440\u0435\u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443 RabbitMQ.", "type": "integer", "default": 10 } }, "required": [ "HostName", "Port", "ManagementApiPort" ] }
o7392
{ "properties": { "price": { "description": "The price per unit of the product or service", "type": "number" }, "product_name": { "description": "The name of the product or service", "type": "string" }, "quantity": { "description": "The quantity of the product or service", "type": "integer" }, "tax_rate": { "description": "The tax rate in percentage", "type": "number" } }, "required": [ "product_name", "quantity", "price", "tax_rate" ], "type": "object" }
generate_invoice_80aa1035
{ "$id": "http://repairnator.lille.inria.fr/schema.json", "type": "object", "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "properties": { "repo": { "$id": "/properties/repo", "type": "string", "description": "The name of the repository where the bug comes from on the form username/reponame", "default": "", "examples": [ "square/kotlinpoet" ] }, "hostname": { "$id": "/properties/hostname", "type": "string", "description": "Name of the host used to reproduce the bug", "default": "", "examples": [ "spirals-librepair" ] }, "bugType": { "$id": "/properties/bugType", "type": "string", "description": "Not required. Used to distinguish different kind of experiments (failing_passing vs passing_passing)", "default": "", "examples": [ "failing_passing" ] }, "failing-test-cases": { "$id": "/properties/failing-test-cases", "type": "array", "items": { "$id": "/properties/failing-test-cases/items", "type": "object", "properties": { "className": { "$id": "/properties/failing-test-cases/items/properties/className", "type": "string", "description": "Name of the test class", "default": "", "examples": [ "com.squareup.kotlinpoet.TypeSpecTest" ] }, "failingMethods": { "$id": "/properties/failing-test-cases/items/properties/failingMethods", "type": "array", "items": { "$id": "/properties/failing-test-cases/items/properties/failingMethods/items", "type": "string", "description": "Name of the failing methods", "default": "", "examples": [ "com.squareup.kotlinpoet.TypeSpecTest#anonymousClassToString" ] } }, "erroringMethods": { "$id": "/properties/failing-test-cases/items/properties/erroringMethods", "type": "array", "items": { "$id": "/properties/failing-test-cases/items/properties/erroringMethods/items", "type": "string", "description": "Name of the errorring methods", "default": "", "examples": [ "com.squareup.kotlinpoet.TypeSpecTest#anonymousClassToString" ] } }, "failures": { "$id": "/properties/failing-test-cases/items/properties/failures", "type": "array", "items": { "$id": "/properties/failing-test-cases/items/properties/failures/items", "type": "object", "properties": { "failureName": { "$id": "/properties/failing-test-cases/items/properties/failures/items/properties/failureName", "type": "string", "description": "Name of the obtained failure (e.g. AssertionError, NullPointerException...)", "default": "", "examples": [ "org.junit.ComparisonFailure" ] }, "failureDetail": { "$id": "/properties/failing-test-cases/items/properties/failures/items/properties/failureDetail", "type": "string", "description": "Message obtained for the failure", "default": "", "examples": [ "expected:<object : []java.lang.Runnable {...> but was:<object : [ ]java.lang.Runnable {...>" ] }, "isError": { "$id": "/properties/failing-test-cases/items/properties/failures/items/properties/isError", "type": "boolean", "description": "Is the failure considered as an error or not", "default": false, "examples": [ false ] } } } }, "nbFailures": { "$id": "/properties/failing-test-cases/items/properties/nbFailures", "type": "integer", "description": "Number of detected failures", "default": 0, "examples": [ 4 ] }, "nbErrors": { "$id": "/properties/failing-test-cases/items/properties/nbErrors", "type": "integer", "description": "Number of detected errors", "default": 0, "examples": [ 0 ] } }, "required": [ "className", "failures", "nbFailures", "nbErrors" ] } }, "metrics": { "$id": "/properties/metrics", "type": "object", "properties": { "StepsDurationsInSeconds": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds", "type": "object", "description": "The properties give the time spent to execute a specific step of the bug reproduction / repairing in seconds. Those steps could change from one build to another.", "properties": { "CheckoutBuggyBuild": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/CheckoutBuggyBuild", "type": "integer", "description": "Time spent to checkout the commit corresponding to the build (in seconds)", "default": 0, "examples": [ 4 ] }, "ComputeClasspath": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/ComputeClasspath", "type": "integer", "description": "Time spent to compute the classpath of the buggy project (in seconds)", "default": 0, "examples": [ 3 ] }, "ComputeTestDir": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/ComputeTestDir", "type": "integer", "description": "Time spent to compute the path of the test directory (in seconds)", "default": 0, "examples": [ 0 ] }, "ResolveDependency": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/ResolveDependency", "type": "integer", "description": "Time spent to resolve the dependency of the project (in seconds)", "default": 0, "examples": [ 34 ] }, "BuildProject": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/BuildProject", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 63 ] }, "NPERepair": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/NPERepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 0 ] }, "ComputeSourceDir": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/ComputeSourceDir", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 0 ] }, "InitRepoToPush": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/InitRepoToPush", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 1 ] }, "CloneRepository": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/CloneRepository", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 3 ] }, "NopolRepair": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/NopolRepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 0 ] }, "CheckoutPatchedBuild": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/CheckoutPatchedBuild", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 1 ] }, "TestProject": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/TestProject", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 46 ] }, "GatherTestInformation": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/GatherTestInformation", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 0 ] }, "PushIncriminatedBuild": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/PushIncriminatedBuild", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 4 ] }, "AstorRepair": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/AstorRepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 9 ] }, "CommitPatch": { "$id": "/properties/metrics/properties/StepsDurationsInSeconds/properties/CommitPatch", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 3 ] } } }, "FailureNames": { "$id": "/properties/metrics/properties/FailureNames", "type": "array", "items": { "$id": "/properties/metrics/properties/FailureNames/items", "type": "string", "description": "Name of the failures encountered", "default": "", "examples": [ "org.junit.ComparisonFailure" ] } }, "NbFailingTests": { "$id": "/properties/metrics/properties/NbFailingTests", "type": "integer", "description": "Total number of failing tests", "default": 0, "examples": [ 4 ] }, "ReproductionDate": { "$id": "/properties/metrics/properties/ReproductionDate", "type": "string", "description": "String date of the reproduction of the bug", "default": "", "examples": [ "Jan 24, 2018 4:24:10 AM" ] }, "BuggyBuildId": { "$id": "/properties/metrics/properties/BuggyBuildId", "type": "integer", "description": "ID of a buggy build from TravisCI", "default": 0, "examples": [ 332613503 ] }, "BuggyBuildURL": { "$id": "/properties/metrics/properties/BuggyBuildURL", "type": "string", "description": "URL of the buggy build", "default": "", "examples": [ "http://travis-ci.org/square/kotlinpoet/builds/332613503" ] }, "BuggyBuildDate": { "$id": "/properties/metrics/properties/BuggyBuildDate", "type": "string", "description": "Date of the end of the buggy build", "default": "", "examples": [ "Jan 24, 2018 4:20:53 AM" ] }, "BugCommit": { "$id": "/properties/metrics/properties/BugCommit", "type": "string", "description": "Commit hash corresponding to the buggy build", "default": "", "examples": [ "2742337e8dc6a898ace3b8164262e33d3080ed91" ] }, "BugCommitUrl": { "$id": "/properties/metrics/properties/BugCommitUrl", "type": "string", "description": "URL of the buggy commit. Pay attention that the commit might be not available anymore if it has been deleted.", "default": "", "examples": [ "http://github.com/square/kotlinpoet/commit/2742337e8dc6a898ace3b8164262e33d3080ed91" ] }, "PatchedBuilId": { "$id": "/properties/metrics/properties/PatchedBuilId", "type": "integer", "description": "If a patched build has been found, ID of the patched build from TravisCI", "default": 0, "examples": [ 332613714 ] }, "PatchedBuildURL": { "$id": "/properties/metrics/properties/PatchedBuildURL", "type": "string", "description": "If the patched build has been found, URL of the TravisCI patched build", "default": "", "examples": [ "http://travis-ci.org/square/kotlinpoet/builds/332613714" ] }, "PatchedBuildDate": { "$id": "/properties/metrics/properties/PatchedBuildDate", "type": "string", "description": "If the patched build has been found, date of the end of the patched build", "default": "", "examples": [ "Jan 24, 2018 4:23:06 AM" ] }, "PatchCommit": { "$id": "/properties/metrics/properties/PatchCommit", "type": "string", "description": "If the patch build has been found, hash of the commit that triggered the build.", "default": "", "examples": [ "2f440d34e3cef28de867690ae9719c554a33e38f" ] }, "PatchCommitUrl": { "$id": "/properties/metrics/properties/PatchCommitUrl", "type": "string", "description": "If the patched build has been found, URL of the commit corresponding to the patched build. This commit might be not available anymore if it has been deleted.", "default": "", "examples": [ "http://github.com/square/kotlinpoet/commit/2f440d34e3cef28de867690ae9719c554a33e38f" ] }, "PatchChangedFiles": { "$id": "/properties/metrics/properties/PatchChangedFiles", "type": "integer", "description": "Number of patched files (only if human patch has been found)", "default": 0, "examples": [ 1 ] }, "PatchAddedLines": { "$id": "/properties/metrics/properties/PatchAddedLines", "type": "integer", "description": "Number of added lines (only if human patch has been found)", "default": 0, "examples": [ 0 ] }, "PatchDeletedLines": { "$id": "/properties/metrics/properties/PatchDeletedLines", "type": "integer", "description": "Number of deleted lines ((only if human patch has been found)", "default": 0, "examples": [ 0 ] }, "NbRunningTests": { "$id": "/properties/metrics/properties/NbRunningTests", "type": "integer", "description": "Total number of tests run", "default": 0, "examples": [ 361 ] }, "NbLibraries": { "$id": "/properties/metrics/properties/NbLibraries", "type": "integer", "description": "Number of required libraries (based on the classpath)", "default": 0, "examples": [ 24 ] }, "NbFileApp": { "$id": "/properties/metrics/properties/NbFileApp", "type": "integer", "description": "Number of source files (only of the failing module if it concerns a multi module application)", "default": 0, "examples": [ 0 ] }, "NbFileTests": { "$id": "/properties/metrics/properties/NbFileTests", "type": "integer", "description": "Number of test files (only of the failing module if it concerns a multi module application)", "default": 0, "examples": [ 2 ] }, "NbCPU": { "$id": "/properties/metrics/properties/NbCPU", "type": "integer", "description": "Number of CPU of the running host", "default": 0, "examples": [ 8 ] }, "FreeMemory": { "$id": "/properties/metrics/properties/FreeMemory", "type": "integer", "description": "Free memory on the running host JVM (in bytes)", "default": 0, "examples": [ 311502904 ] }, "TotalMemory": { "$id": "/properties/metrics/properties/TotalMemory", "type": "integer", "description": "Total memory on the running host JVM (in bytes)", "default": 0, "examples": [ 338690048 ] }, "AngelicValuesByTest": { "$id": "/properties/metrics/properties/AngelicValuesByTest", "type": "object", "description": "An object taking as key a test class name and as value the number of retrieved angelic values" }, "FreeMemoryByStep": { "$id": "/properties/metrics/properties/FreeMemoryByStep", "type": "object", "description": "Free memory on the running host JVM (in bytes) for each step", "properties": { "CheckoutBuggyBuild": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/CheckoutBuggyBuild", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 292014240 ] }, "ComputeClasspath": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/ComputeClasspath", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 281962520 ] }, "ComputeTestDir": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/ComputeTestDir", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 282142088 ] }, "ResolveDependency": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/ResolveDependency", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 271811416 ] }, "BuildProject": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/BuildProject", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 232131784 ] }, "NPERepair": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/NPERepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 286648368 ] }, "ComputeSourceDir": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/ComputeSourceDir", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 281962520 ] }, "InitRepoToPush": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/InitRepoToPush", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 212722824 ] }, "CloneRepository": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/CloneRepository", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 446484664 ] }, "NopolRepair": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/NopolRepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 315329424 ] }, "CheckoutPatchedBuild": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/CheckoutPatchedBuild", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 240095112 ] }, "TestProject": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/TestProject", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 227997832 ] }, "GatherTestInformation": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/GatherTestInformation", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 222327776 ] }, "PushIncriminatedBuild": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/PushIncriminatedBuild", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 286648368 ] }, "AstorRepair": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/AstorRepair", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 276137200 ] }, "CommitPatch": { "$id": "/properties/metrics/properties/FreeMemoryByStep/properties/CommitPatch", "type": "integer", "description": "An explanation about the purpose of this instance.", "default": 0, "examples": [ 311502904 ] } } } }, "required": [ "NbFailingTests", "FailureNames", "BugCommitUrl", "BuggyBuildURL", "BuggyBuildDate", "BugCommit", "NbRunningTests", "BuggyBuildId" ] }, "error-types": { "$id": "/properties/error-types", "type": "array", "items": { "$id": "/properties/error-types/items", "type": "string", "description": "Name of the failures detected", "default": "", "examples": [ "org.junit.ComparisonFailure" ] } }, "failingModule": { "$id": "/properties/failingModule", "type": "string", "description": "In case of a multi module project, path to the failing module", "default": "", "examples": [ "/root/workspace/square/kotlinpoet/332613503" ] }, "is-pr": { "$id": "/properties/is-pr", "type": "string", "description": "In case the buggy builds comes from a PR this field exists and contains 'true'", "default": "", "examples": [ "true" ] }, "pr-base-commit-id": { "$id": "/properties/pr-base-commit-id", "type": "string", "description": "In case the buggy build comes from a PR, this field contains the commit hash of the PR base", "default": "", "examples": [ "87f4f1b0cb34c628b4f16c29bb26a5ccdb3aef32" ] }, "pr-head-commit-id": { "$id": "/properties/pr-head-commit-id", "type": "string", "description": "In case the buggy build comes from a PR, this field contains the commit hash of the PR head", "default": "", "examples": [ "44be6017107ea7d8603954d3aa1cfc971d42a651" ] }, "pr-id": { "$id": "/properties/pr-id", "type": "integer", "description": "ID of the PR on the github", "default": 0, "examples": [ 316 ] }, "pr-base-commit-id-url": { "$id": "/properties/pr-base-commit-id-url", "type": "string", "description": "In case the buggy build comes from a PR, this field contains the commit URL of the PR base", "default": "", "examples": [ "https://github.com/square/kotlinpoet/commit/87f4f1b0cb34c628b4f16c29bb26a5ccdb3aef32" ] }, "pr-head-commit-id-url": { "$id": "/properties/pr-head-commit-id-url", "type": "string", "description": "In case the buggy build comes from a PR, this field contains the commit URL of the PR head", "default": "", "examples": [ "https://github.com/square/kotlinpoet/commit/44be6017107ea7d8603954d3aa1cfc971d42a651" ] }, "pr-remote-repo": { "$id": "/properties/pr-remote-repo", "type": "string", "description": "In the case the buggy build comes from a PR, this field contains the name of the forked repository", "default": "", "examples": [ "kiiadi/kotlinpoet" ] } }, "required": [ "repo", "metrics" ] }
o40388
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "exampleDef": { "type": "string", "enum": [ "foo", "bar" ] } }, "type": "number", "default": 0 }
o63987
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "numberWithUnit": { "properties": { "unit": { "type": "string" }, "value": { "type": "number" } }, "required": [ "value", "unit" ], "type": "object" } }, "properties": { "car": { "type": "string" }, "comment": { "type": "string" }, "cost": { "$ref": "#/definitions/numberWithUnit" }, "fuelType": { "type": "string" }, "mileage": { "$ref": "#/definitions/numberWithUnit" }, "missedFuelStop": { "type": "boolean" }, "time": { "_format": "date-time", "type": "string" }, "volume": { "$ref": "#/definitions/numberWithUnit" } }, "required": [ "fuelType", "car", "cost", "mileage", "volume", "time" ], "type": "object" }
o39147
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "price": { "type": "number" }, "tags": { "type": "array" }, "vector": { "type": "array" }, "address": { "type": "object", "properties": { "street": { "type": "string" }, "number": { "type": "number" }, "zip_code": { "type": "string" }, "state": { "type": "object", "properties": { "name": { "type": "string" }, "code": { "type": "string" } } }, "country": { "type": "string", "enum": [ "Czech Republic", "United States of America" ] } }, "required": [ "street", "number", "zip_code", "country" ] } }, "required": [ "id" ] }
o69522
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "http://json-schema.org/draft-06/schema#", "type": "object", "required": [ "foo" ], "properties": { "foo": { }, "bar": { "type": "string", "enum": [ "a", "b", "c" ] } } }
o23148
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_da13baad
{ "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 shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width" ], "type": "object" }, "shape": { "description": "The shape (square, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_ef9ec6bd
{ "$schema": "http://json-schema.org/draft-04/schema#", "_id": "account_config.paypal", "description": "Schema for paypal account_config", "properties": { "currency": { "default": "USD", "description": "currency you acept payments in", "type": "string" }, "enabled": { "default": false, "description": "PayPal IPN processing enabled", "type": "boolean" }, "environment": { "default": "production", "description": "paypal env. type - sandbox or production", "type": "string" }, "hosted_button_id": { "default": "hosted_button_id", "description": "hosted_button_id of configured button", "type": "string" }, "receiver_id": { "default": "receiver_id", "description": "id of your paypal account", "type": "string" } }, "type": "object" }
o65305
{ "properties": { "category": { "description": "The category of the product", "type": "string" }, "keyword": { "description": "The keyword to search for", "type": "string" }, "price_range": { "description": "The price range of the product", "properties": { "max_price": { "description": "The maximum price of the product", "type": "number" }, "min_price": { "description": "The minimum price of the product", "type": "number" } }, "type": "object" } }, "required": [ "keyword" ], "type": "object" }
search_product_b7319c51
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "cx": { "type": "number" }, "cy": { "type": "number" }, "id": { "type": "number" }, "locked": { "type": "boolean" }, "name": { "type": "string" }, "render": { "type": "boolean" }, "source_cx": { "type": "number" }, "source_cy": { "type": "number" }, "type": { "type": "string" }, "volume": { "type": "number" }, "x": { "type": "number" }, "y": { "type": "number" }, "parentGroupName": { "type": "string" }, "groupChildren": { "type": "array", "items": {} } }, "required": [ "cx", "cy", "id", "locked", "name", "render", "source_cx", "source_cy", "type", "volume", "x", "y" ] }
o63998
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON schema for `sp-build-tasks` - SharePoint Frontend build tool-belt", "definitions": { "coreProperties": { "type": "object", "patternProperties": { "^_": { "description": "Any property starting with _ is valid.", "additionalProperties": true, "additionalItems": true } }, "properties": { "spFolder": { "description": "Publishing SPWeb-relative folder path in SharePoint where files should be uploaded to\n\nE.g.: `_catalogs/masterpage/spf`", "type": "string", "default": "_catalogs/masterpage/spf" }, "distFolder": { "description": "Local distribution folder with built assets ready for publishing\n\nE.g.: `./dist`", "type": "string", "default": "./dist" }, "deleteFiles": { "description": "Delete remote files on local files unlink event", "type": "boolean", "default": false }, "customStyles": { "description": "Custom styles bundle configuration. Array or a single object element src/dist pair of source style entry point and output bundle file", "type": "array", "items": { "type": "object", "required": [ "src", "dist" ], "properties": { "name": { "description": "Description of the configuration, doesn't effect on logic", "type": "string" }, "src": { "description": "Source entry point path relative to './src'\n\nE.g.: `styles/index.scss`", "type": "string", "default": "styles/index.scss" }, "dist": { "description": "Output .css file path relative to './dist'\n\nE.g.: `styles/myModule.css`", "type": "string", "default": "./dist" } } } }, "bundleJSLibsFiles": { "description": "3-rd party JavaScript libraries and scripts bundle configuration. Array of local path to .js files.", "type": "array", "items": { "type": "string", "description": "Relative local path to a .js file (EcmaScript 5) to bundle into vendor.js file." }, "default": [ "./node_modules/es6-promise/dist/es6-promise.auto.min.js", "./node_modules/whatwg-fetch/fetch.js" ] }, "bundleCSSLibsFiles": { "description": "3-rd party Styles libraries bundle configuration. Array of local path to .css files.", "type": "array", "items": { "type": "string", "description": "Relative local path to a .css file to bundle into vendor.css file." } }, "copyAssetsMap": { "description": "Custom assets copying to './dist' rules definition. Array of src/dist pairs objects.", "type": "array", "items": { "type": "object", "required": [ "src", "dist" ], "properties": { "name": { "description": "Description of the configuration, doesn't effect on logic", "type": "string" }, "src": { "description": "Is an array of paths to folders or files. Folders and files are copied based on this array, subfolders are created automatically", "type": "array", "items": { "type": "string", "description": "Relative local path to a file of folder.\n\nE.g.: `./node_modules/datatables/media/images` or `./src/scripts/modules/wysiwyg.js`" } }, "dist": { "description": "Target destination folder path where files are copied to. In most cases it should be `./dist`.", "type": "string", "default": "./dist" } } } }, "customActions": { "description": "SharePoint ScriptLink Custom Actions configuration", "type": "array", "items": { "type": "object", "required": [ "scriptSrc", "scope", "sequence" ], "properties": { "name": { "description": "An optional name for custom action", "type": "string", "default": "My Custom Action" }, "scriptSrc": { "description": "Custom action script source.\n\nSupports following hashes:\n\n- `~publishroot` - location in SharePoint where SPPP's `./dist` folder is targeted to;\n\n- `~site` - SPWeb location;\n\n- `~sitecollection` - SPSite location;\n\n- `~hubsite` - SPO Hub Site location.", "type": "string", "default": "~publishroot/scripts/app.js" }, "scope": { "description": "Custom action scope: `web` (SPWeb) or `site` (SPSite) (site collection)", "type": "string", "enum": [ "web", "site" ], "default": "web" }, "sequence": { "description": "Custom action script sequence", "type": "number", "default": 100 }, "namespace": { "description": "Script namespace, i.e. `react.js`", "type": "string" }, "dependencies": { "description": "Script dependencies namespaces", "type": "array", "items": { "type": "string", "description": "Namespace of dependency" } } } } }, "webpackItemsMap": { "description": "Scripts build configuration. Array or entry/target script pairs.", "type": "array", "items": { "type": "object", "required": [ "entry", "target" ], "properties": { "name": { "description": "Description of the configuration, doesn't effect on logic", "type": "string" }, "entry": { "description": "Relative path to .ts, .js file within the project's folder structure.\n\nE.g.: `./src/scripts/index.ts`", "type": "string", "default": "./src/scripts/index.ts" }, "target": { "description": "Relative path to output bundle script within `./dist/stripts` folder.\n\nE.g.: `app.js`", "type": "string", "default": "app.js" }, "includePolyfills": { "description": "Include polyfills into the bundle", "type": "boolean", "default": false }, "disable": { "description": "Disable entry from build", "type": "boolean", "default": true } } } }, "modulePath": { "description": "Relative path for module inside dist structure, e.g. `modules/my-module`", "type": "string", "default": "" }, "devtool": { "description": "Webpack `devtool` option for development mode\n\nE.g.: `eval`\n\nSee more: https://webpack.js.org/configuration/devtool/", "type": "string", "default": "cheap-eval-source-map" }, "filesMetaData": { "description": "gulp-spsave filesMetaData property, see more https://github.com/s-KaiNet/gulp-spsave", "type": "array", "items": { "type": "object", "required": [ "fileName", "metadata" ], "properties": { "fileName": { "description": "File name with extention (without path)\n\nE.g.: `app.js`", "type": "string" }, "metadata": { "description": "REST API metadata object", "type": "object", "required": [ "__metadata" ], "properties": { "__metadata": { "description": "SharePoint REST API OData entity type", "type": "object", "required": [ "type" ], "properties": { "type": { "type": "string" } } } }, "^.*$": { "additionalProperties": true, "additionalItems": true } } } } } } }, "brandingConfig": { "type": "object", "properties": { "masterpagePath": { "description": "Relative to publishing folder path to custom masterpage.\nIs used in `gulp masterpage:apply` task.", "type": "string", "default": "masterpage/frankfurt.master" }, "logoPath": { "description": "Relative to publishing folder path to custom logo.\nIs used in `gulp masterpage:apply` and `gulp logo:apply` tasks.", "type": "string", "default": "images/logo.png" }, "masterpageCodeName": { "description": "Masterpage code name.", "type": "string", "default": "frankfurt" }, "platformVersion": { "description": "Masterpage platform version (2016, 2013, etc.)", "type": "string", "enum": [ "spo", "2016", "2013" ], "default": "spo" }, "masterpage": { "description": "Custom structure object which properties can be used while compiling masterpage's .hbs.", "type": "object", "additionalProperties": true, "default": { "copyright": { "year": "2017", "title": "Contoso intranet" } } } } } }, "allOf": [ { "$ref": "#/definitions/coreProperties" }, { "anyOf": [ { "$ref": "#/definitions/brandingConfig" } ] }, { "required": [ "spFolder", "distFolder" ] } ] }
o55668
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Improve Digital Adapter Params", "description": "A schema which validates params accepted by Improve Digital adapter", "type": "object", "properties": { "placementId": { "type": "integer", "minimum": 1, "description": "An ID which identifies this placement of the impression" }, "publisherId": { "type": "integer", "minimum": 1, "description": "An ID which identifies publisher. Required when using a placementKey" }, "placementKey": { "type": "string", "description": "An uniq name which identifies this placement of the impression. Must be used with publisherId" }, "keyValues": { "type": "object", "description": "Contains one or more key-value pairings for key-value targeting" }, "size": { "type": "object", "properties": { "w": { "type": "integer" }, "h": { "type": "integer" } }, "required": [ "w", "h" ], "description": "Placement size" } }, "oneOf": [ { "required": [ "placementId" ] }, { "required": [ "publisherId", "placementKey" ] } ] }
o68312
{ "$id": "https://json.schemastore.org/pgap_yaml_input_reader", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": {}, "description": "NCBI Prokaryotic Genome Annotation Pipeline (PGAP) input metadata (submol) JSON/YAML configuration file", "properties": { "$schema": { "$id": "/$schema", "type": "string", "title": "Schema", "description": "The value of this keyword MUST be a URI (containing a scheme) and this URI MUST be normalized. ", "default": "", "examples": ["https://json.schemastore.org/pgap_yaml_input_reader"] }, "consortium": { "$id": "/properties/consortium", "type": "string", "title": "Consortium", "description": "Name of the project that generated the genome assembly", "default": "", "examples": ["SkyNet"] }, "comment": { "$id": "/properties/comment", "type": "string", "title": "Free text comment about the genome assembly", "description": "Appears in the COMMENT section of each GenBank sequence record.", "default": "", "examples": [ "This draft WGS assembly was generated by running SKESA to generate a de-novo assembly. The de-novo assembly was then concatenated with configs generated using a guided assembler using antimicrobial resistance genes as baits to comprehensively catalog the set of resistance genes in the isolate. Note, some parts of the configs derived from the guided assembler may overlap de-novo configs, and other guided assembler configs. De-novo configs can be differentiated from guided assembler configs by their names, which include either 'denovo' or 'guided'." ] }, "tp_assembly": { "$id": "/properties/tp_assembly", "type": "boolean", "title": "Reserved", "description": "NCBI internal flag used for testing.", "default": false, "examples": [false] }, "sra": { "$id": "/properties/sra", "type": "array", "title": "SRA assembly data", "description": "Sequence reads used to build the assembly", "items": { "$id": "/properties/sra/items", "type": "object", "additionalProperties": false, "required": ["accession"], "properties": { "accession": { "$id": "/properties/sra/items/properties/accession", "type": "string", "title": "SRA Accession", "description": "Sequence Read Archive (SRA) accession for the run (with SRR, ERR or DRR prefix)", "default": "", "examples": ["SRR8796989"] } } } }, "authors": { "$id": "/properties/authors", "type": "array", "title": "Author(s) of the genome assembly", "description": "Optional, but include if intending to submit to GenBank. Authors can be different from the contact.", "items": { "$id": "/properties/authors/items", "type": "object", "additionalProperties": false, "required": ["author"], "properties": { "author": { "$id": "/properties/authors/items/properties/author", "type": "object", "additionalProperties": false, "required": ["first_name", "last_name"], "properties": { "first_name": { "$id": "/properties/authors/items/properties/author/properties/first_name", "type": "string", "title": "First name", "default": "", "examples": ["Arnold"] }, "last_name": { "$id": "/properties/authors/items/properties/author/properties/last_name", "type": "string", "title": "Last name", "default": "", "examples": ["Schwarzenegger"] }, "middle_initial": { "$id": "/properties/authors/items/properties/author/properties/middle_initial", "type": "string", "title": "First letter of middle name", "default": "", "examples": ["T800"] } } } } } }, "bioproject": { "$id": "/properties/bioproject", "type": "string", "title": "BioProject ID (PRJXX) for the project, if available", "default": "", "examples": ["PRJ9999999"] }, "biosample": { "$id": "/properties/biosample", "type": "string", "title": "BioSample ID (SAMXXX) for the sequenced sample, if available", "default": "", "examples": ["SAMN99999999"] }, "contact_info": { "$id": "/properties/contact_info", "type": "object", "title": "Submitter contact information", "description": "Optional, but include if intending to submit to GenBank. The main contact for this genome assembly.", "additionalProperties": false, "required": [ "organization", "department", "city", "country", "street", "email", "first_name", "last_name", "postal_code" ], "properties": { "state": { "$id": "/properties/contact_info/properties/state", "type": "string", "title": "State or region", "default": "", "examples": ["MD", "Florida"] }, "fax": { "$id": "/properties/contact_info/properties/fax", "type": "string", "title": "Fax number", "default": "", "examples": ["301-555-1234", "+7 095 555 1234"] }, "city": { "$id": "/properties/contact_info/properties/city", "type": "string", "title": "City", "default": "", "examples": ["Docker"] }, "country": { "$id": "/properties/contact_info/properties/country", "type": "string", "title": "Country", "default": "", "examples": ["Lappland"] }, "department": { "$id": "/properties/contact_info/properties/department", "type": "string", "title": "Department or division submitting the genome assembly", "default": "", "examples": ["Department of Using NCBI"] }, "email": { "$id": "/properties/contact_info/properties/email", "type": "string", "title": "Email address", "default": "", "examples": ["[email protected]"] }, "first_name": { "$id": "/properties/contact_info/properties/first_name", "type": "string", "title": "First name", "default": "", "examples": ["Jane"] }, "middle_initial": { "$id": "/properties/contact_info/properties/middle_initial", "type": "string", "title": "First letter of middle name", "default": "", "examples": ["N"] }, "last_name": { "$id": "/properties/contact_info/properties/last_name", "type": "string", "title": "Last name", "default": "", "examples": ["Doe"] }, "organization": { "$id": "/properties/contact_info/properties/organization", "type": "string", "title": "Organization or consortium submitting the genome assembly", "default": "", "examples": ["Institute of Klebsiella foobarensis research"] }, "phone": { "$id": "/properties/contact_info/properties/phone", "type": "string", "title": "Phone number", "default": "", "examples": ["301-555-0245"] }, "postal_code": { "$id": "/properties/contact_info/properties/postal_code", "type": "string", "title": "Postal code", "default": "", "examples": ["12345"] }, "street": { "$id": "/properties/contact_info/properties/street", "type": "string", "title": "Street address", "default": "", "examples": ["1234 Main St"] } } }, "fasta": { "$id": "/properties/fasta", "type": "object", "additionalProperties": false, "properties": { "class": { "$id": "/properties/fasta/properties/class", "type": "string", "title": "Class of input type", "default": "", "examples": ["File"] }, "location": { "$id": "/properties/fasta/properties/location", "type": "string", "title": "Location of input file", "default": "", "examples": ["sample_fasta_input.fasta"] } } }, "locus_tag_prefix": { "$id": "/properties/locus_tag_prefix", "type": "string", "title": "Locus tag prefix", "description": "One to 9-letter prefix to use for naming genes on this genome assembly. If an official locus tag prefix was already reserved from an INSDC organization (GenBank, ENA or DDBJ) for the given BioSample and BioProject pair, provide here. Otherwise, provide a string of your choice. If no value is provided, the prefix 'pgaptmp' will be used. See more details in this Note about locus tags at: https://github.com/ncbi/pgap/wiki/Input-Files#Note-about-locus-tags", "default": "", "examples": ["tmp"] }, "organism": { "$id": "/properties/organism", "type": "object", "additionalProperties": false, "properties": { "strain": { "$id": "/properties/organism/properties/strain", "type": "string", "title": "Strain", "description": "Strain of the sequenced organism", "default": "", "examples": ["my_strain"] }, "genus_species": { "$id": "/properties/organism/properties/genus_species", "type": "string", "title": "Genus and species", "description": "Binomial name or, if the species is unknown, genus for the sequenced organism. This identifier must be valid in NCBI Taxonomy. See Taxonomy information for how to find out if the name is valid: https://github.com/ncbi/pgap/wiki/Input-Files#Taxonomy-information", "default": "", "examples": ["Escherichia coli"] } } }, "publications": { "$id": "/properties/publications", "type": "array", "title": "Publication describing the genome assembly", "items": { "$id": "/properties/publications/items", "type": "object", "additionalProperties": false, "required": ["publication"], "properties": { "publication": { "$id": "/properties/publications/items/properties/publication", "type": "object", "additionalProperties": false, "properties": { "authors": { "$id": "/properties/publications/items/properties/publication/properties/authors", "title": "Author(s)", "type": "array", "items": { "$id": "/properties/publications/items/properties/publication/properties/authors/items", "type": "object", "additionalProperties": false, "properties": { "author": { "$id": "/properties/publications/items/properties/publication/properties/authors/items/properties/author", "type": "object", "additionalProperties": false, "required": ["first_name", "last_name"], "properties": { "first_name": { "$id": "/properties/publications/items/properties/publication/properties/authors/items/properties/author/properties/first_name", "type": "string", "title": "First name", "default": "", "examples": ["Arnold"] }, "last_name": { "$id": "/properties/publications/items/properties/publication/properties/authors/items/properties/author/properties/last_name", "type": "string", "title": "Last name", "default": "", "examples": ["Schwarzenegger"] }, "middle_initial": { "$id": "/properties/publications/items/properties/publication/properties/authors/items/properties/author/properties/middle_initial", "type": "string", "title": "First letter of middle name", "default": "", "examples": ["T800"] } } } } } }, "status": { "$id": "/properties/publications/items/properties/publication/properties/status", "type": "string", "title": "Publication status", "description": "Can be only one of: published, in-press, unpublished", "default": "", "enum": ["published", "in-press", "unpublished"] }, "pmid": { "$id": "/properties/publications/items/properties/publication/properties/pmid", "type": "integer", "title": "PubMed ID for the publication", "default": "" }, "title": { "$id": "/properties/publications/items/properties/publication/properties/title", "type": "string", "title": "Title", "default": "", "examples": [ "Discrete CHARMm of Klebsiella foobarensis. Journal of Improbable Results, vol. 34, issue 13, pages: 10001-100005, 2018" ] } } } } } }, "topology": { "$id": "/properties/topology", "type": "string", "title": "Topology of the sequences included in the fasta file", "description": "Possible values are linear or circular. Circular means that the first base in the sequence is adjacent to the last base. Please provide the topology in the metadata YAML file only if it is applicable to ALL sequences in the fasta file. If some sequences in the assembled genome are circular and others linear, include the topology in the definition line of each sequence in the fasta file with the tag value pair [topology=circular] or [topology=linear], after the SeqID and a space (e.g. >seq1 [topology=circular]). If the topology is provided in neither the metadata YAML nor the fasta file, the sequences will be presumed to be linear.", "default": "", "examples": ["circular", "linear"] }, "location": { "$id": "/properties/location", "type": "string", "title": "Location of the sequences included in the fasta file", "description": "Possible values are chromosome or plasmid. Please provide the location in the metadata YAML file only if it is applicable to ALL sequences in the fasta file. If some sequences in the assembled genome are chromosomes and others plasmids, include the location in the definition line of each sequence in the fasta file with the tag value pair [location=chromosome] or [location=plasmid], after the SeqID and a space (e.g. >seq1 [location=plasmid]). In plasmid case add [plasmid-name=<plasmidname>]. If the location is provided in neither the metadata YAML nor the fasta file, the sequences will be presumed to be chromosome. Note: since 2021 releases of PGAPx this will affect noticeably the annotation on the molecule", "default": "", "examples": ["chromosome", "plasmid"] } }, "required": ["authors", "contact_info"], "title": "NCBI PGAP submol YAML", "type": "object" }
pgap_yaml_input_reader
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "articles", "selection" ], "properties": { "articles": { "type": "object", "description": "Display a list of articles.", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic", "axRole": "inlet", "description": "Name of the data resource with articles." } } }, "selection": { "type": "object", "description": "Select an article.", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic", "axRole": "outlet", "description": "Name of the resource for the user selection" } } } } }
o9400
{ "properties": { "include_lowercase": { "description": "Whether to include lowercase characters in the password", "type": "boolean" }, "include_numbers": { "description": "Whether to include numbers in the password", "type": "boolean" }, "include_symbols": { "description": "Whether to include symbols in the password", "type": "boolean" }, "include_uppercase": { "description": "Whether to include uppercase characters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_5d88558c
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "description": "The items in the invoice", "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_name", "items" ], "type": "object" }
generate_invoice_678b903a
{ "id": "https://schema.management.azure.com/schemas/2018-08-31-preview/Microsoft.WorkloadMonitor.json#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Microsoft.WorkloadMonitor", "description": "Microsoft WorkloadMonitor Resource Types", "resourceDefinitions": {}, "extension_resourceDefinitions": { "notificationSettings": { "type": "object", "properties": { "apiVersion": { "type": "string", "enum": [ "2018-08-31-preview" ] }, "name": { "type": "string", "enum": [ "default" ], "description": "Default string modeled as parameter for URL to work correctly." }, "type": { "type": "string", "enum": [ "Microsoft.WorkloadMonitor/notificationSettings" ] } }, "required": [ "apiVersion", "name", "type" ], "description": "Microsoft.WorkloadMonitor/notificationSettings" } }, "definitions": {}, "properties": { "extension_resourceDefinitions.notificationSettings": { "$ref": "#/extension_resourceDefinitions/notificationSettings" } }, "required": [ "extension_resourceDefinitions.notificationSettings" ] }
o1809
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The shape (e.g., circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_42991ec9
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "captureObj", "description": "Used to log details associated with a capture", "type": "object", "additionalProperties": false, "properties": { "storedJpgSize": { "type": "number", "description": "Size in bytes of the JPG file(s)" }, "storedRawSize": { "type": "number", "description": "Size in bytes of the RAW file(s)" }, "totalCaptureSize": { "type": "number", "description": "Size in bytes of all pictures captured (SUM storedJpgSize and storedRawSize)" }, "scriptStartDate": { "type": [ "string", "null" ], "description": "Record when the capture script started" }, "scriptEndDate": { "type": [ "string", "null" ], "description": "Record when the capture script ended" }, "scriptRuntime": { "type": [ "number", "null" ], "description": "In miliseconds, record script runtime" }, "processedPicturesCount": { "type": "number", "description": "Number of pictures captued, in some situations multiple files might be processed in batch" }, "captureSuccess": { "type": [ "boolean", "null" ], "description": "Record if capture was successful" }, "captureDate": { "type": [ "string", "null" ], "description": "Date of the capture" } } }
o17132
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Update Post", "type": "object", "required": [ "post" ], "properties": { "post": { "type": "object", "additionalProperties": false, "required": [ "title", "body" ], "properties": { "title": { "type": "string" }, "body": { "type": "string" }, "author": { "type": "string" } } } } }
o55691
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" } }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "string" } } } } }, "additionalProperties": false }
o6173
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Whitelist", "description": "Whitelist", "type": "object", "properties": { "ignoreSevertiesAtOrBelow": { "type": "string", "enum": [ "negligible", "Negligible", "low", "Low", "medium", "Medium", "high", "High" ] }, "vulnerabilities": { "type": "array", "items": { "type": "object", "properties": { "cveId": { "type": "string", "minLength": 1, "maxLength": 512 }, "rationale": { "type": "string", "minLength": 1, "maxLength": 512 } }, "required": [ "cveId", "rationale" ], "additionalProperties": false }, "_uniqueItems": true } }, "required": [ "ignoreSevertiesAtOrBelow" ], "additionalProperties": false }
o76439
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "System Utilization Logical Interface Schema", "description": "Schema that defines the canonical interface for anythin capable of reading System Utilization data", "properties": { "cpu": { "description": "CPU Utilization %", "type": "number", "minimum": 0, "maximum": 100, "default": 0.0 }, "memory": { "description": "Memory utilization (%)", "type": "number", "minimum": 0.0, "maximum": 100, "default": 0.0 } } }
o47039
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Adhese Adapter Parameters", "description": "Validation for parameters handled by the Adhese adapter", "type": "object", "properties": { "account": { "type": "string", "description": "Your Adhese account name. If unknown, please contact your sales rep" }, "location": { "type": "string", "description": "The location you want to refer to for a specific section or page, as defined in your Adhese inventory" }, "format": { "type": "string", "description": "The format you accept for this unit, as defined in your Adhese inventory" }, "targets": { "type": "object", "description": "Target params, as defined in your Adhese setup." } }, "required": [ "account", "location", "format" ] }
o68282
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkThumbHeight": { "type": "number" }, "bookmarkThumbWidth": { "type": "number" }, "limitLocales": { "type": "boolean" }, "minWidthBreakPoint": { "type": "number" }, "openTemplate": { "type": "string", "minLength": 1 }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "bookmarkThumbHeight", "bookmarkThumbWidth", "limitLocales", "minWidthBreakPoint", "openTemplate", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "bookmarkEnabled": { "type": "boolean" }, "feedbackEnabled": { "type": "boolean" }, "minimiseButtons": { "type": "boolean" }, "openEnabled": { "type": "boolean" } }, "required": [ "bookmarkEnabled", "feedbackEnabled", "minimiseButtons", "openEnabled" ] }, "content": { "type": "object", "properties": { "bookmark": { "type": "string", "minLength": 1 }, "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 }, "open": { "type": "string", "minLength": 1 } }, "required": [ "bookmark", "download", "embed", "exitFullScreen", "fullScreen", "open" ] } }, "required": [ "options", "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "canvasExclude": { "type": "string" }, "displayOrder": { "type": "string" }, "manifestExclude": { "type": "string" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "canvasExclude", "displayOrder", "manifestExclude", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "content": { "type": "object", "properties": { "attribution": { "type": "string", "minLength": 1 }, "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "description": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "less": { "type": "string", "minLength": 1 }, "license": { "type": "string", "minLength": 1 }, "logo": { "type": "string", "minLength": 1 }, "more": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "attribution", "collapse", "collapseFull", "description", "expand", "expandFull", "holdingText", "less", "license", "logo", "more", "noData", "title" ] } }, "required": [ "options", "content" ] }, "pdfCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "titleEnabled": { "type": "boolean" }, "usePdfJs": { "type": "boolean" } }, "required": [ "titleEnabled", "usePdfJs" ] }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "options", "content" ] }, "contentLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "loginDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "login": { "type": "string", "minLength": 1 }, "cancel": { "type": "string", "minLength": 1 } }, "required": [ "login", "cancel" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "website": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title", "website" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "moreInfoRightPanel", "pdfCenterPanel", "contentLeftPanel", "dialogue", "downloadDialogue", "loginDialogue", "settingsDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "authCORSError": { "type": "string", "minLength": 1 }, "authorisationFailedMessage": { "type": "string", "minLength": 1 }, "degradedResourceMessage": { "type": "string", "minLength": 1 }, "degradedResourceLogin": { "type": "string", "minLength": 1 }, "forbiddenResourceMessage": { "type": "string", "minLength": 1 } }, "required": [ "authCORSError", "authorisationFailedMessage", "degradedResourceMessage", "degradedResourceLogin", "forbiddenResourceMessage" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o66713
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Event", "description": "Schema for a single Event", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "eventId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "sourceType": { "type": "string", "enum": [ "flow", "user", "device", "apiToken", "experienceUser", "public" ] }, "sourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "sourceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "level": { "type": "string", "enum": [ "info", "warning", "error", "critical" ] }, "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "subject": { "type": "string", "minLength": 1, "maxLength": 255 }, "message": { "type": "string", "maxLength": 32767 }, "data": {}, "deviceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "deviceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "eventTags": { "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "updates": { "type": "array", "items": { "type": "object", "properties": { "sourceType": { "type": "string", "enum": [ "flow", "user", "device", "apiToken", "experienceUser", "public" ] }, "sourceId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "sourceName": { "type": "string", "minLength": 1, "maxLength": 255 }, "creationDate": { "type": "string", "format": "date-time" }, "comment": { "type": "string", "maxLength": 32767 }, "data": {}, "stateChange": { "type": "object", "properties": { "old": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "new": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] } } } } } } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "state": { "type": "string", "enum": [ "new", "acknowledged", "resolved" ] }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "query": { "type": "object" } } }
o9864
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Transaction", "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Transaction" }, "account": { "$ref": "#/definitions/AccountLink" }, "amount": { "type": "number" }, "category": { "$ref": "#/definitions/CategoryLink" }, "classification1": { "$ref": "#/definitions/Classification1Link" }, "cleared": { "type": "boolean" }, "clearedState": { "type": "integer" }, "date": { "type": "string", "format": "date-time" }, "fiTransactionId": { "type": "string" }, "frequency": { "$ref": "#/definitions/Frequency" }, "investment": { "type": "boolean" }, "investmentInfo": { "$ref": "#/definitions/InvestmentInfo" }, "memo": { "type": "string" }, "number": { "type": "string" }, "payee": { "$ref": "#/definitions/PayeeLink" }, "reconciled": { "type": "boolean" }, "recurring": { "type": "boolean" }, "splits": { "type": "array", "items": { "$ref": "#/definitions/TransactionSplit" } }, "state": { "type": "string", "enum": [ "UNRECONCILED", "RECONCILED", "CLEARED", "VOID" ] }, "statusFlag": { "type": "integer" }, "transactionInfo": { "$ref": "#/definitions/TransactionInfo" }, "transfer": { "type": "boolean" }, "unaccepted": { "type": "boolean" }, "void": { "type": "boolean" }, "xferInfo": { "$ref": "#/definitions/XferInfo" } }, "required": [ "cleared", "investment", "reconciled", "recurring", "transfer", "unaccepted", "void" ], "definitions": { "AccountLink": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Account" }, "name": { "type": "string" } } }, "CategoryLink": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Category" }, "fullName": { "type": "string" }, "name": { "type": "string" }, "parentId": { "type": "integer" }, "parentName": { "type": "string" } } }, "Classification1Link": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Classification1" }, "name": { "type": "string" } } }, "Frequency": { "type": "object", "additionalProperties": false, "properties": { "label": { "type": "string" }, "recurring": { "type": "boolean" }, "type": { "type": "integer" } }, "required": [ "recurring" ] }, "InvestmentInfo": { "type": "object", "additionalProperties": false, "properties": { "activity": { "$ref": "#/definitions/InvestmentActivity" }, "security": { "$ref": "#/definitions/Security" }, "transaction": { "$ref": "#/definitions/InvestmentTransaction" } } }, "InvestmentActivity": { "type": "object", "additionalProperties": false, "properties": { "label": { "type": "string" }, "type": { "type": "integer" } } }, "Security": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Security" }, "name": { "type": "string" }, "symbol": { "type": "string" } } }, "InvestmentTransaction": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for InvestmentTransaction" }, "price": { "type": "number" }, "quantity": { "type": "number" } } }, "PayeeLink": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Payee" }, "name": { "type": "string" } } }, "TransactionSplit": { "type": "object", "additionalProperties": false, "properties": { "parentId": { "type": "integer" }, "rowId": { "type": "integer" }, "transaction": { "$ref": "#/definitions/Transaction" } } }, "Transaction": { "type": "object", "additionalProperties": false, "properties": { "_id": { "type": "integer", "description": "A unique ID for Transaction" }, "account": { "$ref": "#/definitions/AccountLink" }, "amount": { "type": "number" }, "category": { "$ref": "#/definitions/CategoryLink" }, "classification1": { "$ref": "#/definitions/Classification1Link" }, "cleared": { "type": "boolean" }, "clearedState": { "type": "integer" }, "date": { "type": "string", "format": "date-time" }, "fiTransactionId": { "type": "string" }, "frequency": { "$ref": "#/definitions/Frequency" }, "investment": { "type": "boolean" }, "investmentInfo": { "$ref": "#/definitions/InvestmentInfo" }, "memo": { "type": "string" }, "number": { "type": "string" }, "payee": { "$ref": "#/definitions/PayeeLink" }, "reconciled": { "type": "boolean" }, "recurring": { "type": "boolean" }, "splits": { "type": "array", "items": { "$ref": "#/definitions/TransactionSplit" } }, "state": { "type": "string", "enum": [ "UNRECONCILED", "RECONCILED", "CLEARED", "VOID" ] }, "statusFlag": { "type": "integer" }, "transactionInfo": { "$ref": "#/definitions/TransactionInfo" }, "transfer": { "type": "boolean" }, "unaccepted": { "type": "boolean" }, "void": { "type": "boolean" }, "xferInfo": { "$ref": "#/definitions/XferInfo" } }, "required": [ "cleared", "investment", "reconciled", "recurring", "transfer", "unaccepted", "void" ] }, "TransactionInfo": { "type": "object", "additionalProperties": false, "properties": { "flag": { "type": "integer" }, "investment": { "type": "boolean" }, "splitChild": { "type": "boolean" }, "splitParent": { "type": "boolean" }, "transfer": { "type": "boolean" }, "transferTo": { "type": "boolean" }, "void": { "type": "boolean" } }, "required": [ "investment", "splitChild", "splitParent", "transfer", "transferTo", "void" ] }, "XferInfo": { "type": "object", "additionalProperties": false, "properties": { "xferAccountId": { "type": "integer" }, "xferTransactionId": { "type": "integer" } } } } }
o46263
{ "additionalProperties": false, "definitions": { "attribute": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "format": { "type": "string" }, "info": { "type": "object" }, "label": { "type": "string" }, "locales": { "items": { "type": "string" }, "type": "array" }, "missing_value": { "title": "Missing value", "type": [ "string", "number", "null", "boolean" ] }, "name": { "type": "string" }, "order": { "enum": [ "asc", "desc" ], "type": "string" } }, "required": [ "name" ], "type": "object" } }, "properties": { "attributes": { "items": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/attribute" } ] }, "type": "array" }, "cardinality": { "enum": [ "tiny", "low", "medium", "high" ], "type": "string" }, "default_hierarchy_name": { "title": "Default Hierarchy Name", "type": "string" }, "description": { "type": "string" }, "hierarchies": { "items": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "info": { "type": "object" }, "label": { "type": "string" }, "levels": { "items": { "title": "Level", "type": "string" }, "type": "array" }, "name": { "type": "string" } }, "required": [ "name" ], "title": "Hierarchy", "type": "object" }, "title": "Hierarchies", "type": "array" }, "info": { "type": "object" }, "key": { "type": "string" }, "label": { "type": "string" }, "label_attribute": { "type": "string" }, "levels": { "items": { "additionalProperties": false, "properties": { "attributes": { "items": { "oneOf": [ { "type": "string" }, { "$ref": "#/definitions/attribute" } ] }, "type": "array" }, "cardinality": { "enum": [ "tiny", "low", "medium", "high" ], "type": "string" }, "description": { "type": "string" }, "info": { "type": "object" }, "key": { "type": "string" }, "label": { "type": "string" }, "label_attribute": { "type": "string" }, "name": { "type": "string" }, "order": { "enum": [ "asc", "desc" ], "type": "string" }, "order_attribute": { "type": "string" }, "role": { "type": "string" } }, "required": [ "name" ], "title": "Level", "type": [ "object", "string" ] }, "type": "array" }, "name": { "type": "string" }, "nonadditive": { "type": "string" }, "order_attribute": { "type": "string" }, "role": { "type": "string" }, "template": { "type": "string" } }, "required": [ "name" ], "title": "Dimension", "type": "object" }
o91013
{ "additionalProperties": false, "description": "common json schema for transaction volumes tagged by user channel", "properties": { "_id": { "description": "unique url-friendly base64 encoded, utf8 endoded concatenation identifier", "type": "string" }, "_timestamp": { "_format": "date-time", "description": "ISO8601 combined date and time in UTC e.g. '2014-12-01T00:00:00+00:00'", "type": "string" }, "channel": { "description": "user contact channel", "type": "string" }, "count": { "description": "the number of completed transactions over the specific channel", "minimum": 0, "type": "integer" }, "period": { "description": "The period covered by each data point from the _timestamp", "enum": [ "hour", "day", "week", "month", "quarter" ] } }, "required": [ "_id", "_timestamp", "period", "channel", "count" ], "title": "transactions-by-channel", "type": "object" }
o21464
{ "properties": { "check_in_date": { "description": "The check-in date in YYYY-MM-DD format", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date in YYYY-MM-DD format", "format": "date", "type": "string" }, "location": { "description": "The location of the hotel", "type": "string" }, "number_of_guests": { "description": "The number of guests", "type": "integer" } }, "required": [ "location", "check_in_date", "check_out_date", "number_of_guests" ], "type": "object" }
search_hotels_7d3a122a
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" } }, "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": [ "string", "null" ] }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": [ "string", "null" ] }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": [ "string", "null" ] }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": [ "string", "null" ] }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": [ "boolean", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": [ "string", "null" ] } }, "required": [ "monitors", "image" ], "type": "object" }
kb_792_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://holi0317.net/schemas", "type": "object", "properties": { "formatVersion": { "id": "http://holi0317.net/schemas/formatVersion", "type": "integer", "enum": [ 1 ] }, "updateUrl": { "id": "http://holi0317.net/schemas/updateUrl", "type": "string" }, "uid": { "id": "http://holi0317.net/schemas/uid", "type": "string" }, "repo": { "id": "http://holi0317.net/schemas/repo", "type": "string" }, "versions": { "id": "http://holi0317.net/schemas/versions", "type": "array", "items": { "id": "http://holi0317.net/schemas/versions/0", "type": "object", "required": [ "urls", "version" ], "properties": { "urls": { "anyOf": [ { "type": "array", "items": { "id": "http://holi0317.net/schemas/versions/0/urls/0", "type": "object", "properties": { "url": { "id": "http://holi0317.net/schemas/versions/0/urls/0/url", "type": "string", "format": "uri" }, "downloadType": { "id": "http://holi0317.net/schemas/versions/0/urls/0/downloadType", "type": "string", "enum": [ "direct", "parallel", "sequential" ], "default": "parallel" }, "priority": { "id": "http://holi0317.net/schemas/versions/0/urls/0/priority", "type": "number", "default": 0 } } } }, { "type": "object", "properties": { "url": { "id": "http://holi0317.net/schemas/versions/0/urls/0/url", "type": "string", "format": "uri" }, "downloadType": { "id": "http://holi0317.net/schemas/versions/0/urls/0/downloadType", "type": "string", "enum": [ "direct", "parallel", "sequential", "encoded" ], "default": "parallel" }, "priority": { "id": "http://holi0317.net/schemas/versions/0/urls/0/priority", "type": "number" } } } ] }, "version": { "id": "http://holi0317.net/schemas/versions/0/version", "type": "string" }, "name": { "id": "http://holi0317.net/schemas/versions/0/name", "type": "string" }, "references": { "id": "http://holi0317.net/schemas/versions/0/references", "type": "array", "items": { "type": "object", "properties": { "depends": { "id": "http://holi0317.net/schemas/versions/0/references/0/depends", "type": "string" }, "recommends": { "id": "http://holi0317.net/schemas/versions/0/references/0/recommends", "type": "string" }, "suggests": { "id": "http://holi0317.net/schemas/versions/0/references/0/suggests", "type": "string" }, "conflicts": { "id": "http://holi0317.net/schemas/versions/0/references/0/conflicts", "type": "string" }, "provides": { "id": "http://holi0317.net/schemas/versions/0/references/0/provides", "type": "string" } } } }, "type": { "id": "http://holi0317.net/schemas/versions/0/type", "type": "string", "default": "release" }, "installType": { "id": "http://holi0317.net/schemas/versions/0/installType", "type": "string", "enum": [ "forgeMod", "forgeCoreMod", "liteloaderMod", "extract", "group" ], "default": "forgeMod" }, "sha1": { "id": "http://holi0317.net/schemas/versions/0/sha1", "type": "string" } } } }, "name": { "id": "http://holi0317.net/schemas/name", "type": "string" }, "modId": { "id": "http://holi0317.net/schemas/modId", "type": "string" }, "description": { "id": "http://holi0317.net/schemas/description", "type": "string" }, "license": { "id": "http://holi0317.net/schemas/license", "type": "string" }, "urls": { "id": "http://holi0317.net/schemas/urls", "type": "object", "additionalProperties": false, "properties": { "website": { "id": "http://holi0317.net/schemas/urls/website", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/website/0", "type": "string", "format": "uri" } }, "wiki": { "id": "http://holi0317.net/schemas/urls/wiki", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/wiki/0", "type": "string", "format": "uri" } }, "forum": { "id": "http://holi0317.net/schemas/urls/forum", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/forum/0", "type": "string", "format": "uri" } }, "donation": { "id": "http://holi0317.net/schemas/urls/donation", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/donation/0", "type": "string", "format": "uri" } }, "issues": { "id": "http://holi0317.net/schemas/urls/issues", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/issues/0", "type": "string", "format": "uri" } }, "source": { "id": "http://holi0317.net/schemas/urls/source", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/source/0", "type": "string", "format": "uri" } }, "icon": { "id": "http://holi0317.net/schemas/urls/icon", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/icon/0", "type": "string", "format": "uri" } }, "logo": { "id": "http://holi0317.net/schemas/urls/logo", "type": "array", "items": { "id": "http://holi0317.net/schemas/urls/logo/0", "type": "string", "format": "uri" } } } }, "tags": { "id": "http://holi0317.net/schemas/tags", "type": "array", "items": { "id": "http://holi0317.net/schemas/tags/0", "type": "string" } }, "categories": { "id": "http://holi0317.net/schemas/categories", "type": "array", "items": { "id": "http://holi0317.net/schemas/categories/0", "type": "string" } }, "authors": { "id": "http://holi0317.net/schemas/authors", "type": "object", "patternProperties": { ".+": { "id": "http://holi0317.net/schemas/authors/", "type": "string" } } }, "references": { "id": "http://holi0317.net/schemas/references", "type": "object", "properties": {} } }, "required": [ "formatVersion", "updateUrl", "uid", "repo", "versions", "name" ] }
o7264
{ "properties": { "birthdate": { "description": "The date of birth of the user in YYYY-MM-DD format", "format": "date", "type": "string" }, "email": { "description": "The email address for the new account", "format": "email", "type": "string" }, "password": { "description": "The password for the new account", "type": "string" }, "username": { "description": "The username for the new account", "type": "string" } }, "required": [ "username", "email", "password", "birthdate" ], "type": "object" }
create_user_633f87f7
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base length of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_2dac2d37
{ "additionalProperties": false, "description": "Schema for a context that represents information pertaining to the current screen being viewed when an event occurs.", "minProperties": 2, "properties": { "activity": { "description": "Android specific: name of activity.", "type": "string" }, "fragment": { "description": "Android specific: name of fragment.", "type": "string" }, "id": { "_format": "uuid", "description": "An ID from the associated screenview event.", "maxLength": 36, "type": "string" }, "name": { "description": "The name of the screen viewed.", "type": "string" }, "topViewController": { "description": "iOS specific: class name of the top level view controller.", "type": "string" }, "type": { "description": "The type of screen that was viewed e.g feed / carousel.", "type": "string" }, "viewController": { "description": "iOS specific: class name of the view controller.", "type": "string" } }, "required": [ "name", "id" ], "self": { "format": "jsonschema", "name": "screen", "vendor": "com.snowplowanalytics.mobile", "version": "1-0-0" }, "type": "object" }
sp_224_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://schemas.massisframework.com/massis3/material/MaterialTexture.json", "javaType": "com.massisframework.massis3.material.MaterialTexture", "title": "MaterialTexture", "description": "defines geometry texture properties", "type": "object", "properties": { "angle": { "id": "/properties/texture/properties/angle", "type": "integer" }, "height": { "id": "/properties/texture/properties/height", "type": "integer" }, "image": { "id": "/properties/texture/properties/image", "type": "string" }, "leftToRightOriented": { "id": "/properties/texture/properties/leftToRightOriented", "type": "boolean" }, "name": { "id": "/properties/texture/properties/name", "type": "string" }, "width": { "id": "/properties/texture/properties/width", "type": "number" } } }
o71446
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "links": { "type": "array", "description": "Generate links for these navigation targets", "items": { "type": "object", "required": [ "target", "htmlLabel" ], "properties": { "target": { "type": "string" }, "htmlLabel": { "type": "string" } } } }, "buttons": { "type": "array", "description": "Generate buttons for these navigation targets", "items": { "type": "object", "required": [ "target", "htmlLabel" ], "properties": { "target": { "type": "string" }, "htmlLabel": { "type": "string" } } } } } }
o9371
{ "properties": { "dimensions": { "description": "The dimensions required for calculating the area", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "enum": [ "rectangle", "circle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_d97996ce
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AttachedVolume": { "description": "AttachedVolume describes a volume attached to a node", "properties": { "devicePath": { "description": "DevicePath represents the device path where the volume should be available", "type": "string" }, "name": { "description": "Name of the attached volume", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource": { "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", "properties": { "kubeletConfigKey": { "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", "type": "string" }, "name": { "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "namespace": { "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "resourceVersion": { "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" }, "uid": { "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" } }, "required": [ "namespace", "name", "kubeletConfigKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerImage": { "description": "Describe a container image", "properties": { "names": { "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", "items": { "type": "string" }, "type": "array" }, "sizeBytes": { "_format": "int64", "description": "The size of the image in bytes.", "type": "integer" } }, "required": [ "names" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint": { "description": "DaemonEndpoint contains information about a single Daemon endpoint.", "properties": { "Port": { "_format": "int32", "description": "Port number of the given endpoint.", "type": "integer" } }, "required": [ "Port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAddress": { "description": "NodeAddress contains information for the node's address.", "properties": { "address": { "description": "The node address.", "type": "string" }, "type": { "description": "Node address type, one of Hostname, ExternalIP or InternalIP.", "type": "string" } }, "required": [ "type", "address" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeCondition": { "description": "NodeCondition contains condition information for a node.", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we got an update on a given condition." }, "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transit from one status to another." }, "message": { "description": "Human readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "(brief) reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of node condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource": { "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapNodeConfigSource", "description": "ConfigMap is a reference to a Node's ConfigMap" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigStatus": { "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.", "properties": { "active": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error." }, "assigned": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned." }, "error": { "description": "Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.", "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigSource", "description": "LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeDaemonEndpoints": { "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DaemonEndpoint", "description": "Endpoint on which Kubelet is listening." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSystemInfo": { "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.", "properties": { "architecture": { "description": "The Architecture reported by the node", "type": "string" }, "bootID": { "description": "Boot ID reported by the node.", "type": "string" }, "containerRuntimeVersion": { "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", "type": "string" }, "kernelVersion": { "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", "type": "string" }, "kubeProxyVersion": { "description": "KubeProxy Version reported by the node.", "type": "string" }, "kubeletVersion": { "description": "Kubelet Version reported by the node.", "type": "string" }, "machineID": { "description": "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html", "type": "string" }, "operatingSystem": { "description": "The Operating System reported by the node", "type": "string" }, "osImage": { "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", "type": "string" }, "systemUUID": { "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid", "type": "string" } }, "required": [ "machineID", "systemUUID", "bootID", "kernelVersion", "osImage", "containerRuntimeVersion", "kubeletVersion", "kubeProxyVersion", "operatingSystem", "architecture" ], "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_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": "NodeStatus is information about the current status of a node.", "properties": { "addresses": { "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAddress" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "allocatable": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.", "type": [ "object", "null" ] }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": [ "object", "null" ] }, "conditions": { "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeCondition" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "config": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeConfigStatus", "description": "Status of the config assigned to the node via the dynamic Kubelet config feature." }, "daemonEndpoints": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeDaemonEndpoints", "description": "Endpoints of daemons running on the Node." }, "images": { "description": "List of container images on this node", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerImage" }, "type": [ "array", "null" ] }, "nodeInfo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSystemInfo", "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info" }, "phase": { "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.", "type": [ "string", "null" ] }, "volumesAttached": { "description": "List of volumes that are attached to the node.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AttachedVolume" }, "type": [ "array", "null" ] }, "volumesInUse": { "description": "List of attachable volumes in use (mounted) by the node.", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] } }, "type": "object" }
kb_631_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Virtual-Machine-Schema", "version": "1.0.0", "author": "denis", "description": "represent a virtual machine", "associated-tool": "Docker-Rest-API", "properties": { "id": { "type": "string", "default-value": "", "description": "id of the VM" }, "ip-of-VM": { "type": "string", "default-value": "127.0.0.1", "description": "ip of the VM where the resource to be deployed" }, "port-of-VM": { "type": "string", "default-value": "4243", "description": "port of the VM where the resource to be deployed" } }, "required": [ "id", "ip-of-VM", "port-of-VM" ] }
o35770
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/GetWindowRect.result.scheme.json", "title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b GetWindowRect", "description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b GetWindowRect", "type": "object", "properties": { "window_rect": { "description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442", "type": "object", "properties": { "top": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 top", "type": "number" }, "left": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 left", "type": "number" }, "bottom": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 bottom", "type": "number" }, "right": { "description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 right", "type": "number" } }, "additionalProperties": false, "required": [ "top", "left", "bottom", "right" ] } }, "additionalProperties": false }
o5146
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "name": { "type": "string", "maxLength": 40 }, "email": { "type": "string", "maxLength": 60 }, "theme": { "type": "string", "maxLength": 40 } }, "required": [ "name", "email", "theme" ], "additionalProperties": false }
o40224
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem": { "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.", "properties": { "default": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Default resource requirement limit value by resource name if resource limit is omitted.", "type": "object" }, "defaultRequest": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.", "type": "object" }, "max": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Max usage constraints on this kind by resource name.", "type": "object" }, "maxLimitRequestRatio": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.", "type": "object" }, "min": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Min usage constraints on this kind by resource name.", "type": "object" }, "type": { "description": "Type of resource that this limit applies to.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeSpec": { "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.", "properties": { "limits": { "description": "Limits is the list of LimitRangeItem objects that are enforced.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeItem" }, "type": "array" } }, "required": [ "limits" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_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": "LimitRange sets resource usage limits for each kind of resource in a Namespace.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": [ "string", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "LimitRange" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LimitRangeSpec", "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "LimitRange", "version": "v1" } ] }
kb_526_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "key": { "title": "Device Tag Pair", "type": "string", "messages": { "required": "Device Tag pair is required" } }, "type": { "type": "string", "enum": [ "deviceTag" ] }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string" } } }, "meta": { "type": "object" }, "config": { "type": "object", "additionalProperties": false } }, "required": [ "key", "type" ], "additionalProperties": false }
o6259
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "type": "object", "properties": { "urlPathTemplate": { "title": "Service Path", "type": "string", "minLength": 1 }, "textTemplate": { "title": "Message", "type": "string", "minLength": 1 }, "channelTemplate": { "title": "Channel Name", "type": "string", "minLength": 1 } }, "required": [ "urlPathTemplate" ] }
o6248
{ "$schema": "http://json-schema.org/draft-06/schema#", "title": "Result", "description": "Represents the result of running CFLint", "type": "object", "properties": { "version": { "title": "Version", "description": "The version of CFLint that products these results", "type": "string" }, "timestamp": { "title": "Timestamp", "description": "A timestamp representing the Unix epoch time when these results were generated", "type": "number" }, "issues": { "title": "Issues", "description": "A list of issues reported by CFLint", "type": "array", "items": { "title": "Issue", "description": "Represents each issue found", "type": "object", "properties": { "severity": { "title": "Severity", "description": "The severity level of the issue", "type": "string", "enum": [ "FATAL", "CRITICAL", "ERROR", "WARNING", "CAUTION", "INFO", "COSMETIC" ] }, "id": { "title": "ID", "description": "Unique identifier of the rule used to find the issue", "type": "string" }, "message": { "title": "Message", "description": "Same as ID", "type": "string" }, "category": { "title": "Category", "description": "Currently always contains CFLINT", "type": "string", "default": "CFLINT" }, "abbrev": { "title": "Abbreviation", "description": "An abbreviation of the rule used to find the issue", "type": "string" }, "locations": { "title": "Locations", "description": "A list of locations that the issue occurs", "type": "array", "items": { "title": "Location", "description": "Properties of the individual issue reported", "type": "object", "properties": { "file": { "title": "File", "description": "Full file path to the file in which the issue was found", "type": "string" }, "fileName": { "title": "File name", "description": "Just the file name in which the issue was found", "type": "string" }, "function": { "title": "Function", "description": "The function in which or for which the issue was found", "type": "string" }, "column": { "title": "Column", "description": "The column number of the starting position at which the issue was found", "type": "number" }, "line": { "title": "Line", "description": "The line number of the starting position at which the issue was found", "type": "number" }, "message": { "title": "Message", "description": "A message describing this specific issue", "type": "string" }, "variable": { "title": "Variable", "description": "The variable name for which the issue was found", "type": "string" }, "expression": { "title": "Expression", "description": "The expression in which the issue was found", "type": "string" } }, "required": [ "file", "fileName", "function", "column", "line", "message", "variable", "expression" ] }, "minItems": 1 } }, "required": [ "severity", "id", "message", "category", "abbrev", "locations" ] }, "default": [] }, "counts": { "title": "Counts", "description": "Provides counts for the results of running CFLint", "type": "object", "properties": { "totalFiles": { "title": "Total Files", "description": "The total number of files read during this scan", "type": "number", "default": 0 }, "totalLines": { "title": "Total Lines", "description": "The total number of lines of code scanned", "type": "number", "default": 0 }, "countByCode": { "title": "Count by Code", "description": "List of issue codes with their respective issue counts", "type": "array", "items": { "title": "Code Count", "description": "The count of issues found for each distinct issue code", "type": "object", "properties": { "code": { "title": "Current Code", "description": "The current issue code being counted", "type": "string" }, "count": { "title": "Current Count", "description": "The issue count for the current issue code", "type": "number" } }, "required": [ "code", "count" ] }, "default": [] }, "countBySeverity": { "title": "Count by Severity", "description": "List of issue severities with their respective issue counts", "type": "array", "items": { "title": "Severity Count", "description": "The count of issues found for each distinct issue severity", "type": "object", "properties": { "severity": { "title": "Current Severity", "description": "The current issue severity being counted", "type": "string" }, "count": { "title": "Current Count", "description": "The issue count for the current severity", "type": "number" } }, "required": [ "severity", "count" ] }, "default": [] } }, "required": [ "totalFiles", "totalLines", "countByCode", "countBySeverity" ] } }, "required": [ "version", "timestamp", "issues", "counts" ] }
o15222
{ "title": "Invocation manifest for MRIQC: No-reference image quality metrics for quality assessment of MRI ", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "measurement": { "default": "auto-detect", "type": "string", "enum": [ "auto-detect", "functional", "T1", "T2" ] }, "save_derivatives": { "default": false, "type": "boolean" }, "save_outputs": { "default": false, "type": "boolean" }, "verbose_reports": { "default": false, "type": "boolean" } }, "required": [ "measurement", "save_derivatives", "save_outputs", "verbose_reports" ] }, "inputs": { "type": "object", "properties": { "nifti": { "type": "object", "properties": { "type": { "enum": [ "nifti" ] } } } }, "required": [ "nifti" ] } }, "required": [ "config", "inputs" ] }
o41342
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "create tasks response", "description": "create tasks response", "type": "object", "properties": { "exitCode": { "type": "integer" }, "stdout": { "type": "string" }, "stderr": { "type": "string" } }, "required": [ "exitCode", "stdout", "stderr" ], "additionalProperties": false }
o76477
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the square or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the square or triangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g. circle, square, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_1966c622
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/awsLoadBalancerConfig.json", "$$target": "awsLoadBalancerConfig.json", "title": "AWS Load balancer configuration", "description": "AWS Load balancer configuration for Kubernetes API servers", "properties": { "subnet": { "description": "List of subnets to use within a region for the cluster. ", "items": { "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "subnet" ], "additionalProperties": false, "type": "object" }
o90355
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "currentTime": { "_format": "date-time", "type": "string" }, "interval": { "type": "number" }, "status": { "enum": [ "Accepted", "Pending", "Rejected" ], "type": "string" } }, "required": [ "status", "currentTime", "interval" ], "title": "BootNotificationResponse", "type": "object" }
o43999
{ "id": "http://schemas.gdbots.io/json-schema/gdbots/enrichments/mixin/time-sampling/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "ts_ymdh": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295 }, "ts_ymd": { "type": "integer", "default": 0, "minimum": 0, "maximum": 4294967295 }, "ts_ym": { "type": "integer", "default": 0, "minimum": 0, "maximum": 16777215 } }, "additionalProperties": true }
o42536
{ "$id": "https://github.com/hyperjumptech/monika/main/monika-config-schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "urlFormat": { "type": "string", "pattern": "^https?://" }, "incidentThreshold": { "type": "integer", "description": "Number of times an alert should return true before Monika sends incident notifications", "default": 5 }, "recoveryThreshold": { "type": "integer", "description": "Number of times an alert should return false before Monika sends recovery notifications", "default": 5 }, "interval": { "title": "Interval", "type": "integer", "description": "The number of seconds to repeat the probe", "default": 10 }, "postgres": { "title": "Postgres", "type": "array", "description": "Monitor postgres readiness", "items": { "type": "object", "anyOf": [ { "required": ["uri"], "additionalProperties": false, "properties": { "uri": { "title": "URI connection", "type": "string", "description": "Postgres uri connection configuration", "examples": ["postgres://user:[email protected]:5432/mydb"] } } }, { "required": ["host", "port", "database"], "additionalProperties": true, "properties": { "host": { "type": "string", "description": "Postgres host address to connect to", "default": "172.15.0.1" }, "port": { "title": "Port", "type": "integer", "description": "Postgres port to connect to", "default": "5432" }, "database": { "title": "Database", "type": "string", "description": "Name of the database", "default": "" }, "username": { "title": "Username", "type": "string", "description": "Username with access to the database", "default": "" }, "password": { "title": "Password", "type": "string", "description": "User's database password", "default": "" } } } ] } }, "redis": { "title": "Redis", "type": "array", "description": "Monitor redis health ", "items": { "type": "object", "anyOf": [ { "required": ["uri"], "additionalProperties": true, "properties": { "uri": { "title": "URI connection", "type": "string", "description": "redis uri connection configuration", "examples": ["redis://alice:[email protected]:6379"] } } }, { "required": ["host", "port"], "additionalProperties": true, "properties": { "host": { "title": "Redis host", "description": "The hostname or IP address of the redis server", "type": "string", "default": "172.15.0.1", "examples": ["localhost", "192.168.0.1"] }, "port": { "title": "Port number", "description": "Port number used for the redis", "type": "integer", "default": "6379" }, "password": { "title": "Password", "description": "Password used for the redis AUTH, if set.", "type": "string", "default": "" }, "username": { "title": "Username", "description": "Username used for the redis AUTH, if set.", "type": "string", "default": "" } } } ] } }, "mongo": { "title": "MongoDB", "type": "array", "description": "Monitor MongoDB health ", "items": { "type": "object", "additionalProperties": true, "required": [], "properties": { "uri": { "title": "MongoDB URI", "description": "The hostname or IP address of the MongoDB server", "type": "string", "examples": ["mongodb://user:[email protected]:27017/database"], "default": "mongodb://127.0.0.1:27017" }, "host": { "title": "MongoDB host", "description": "The hostname or IP address of the MongoDB server", "type": "string", "examples": ["localhost", "127.0.0.1"], "default": "0.0.0.0.0" }, "port": { "title": "Port number", "description": "Port number used for the MongoDB", "type": "integer", "examples": ["27017"], "default": "27017" }, "password": { "title": "Password", "description": "Password used for the MongoDB AUTH, if set.", "type": "string", "default": "" }, "username": { "title": "Username", "description": "Username used for the MongoDB AUTH, if set.", "type": "string", "default": "" } } } }, "mariadb": { "title": "MariaDB/Mysql", "type": "array", "description": "Monitor MariaDB/Mysql health ", "items": { "type": "object", "additionalProperties": false, "required": ["host", "port", "username", "password", "database"], "properties": { "host": { "title": "Database host", "description": "The hostname or IP address of the database server", "type": "string", "examples": ["localhost", "127.0.0.1", "172.11.0.1"], "default": "0.0.0.0" }, "port": { "title": "Port number", "description": "Port number used by your database server", "type": "integer", "default": "3306" }, "username": { "title": "Username", "description": "User with access to the database", "type": "string", "default": "" }, "password": { "title": "Password", "description": "User password for authentication", "type": "string", "default": "" }, "database": { "title": "Database", "default": "Name of the database" } } } }, "requests": { "title": "Requests", "type": "array", "description": "The http or ping request to probe for", "items": { "type": "object", "additionalProperties": false, "required": ["url"], "properties": { "method": { "title": "HTTP Method", "type": "string", "description": "The http method", "enum": ["GET", "POST", "DELETE", "PUT", "PATCH"], "default": "GET" }, "url": { "title": "Url", "type": "string", "description": "The remote URL address to probe", "default": "https://api.github.com/zen", "examples": ["https://github.com", "https://httpbin.org/status/200"] }, "timeout": { "title": "Timeout", "type": "integer", "description": "Set the timeout for the request in milliseconds, default is 10 seconds", "default": 10000 }, "saveBody": { "title": "SaveBody", "type": "boolean", "description": "Should response body be saved in the database", "default": false }, "alerts": { "$ref": "#/definitions/alerts" }, "ping": { "title": "Ping", "type": "boolean", "description": "If defined and to true, the request is an ICMP ping" }, "allowUnauthorized": { "title": "AllowUnauthorized", "type": "boolean", "description": "If defined and to true, the request will ignore SSL certificate validity" }, "body": { "$ref": "#/definitions/body" }, "headers": { "$ref": "#/definitions/headers" } } } }, "socket": { "title": "Socket", "type": "object", "description": "Socket is a TCP type request", "additionalProperties": false, "required": ["host", "port", "data"], "properties": { "host": { "type": "string", "description": "Address to your host" }, "port": { "title": "Port", "type": "integer", "description": "Host port to connect to" }, "data": { "title": "Data", "type": "string", "description": "Data payload for the request" } } }, "alerts": { "title": "Alerts", "type": "array", "description": "The condition which will trigger an alert and the subsequent notification", "items": { "type": "object", "anyOf": [ { "required": ["assertion", "message"], "additionalProperties": false, "properties": { "assertion": { "title": "Assertion", "type": "string", "description": "An expression that will trigger an alert when its is logically true. See the assertions here: https://monika.hyperjump.tech/guides/alerts#alert-query", "default": "response.status != 200" }, "message": { "title": "Message", "type": "string", "description": "Message that will be sent to the notification channel", "default": "Http Response status code is not 200!" } } }, { "required": ["query", "message"], "additionalProperties": false, "properties": { "query": { "title": "Query", "type": "string", "description": "Note: Query is deprecated, please use assertion", "default": "response.status != 200" }, "message": { "title": "Message", "type": "string", "description": "Message that will be sent to the notification channel", "default": "Http Response status code is not 200!" } } } ] } }, "body": { "title": "Body", "description": "The data bytes transmitted in an HTTP transaction message immediately following the headers if there are any" }, "headers": { "title": "Headers", "type": "object", "description": "A list of strings sent and received by both the client program and server on every HTTP request and response", "additionalProperties": true, "properties": { "Accept": { "type": "string", "description": "Media type(s) that is/are acceptable for the response" }, "Accept-Charset": { "type": "string", "description": "Character sets that are acceptable" }, "Accept-Encoding": { "type": "string", "description": "List of acceptable encodings" }, "Authorization": { "type": "string", "description": "Authentication credentials for HTTP authentication" }, "Cache-Control": { "type": "string", "description": "Used to specify directives that must be obeyed by all caching mechanisms along the request-response chain" }, "Cookie": { "type": "string", "description": "An HTTP cookie previously sent by the server with Set-Cookie" }, "Connection": { "type": "string", "description": "General header that allows the sender or client to specify options that are desired for that particular connection" }, "Content-Type": { "type": "string", "description": "The Media type of the body of the request (used with POST and PUT requests" }, "Keep-Alive": { "type": "string", "description": "General header used to inform how long a persistent connection should stay open" }, "Origin": { "type": "string", "description": "Initiates a request for cross-origin resource sharing (asks server for Access-Control-* response fields)" }, "Referer": { "type": "string", "description": "This is the address of the previous web page (referrer) from which a link to the currently requested page was followed" }, "User-Agent": { "type": "string", "description": "The user agent string of the user agent" } } } }, "description": "Monika monitoring configuration schema", "properties": { "probes": { "title": "Probes", "type": "array", "description": "Probe is a description of the target, methods, timing and payloads to begin monitoring/probing a target.", "items": { "type": "object", "additionalProperties": false, "required": ["id"], "properties": { "id": { "title": "Id", "type": "string", "description": "Unique string identification of the probe", "examples": ["probe-01", "login-probe-01"], "default": "probe-01" }, "name": { "title": "Name", "type": "string", "description": "A human-readible probe name", "examples": ["get-user", "login-check", "web-heatlh-check"], "default": "zen-check-01" }, "description": { "title": "Description", "type": "string", "description": "Description of the probe", "examples": ["ensure service health is good"], "default": "Ensure connectivity to github is successful" }, "interval": { "$ref": "#/definitions/interval" }, "postgres": { "$ref": "#/definitions/postgres" }, "redis": { "$ref": "#/definitions/redis" }, "mongo": { "$ref": "#/definitions/mongo" }, "mariadb": { "$ref": "#/definitions/mariadb" }, "mysql": { "$ref": "#/definitions/mariadb" }, "requests": { "$ref": "#/definitions/requests" }, "socket": { "$ref": "#/definitions/socket" }, "incidentThreshold": { "$ref": "#/definitions/incidentThreshold" }, "recoveryThreshold": { "$ref": "#/definitions/recoveryThreshold" }, "alerts": { "$ref": "#/definitions/alerts" } } } }, "notifications": { "title": "Notifications", "type": "array", "description": "Alerts of incidents and recoveries will be sent via these notification channels", "items": { "anyOf": [ { "title": "Desktop", "type": "object", "required": ["id", "type"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "desktop-01" }, "type": { "const": "desktop" } } }, { "title": "Discord", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "discord-01" }, "type": { "const": "discord" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "The URL of the Discord Webhook that will receive notification", "examples": [ "https://discord.com/api/webhook/<webhook.id>/<webhook.token>" ] } } } } }, { "title": "Workplace", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "workplace-01" }, "type": { "const": "workplace" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["thread_id", "access_token"], "properties": { "thread_id": { "type": "string", "description": "Thread id is the set of numbers at the end of the url" }, "access_token": { "type": "string", "description": "Workplace access token for custom integration" } } } } }, { "title": "Google Chat", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "google-chat-01" }, "type": { "const": "google-chat" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "The webhook URL for your google chat", "examples": [ "https://chat.googleapis.com/v1/spaces/XXXXX/messages?key=1122334455" ] } } } } }, { "title": "Lark", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "lark-01" }, "type": { "const": "lark" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "The webhook URL for your lark suite", "examples": [ "https://open.larksuite.com/open-apis/bot/v2/hook/your-webhook-key-here" ] } } } } }, { "title": "Mailgun", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string" }, "type": { "const": "mailgun" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["recipients", "apiKey", "domain"], "properties": { "recipients": { "type": "array", "description": "An array of email addresses that will receive the e-mail from Monika", "items": { "type": "string" } }, "apiKey": { "type": "string", "description": "Mailgun account API key, mailgun registered key to identify your account" }, "domain": { "type": "string", "description": "The domain to set in Mailgun" } } } } }, { "title": "Microsoft Teams", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "teams-01" }, "type": { "const": "teams" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "Your teams webhook URL" } } } } }, { "title": "Monika Notification", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "monika-01" }, "type": { "const": "monika-notif" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "Your Monika notification URL", "examples": [ "https://whatsapp.hyperjump.tech/api/notify?token=<webhook.token>" ] } } } } }, { "title": "Pagerduty", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique pagerduty notif id", "default": "pagerduty-01" }, "type": { "const": "pagerduty" }, "data": { "type": "array", "description": "An array of email addresses that will receive the e-mail from Monika", "items": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["key", "probeID"], "properties": { "key": { "type": "string", "description": "Pagerduty integration key" }, "probeID": { "type": "string", "description": "Monika Probe ID" } } } } } }, { "title": "Sendgrid", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique sendgrid notification id", "default": "sendgrid-01" }, "type": { "const": "sendgrid" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["sender", "recipients", "apiKey"], "properties": { "sender": { "type": "string", "description": "A string of email addresses that has been verified in your sendgrid account" }, "recipients": { "type": "array", "description": "An array of email addresses that will receive the e-mail from Monika", "items": { "type": "string" } }, "apiKey": { "type": "string", "description": "Sendgrid account api key, sendgrid registered key to identify your account" } } } } }, { "title": "Slack", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique slack notification id", "default": "slack-01" }, "type": { "const": "slack" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "The URL webhook for Slack", "examples": ["https://slackwebhook.com/channel"] } } } } }, { "title": "SMTP", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique smtp notification id", "default": "smtp-01" }, "type": { "const": "smtp" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": true, "required": ["recipients", "hostname", "port"], "properties": { "recipients": { "type": "array", "description": "An array of email address that will receive the email from Monika", "items": { "type": "string" } }, "hostname": { "type": "string", "description": "The smtp host that you will be using for sending the email" }, "port": { "type": "integer", "description": "The port allowed to be used for sending mail in your host" }, "username": { "type": "string", "description": "Registered username on your smtp server" }, "password": { "type": "string", "description": "The password set for your username" } } } } }, { "title": "Statuspage", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Notification identity number", "default": "statuspage" }, "type": { "const": "statuspage" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["pageID", "apiKey"], "properties": { "apiKey": { "type": "string", "description": "Statuspage API key" }, "pageID": { "type": "string", "description": "Statuspage page ID " } } } } }, { "title": "Telegram", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique telegram notification id", "default": "telegram-01" }, "type": { "const": "telegram" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["group_id", "bot_token"], "properties": { "group_id": { "type": "string", "description": "The ID of the group where the bot should send the messages" }, "bot_token": { "type": "string", "description": "Token for your telegram bot" } } } } }, { "title": "Webhook", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique webhook notification id", "default": "webhook-01" }, "type": { "const": "webhook" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["url"], "properties": { "url": { "$ref": "#/definitions/urlFormat", "description": "The URL of the server that will receive the webhook notification", "examples": ["https://yourwebsite.com/webhook"] } } } } }, { "title": "WhatsApp for Business", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique whatsapp notification id", "default": "whatsapp-01" }, "type": { "const": "whatsapp" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["recipients", "url", "username", "password"], "properties": { "recipients": { "type": "array", "description": "An array of phone numbers registered for WhatsApp, should start with your controu code number", "items": { "type": "string" } }, "url": { "$ref": "#/definitions/urlFormat", "description": "The URL of the server that will receive the webhook notification" }, "username": { "type": "string", "description": "Your WhatsApp API username" }, "password": { "type": "string", "description": "Your Whatsapp API user password" } } } } }, { "title": "Dingtalk", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique Dingtalk notification id", "default": "dingtalk-01" }, "type": { "const": "dingtalk" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["access_token"], "properties": { "access_token": { "type": "string", "description": "the token of your Dingtalk account" } } } } }, { "title": "Pushover", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique Pushover notification id", "default": "pushover-01" }, "type": { "const": "pushover" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["token", "user"], "properties": { "token": { "type": "string", "description": "Pushover application token" }, "user": { "type": "string", "description": "Pushover user key" } } } } }, { "title": "Gotify", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique Gotify notification id", "default": "Gotify-01" }, "type": { "const": "gotify" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["token", "url"], "properties": { "token": { "type": "string", "description": "Gotify application token" }, "url": { "type": "string", "description": "Gotify base url" } } } } }, { "title": "Opsgenie", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique opsgenie notification id", "default": "opsgenie-01" }, "type": { "const": "opsgenie" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["geniekey"], "properties": { "geniekey": { "type": "string", "description": "Opsgenie application token" } } } } }, { "title": "Pushbullet", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "Unique notification id", "default": "pushbullet-01" }, "type": { "const": "pushbullet" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["token"], "properties": { "token": { "type": "string", "description": "Pushbullet application token." }, "deviceID": { "type": "string", "description": "Pushbullet device identifier (optional)" } } } } }, { "title": "Instatus", "type": "object", "required": ["id", "type", "data"], "additionalProperties": false, "properties": { "id": { "type": "string", "description": "The type of notification", "default": "instatus" }, "type": { "const": "instatus" }, "data": { "type": "object", "description": "Data for your payload", "additionalProperties": false, "required": ["apiKey", "pageID"], "properties": { "apiKey": { "type": "string", "description": "Instatus API key" }, "pageID": { "type": "string", "description": "Instatus Page ID" } } } } } ] } }, "db_limit": { "type": "object", "description": "Database internal configuration", "additionalProperties": false, "properties": { "max_db_size": { "type": "number", "description": "Maximum Monika database size", "default": 1000000000 }, "deleted_data": { "type": "integer", "description": "Delete strategy when limit reached", "default": 1 }, "cron_schedule": { "type": "string", "description": "Schedule to trim the db in crontab", "default": "*/1 * * * *" } }, "required": ["max_db_size", "deleted_data", "cron_schedule"] }, "status-notification": { "type": "string", "title": "Status notification", "description": "Sends status notification periodically according to a cron schedule. Set to false to disable.", "default": "0 6 * * *" }, "certificate": { "title": "Certificate", "type": "object", "description": "Check validity of your TLS certificate(s).", "additionalProperties": false, "required": ["domains"], "properties": { "domains": { "type": "array", "description": "The list of domains to check", "items": { "anyOf": [ { "type": "string" }, { "type": "object", "required": ["domain"], "additionalProperties": false, "properties": { "domain": { "type": "string", "description": "Hostname to check", "examples": ["https://github.com"] }, "options": { "type": "object", "description": "Custom HTTPs Options", "additionalProperties": true, "properties": { "path": { "type": "string" } } } } } ] } }, "reminder": { "type": "integer", "description": "The number of days to send notification to user before the domain expires", "examples": [30] } } } }, "type": "object" }
monika-config-schema
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (required if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (required if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (required if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (required if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (required if shape is rectangle)", "type": "number" } }, "required": [ "radius", "base", "height", "length", "width" ], "type": "object" }, "shape": { "description": "The shape for which the area should be calculated (e.g. circle, triangle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_0170b024
{ "$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": [ "EiffelCompositionDefinedEvent" ] }, "version": { "type": "string", "enum": [ "3.1.0" ], "default": "3.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": "string", "pattern": "^pkg:" }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "integrityProtection": { "type": "object", "properties": { "signature": { "type": "string" }, "alg": { "type": "string", "enum": [ "HS256", "HS384", "HS512", "RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "PS256", "PS384", "PS512" ] }, "publicKey": { "type": "string" } }, "required": [ "signature", "alg" ], "additionalProperties": false }, "sequenceProtection": { "type": "array", "items": { "type": "object", "properties": { "sequenceName": { "type": "string" }, "position": { "type": "integer" } }, "additionalProperties": false, "required": [ "sequenceName", "position" ] } } }, "additionalProperties": false, "required": [ "authorIdentity" ] } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "name" ], "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 }
o5362
{ "additionalProperties": false, "description": "A time of day in 24 hour format, with human readable fields.", "name": "Time", "properties": { "hour": { "description": "The hour, an integer between 0-23.", "type": "number" }, "minute": { "description": "The minutes within an hour, an integer between 0-59.", "type": "number" } }, "required": [ "hour" ], "type": "object" }
o68625
{ "description": "Retrieve details on all exports (e.g. export templates) that a user has access to across all of their identities. The **id** returned for each export is the value that needs to be provided in order to run that export.", "links": [ { "description": "The response is the collection of exports belonging to any identity in the current user\u2019s WebAdMIT profile, including the List that each export is tied to.", "href": "/api/v1/exports", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "GET", "rel": "instances", "targetSchema": { "properties": { "exports": { "items": { "properties": { "format": { "description": "Format of the file.", "enum": [ "Comma-Separated Values", "Microsoft Excel", "Fixed Width Report", "Comma-Separated Values in Multiple Files" ], "example": "Comma-Separated Values", "type": "string" }, "id": { "description": "Unique identifier of this export.", "example": 29897, "type": "integer" }, "list_type": { "description": "Type of the list used for this export.", "enum": [ "all", "clipboard", "search" ], "example": "all", "type": [ "string", "null" ] }, "mime_type": { "description": "MIME type of the file.", "enum": [ "text/csv;charset=iso-8859-1", "application/vnd.ms-excel", "text/html", "text/plain", "application/zip" ], "example": "text/csv;charset=iso-8859-1", "type": "string" }, "name": { "description": "Human-readable name for this export.", "example": "Nightly Banner Export", "type": "string" } }, "required": [ "id", "name", "list_type", "format", "mime_type" ], "type": "object" }, "type": "array" }, "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/exports", "type": "string" } } }, "title": "List" } ], "properties": { "exports": { "items": { "properties": { "format": { "description": "Format of the file.", "enum": [ "Comma-Separated Values", "Microsoft Excel", "Fixed Width Report", "Comma-Separated Values in Multiple Files" ], "example": "Comma-Separated Values", "type": "string" }, "id": { "description": "Unique identifier of this export.", "example": 29897, "type": "integer" }, "list_type": { "description": "Type of the list used for this export.", "enum": [ "all", "clipboard", "search" ], "example": "all", "type": [ "string", "null" ] }, "mime_type": { "description": "MIME type of the file.", "enum": [ "text/csv;charset=iso-8859-1", "application/vnd.ms-excel", "text/html", "text/plain", "application/zip" ], "example": "text/csv;charset=iso-8859-1", "type": "string" }, "name": { "description": "Human-readable name for this export.", "example": "Nightly Banner Export", "type": "string" } }, "required": [ "id", "name", "list_type", "format", "mime_type" ], "type": "object" }, "type": "array" }, "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/exports", "title": "href", "type": "string" } }, "stability": "production", "strictProperties": true, "title": "Export/Report", "type": "object" }
o9511
{ "$license": [ "https://creativecommons.org/licenses/by-sa/3.0/legalcode", "http://www.apache.org/licenses/LICENSE-2.0" ], "description": "A geographical coordinate", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "type": "object" }
o49989
{ "id": "http://localhost:1203/default-array-obj-schema.json#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "test json schema", "type": "object", "properties": { "optObj": { "type": "object", "default": { "hello": "world" } }, "optArray": { "type": "array", "default": [ "my-default-value" ], "items": { "type": "string" } }, "optEmpty": { "type": "array", "default": [] } }, "additionalProperties": false }
o36460
{ "properties": { "cuisine": { "description": "The cuisine type to search for", "type": "string" }, "location": { "description": "The location to search for restaurants", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price range", "type": "number" }, "min_price": { "description": "The minimum price range", "type": "number" } }, "required": [ "min_price", "max_price" ], "type": "object" } }, "required": [ "cuisine", "location", "price_range" ], "type": "object" }
search_restaurants_0fe09e52