json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "additionalProperties": false, "definitions": { "PostalAddress": { "additionalProperties": false, "properties": { "addressCountry": { "type": "string" }, "addressLocality": { "type": "string" }, "addressRegion": { "type": "string" }, "postalCode": { "type": "string" }, "streetAddress": { "type": "string" } }, "type": "object" } }, "properties": { "address": { "$ref": "#/definitions/PostalAddress" }, "description": { "type": "string" }, "geo": { "anyOf": [ { "elevation": { "type": "number" }, "latitude": { "type": "number" }, "longitude": { "type": "number" } }, { "box": { "type": "string" }, "circle": { "type": "string" }, "line": { "type": "string" }, "polygon": { "type": "string" } } ], "type": "object" }, "image": { "format": "uri", "type": "string" }, "name": { "type": "string" }, "url": { "format": "uri", "type": "string" } }, "required": [ "name" ], "title": "Place", "type": "object" }
o43729
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "patternProperties": { "^[a-zA-Z0-9]([a-zA-Z0-9-]+[a-zA-Z0-9])?$": { "type": "string" } } }
o71845
{ "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 the area will be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_62c49ebb
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "properties": { "CacheClusterEnabled": { "enum": [ "true", "false" ], "type": "string" }, "CacheClusterSize": { "enum": [ "0.5", "1.6", "6.1", "13.5", "28.4", "58.2", "118", "237" ], "type": "string" }, "Description": { "type": "string" }, "RestApiId": { "pattern": "^[a-z0-9]{10}$", "type": "string" }, "StageDescription": { "type": "string" }, "StageName": { "pattern": "^\\w+$", "type": "string" }, "Variables": { "additionalProperties": false, "patternProperties": { "^\\w+$": { "pattern": "^[\\^\\-._:/?&=,\\w]+$", "type": "string" } }, "properties": {}, "type": "object" } }, "required": [ "RestApiId", "StageName" ], "type": "object" }
o21848
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The value returned by POST /{db}/_ensure_full_commit", "properties": { "instance_start_time": { "type": "string" }, "ok": { "type": "boolean" } }, "required": [ "instance_start_time", "ok" ], "title": "CouchDB db/_ensure_full_commit", "type": "object" }
o60133
{ "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": [ "string", "null" ] }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": [ "string", "null" ] }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": [ "string", "null" ] } }, "type": "object" }
kb_1159_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/gkeKeyPairConfig.json", "$$target": "gkeKeyPairConfig.json", "title": "GKE Service Account Configuration", "description": "Describes a GKE service account used to authenticate management of GKE resources. See the [documentation](https://cloud.google.com/compute/docs/access/create-enable-service-accounts-for-instances) for more information.", "properties": { "serviceAccount": { "description": "The service account id.", "type": "string" }, "serviceAccountKeyFile": { "description": "The service account key file.", "type": "string" } }, "required": [ "serviceAccount", "serviceAccountKeyFile" ], "additionalProperties": false, "type": "object" }
o90386
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "height" ], "type": "object" }, "shape": { "description": "The shape for which area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_961cd3d6
{ "$schema": "http://json-schema.org/draft-04/schema#", "required": [ "config", "inputs" ], "type": "object", "properties": { "inputs": { "required": [ "dcm2niix_input" ], "type": "object", "properties": { "dcm2niix_input": { "type": "object", "properties": { "type": { "enum": [ "dicom", "parrec" ] } } } } }, "config": { "required": [ "lossless_scaling", "single_file_mode", "merge2d", "philips_scaling", "anonymize_bids", "bids_sidecar", "text_notes_private", "crop", "filename", "compress_nifti", "convert_only_series", "decompress_dicoms", "vol3D", "ignore_errors", "ignore_derived", "coil_combine" ], "type": "object", "properties": { "lossless_scaling": { "default": "n", "type": "string", "id": "-l" }, "ignore_errors": { "default": false, "type": "boolean" }, "compress_nifti": { "default": "y", "type": "string", "id": "-z" }, "merge2d": { "default": "n", "type": "string", "id": "-m" }, "philips_scaling": { "default": "y", "type": "string", "id": "-p" }, "anonymize_bids": { "default": "n", "type": "string", "id": "-ba" }, "bids_sidecar": { "default": "n", "type": "string", "id": "-b" }, "text_notes_private": { "default": "n", "type": "string", "id": "-t" }, "crop": { "default": "n", "type": "string", "id": "-x" }, "filename": { "default": "%f", "type": "string", "id": "-f" }, "single_file_mode": { "default": "n", "type": "string", "id": "-s" }, "decompress_dicoms": { "default": false, "type": "boolean" }, "convert_only_series": { "default": "all", "type": "string", "id": "-n" }, "vol3D": { "default": false, "type": "boolean" }, "ignore_derived": { "default": "n", "type": "string", "id": "-i" }, "coil_combine": { "default": false, "type": "boolean" } } } }, "title": "Invocation manifest for DCM2NIIX: dcm2nii DICOM to NIfTI converter" }
o41416
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://project-open-data.github.io/schema/1_0_final/single_entry.json#", "title": "CKAN Resource Schema", "description": "The metadata format for all federal open data. Validates a single JSON object entry (as opposed to entire Data.json catalog).", "type": "object", "properties": { "id": { "title": "UUID", "type": "string" }, "revision_id": { "title": "Revision ID", "type": "string" }, "url": { "title": "URL", "type": "string" }, "description": { "title": "Description", "type": "string" }, "format": { "title": "Format", "type": "string" }, "hash": { "title": "hash", "type": "string" }, "state": { "title": "state", "type": "string" }, "Position": { "title": "position", "type": "string" }, "revision_timestamp": { "title": "Revision Timestamp", "type": "string" }, "name": { "title": "Name", "type": "string" }, "resource_type": { "title": "Resource Type", "type": "string" }, "url_type": { "title": "URL Type", "type": "string" }, "mimetype": { "title": "MIME Type", "type": "string" }, "webstore_url": { "title": "Web Store URL", "type": "string" }, "size": { "title": "Size", "type": "string" }, "created": { "title": "Created", "type": "string" }, "resource_group_id": { "title": "Resource Group UUID", "type": "string" }, "cache_last_updated": { "title": "Cache Last Updated", "type": "string" }, "webstore_last_updated": { "title": "Web Store Last Updated", "type": "string" }, "datastore_active": { "title": "Datastore Active", "type": "string" }, "last_modified": { "title": "Last Modified", "type": "string" } } }
o83155
{ "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "data": { "description": "List of identifiers (or URIs) of the references describing the data.", "items": { "type": "string" }, "type": "array" }, "date": { "description": "The time at which the interaction was sampled", "type": "string" }, "description": { "description": "A description of the interaction", "type": "string" }, "environment": { "description": "List of identifiers (or URIs) of the environments associated to the interaction.", "items": { "type": "string" }, "type": "array" }, "id": { "description": "Integer data. Ex: 2673", "type": "integer" }, "item_from": { "description": "Identifier (or URI) of the item establishing the interaction.", "type": "string" }, "item_to": { "description": "Identifier (or URI) of the item receiving the interaction.", "type": "string" }, "latitude": { "description": "Latitude", "type": "string" }, "link_type": { "description": "The type of interaction", "enum": [ "predation", "herbivory", "ectoparasitism", "endoparasitism", "intra-cellular parasitism", "parasitoidism", "mycoheterotrophy", "antixenosis", "teletoxy", "amensalism", "antibiosis", "allelopathy", "competition", "facilitation", "refuge creation", "inquilinism", "phoresis", "epibiosis", "pollination", "mutualistic symbiosis", "zoochory", "mutual protection" ], "type": "string" }, "longitude": { "description": "Longitude", "type": "string" }, "obs_type": { "description": "How the interaction was observed", "enum": [ "unspecified", "observation", "litterature", "absence", "inferred" ], "type": "string" }, "owner": { "description": "Who uploaded the data. URI of the data owner.", "type": "string" }, "papers": { "description": "List of identifiers (or URIs) of the references to the papers associated with the dataset.", "items": { "type": "string" }, "type": "array" }, "public": { "description": "Whether the interaction can be viewed by all users", "type": "boolean" }, "resource_uri": { "description": "Unicode string data. Ex: \"Hello World\"", "type": "string" }, "sex_from": { "description": "The sex of the establishing, to be selected in the list of allowed values", "enum": [ "all", "male", "female", "unknown" ], "type": "string" }, "sex_to": { "description": "The sex of the receiving entity, to be selected in the list of allowed values", "enum": [ "all", "male", "female", "unknown" ], "type": "string" }, "stage_from": { "description": "The stage of the establishing entity, to be selected in the list of allowed values", "enum": [ "seed", "juvenile", "adult", "dead", "larva", "all" ], "type": "string" }, "stage_to": { "description": "The stage of the receiving entity, to be selected in the list of allowed values", "enum": [ "seed", "juvenile", "adult", "dead", "larva", "all" ], "type": "string" }, "strength_f": { "description": "The strength of the interaction for the item ESTABLISHING the interaction", "type": "number" }, "strength_t": { "description": "The strength of the interaction for the item RECEVING the interaction", "type": "number" }, "taxa_from": { "description": "Identifier (or URI) of the taxa establishing the interaction.", "type": "string" }, "taxa_to": { "description": "Identifier (or URI) of the taxa receiving the interaction.", "type": "string" }, "units_f": { "description": "Units in which the interaction strength is measured", "type": "string" }, "units_t": { "description": "Units in which the interaction strength is measured", "type": "string" } }, "required": [ "public", "link_type", "stage_from", "sex_to", "taxa_to", "stage_to", "obs_type", "taxa_from", "sex_from" ], "title": "Schema for interaction objects", "type": "object" }
o58601
{ "title": ".condarc", "description": "The conda configuration file; https://conda.io/docs/user-guide/configuration/use-condarc.html", "id": "https://raw.githubusercontent.com/Microsoft/vscode-python/master/schemas/condarc.json", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "channel": { "type": "string" }, "feature": { "type": "string" }, "package": { "type": "string" }, "path": { "type": "string" } }, "properties": { "channels": { "type": "array", "items": { "$ref": "#/definitions/channel" } }, "allow_other_channels": { "type": "boolean" }, "default_channels": { "type": "array", "items": { "$ref": "#/definitions/channel" } }, "auto_update_conda": { "type": "boolean" }, "always_yes": { "type": "boolean" }, "show_channel_urls": { "type": "boolean" }, "changeps1": { "type": "boolean" }, "add_pip_as_python_dependency": { "type": "boolean" }, "use_pip": { "type": "boolean" }, "proxy_servers": { "type": "object", "additionalProperties": { "type": "string", "format": "hostname" } }, "ssl_verify": { "type": "boolean" }, "offline": { "type": "boolean" }, "allow_softlinks": { "type": "boolean" }, "channel_alias": { "type": "string", "format": "uri" }, "create_default_packages": { "type": "array", "items": { "$ref": "#/definitions/package" } }, "track_features": { "type": "array", "items": { "$ref": "#/definitions/feature" } }, "update_dependencies": { "type": "boolean" }, "disallow": { "type": "array", "items": { "$ref": "#/definitions/package" } }, "add_anaconda_token": { "type": "boolean" }, "envs_dirs": { "type": "array", "items": { "$ref": "#/definitions/path" } }, "anaconda_upload": { "type": "boolean" }, "conda-build": { "type": "object", "properties": { "root-dir": { "$ref": "#/definitions/path" }, "quiet": { "type": "boolean" }, "filename_hashing": { "type": "boolean" }, "no_verify": { "type": "boolean" }, "set_build_id": { "type": "boolean" }, "skip_existing": { "type": "boolean" }, "include_recipe": { "type": "boolean" }, "activate": { "type": "boolean" }, "pypirc": { "$ref": "#/definitions/path" }, "pypi_repository": { "type": "string" } } } } }
o53702
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "additionalTerms": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "budgetRange": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "contractLength": { "maxLength": 100, "minLength": 0, "type": "string" }, "culturalFitCriteria": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "culturalWeighting": { "maximum": 20, "minimum": 5, "type": "integer" }, "earlyMarketEngagement": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,199}\\S+$)", "type": "string" }, "essentialRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 1, "type": "array" }, "evaluationType": { "items": { "enum": [ "Reference", "Interview", "Scenario or test", "Presentation" ] }, "maxItems": 4, "minItems": 0, "type": "array", "_uniqueItems": true }, "existingTeam": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "location": { "enum": [ "Scotland", "North East England", "North West England", "Yorkshire and the Humber", "East Midlands", "West Midlands", "East of England", "Wales", "London", "South East England", "South West England", "Northern Ireland", "Offsite" ] }, "niceToHaveRequirements": { "items": { "maxLength": 300, "pattern": "^(?:\\S+\\s+){0,29}\\S+$", "type": "string" }, "maxItems": 20, "minItems": 0, "type": "array" }, "numberOfSuppliers": { "maximum": 15, "minimum": 3, "type": "integer" }, "organisation": { "maxLength": 100, "minLength": 1, "type": "string" }, "priceWeighting": { "maximum": 85, "minimum": 20, "type": "integer" }, "questionAndAnswerSessionDetails": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,99}\\S+$)", "type": "string" }, "requirementsLength": { "enum": [ "1 week", "2 weeks" ] }, "securityClearance": { "minLength": 0, "pattern": "^$|(^(?:\\S+\\s+){0,49}\\S+$)", "type": "string" }, "specialistRole": { "enum": [ "agileCoach", "businessAnalyst", "communicationsManager", "contentDesigner", "securityConsultant", "deliveryManager", "designer", "developer", "performanceAnalyst", "portfolioManager", "productManager", "programmeManager", "qualityAssurance", "serviceManager", "technicalArchitect", "userResearcher", "webOperations" ] }, "specialistWork": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "startDate": { "maxLength": 100, "minLength": 1, "type": "string" }, "summary": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,49}\\S+$", "type": "string" }, "technicalWeighting": { "maximum": 75, "minimum": 10, "type": "integer" }, "title": { "maxLength": 100, "minLength": 1, "type": "string" }, "workingArrangements": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" }, "workplaceAddress": { "minLength": 1, "pattern": "^(?:\\S+\\s+){0,99}\\S+$", "type": "string" } }, "required": [ "culturalFitCriteria", "culturalWeighting", "essentialRequirements", "existingTeam", "location", "numberOfSuppliers", "organisation", "priceWeighting", "requirementsLength", "specialistRole", "specialistWork", "startDate", "summary", "technicalWeighting", "title", "workingArrangements", "workplaceAddress" ], "title": "Digital Outcomes and Specialists Digital specialists Brief Schema", "type": "object" }
o21076
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://www.qiskit.org/schemas/result_schema.json", "title": "qobj results", "description": "The results of executing a qobj", "version": "1.0.0", "definitions": { "complex": { "description": "JSON representation of a complex number", "type": "array", "minItems": 2, "maxItems": 2, "items": { "type": "number" } }, "complex_array": { "description": "JSON representation of a complex vector", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/complex" } }, "complex_matrix": { "description": "JSON representation of a complex matrix", "type": "array", "minItems": 1, "items": { "$ref": "#/definitions/complex_array" } }, "memory": { "type": "array", "minItems": 1, "description": "Output of the memory" }, "resultobj": { "type": "object", "required": [ "success", "shots", "data" ], "properties": { "shots": { "oneOf": [ { "type": "array", "minItems": 2, "maxItems": 2, "items": { "type": "integer", "minimum": 1 } }, { "type": "integer" } ], "description": "The starting and ending shot for this data. If there is only one shot to the experiment this is [1,1]" }, "success": { "type": "boolean", "description": "If true, we can trust results for this experiment." }, "status": { "type": "string", "description": "Human-readable description of status of this experiment" }, "seed": { "type": "integer", "description": "Experiment-level random seed" }, "meas_level": { "type": "integer", "enum": [ 0, 1, 2 ], "description": "Measurement level of experiment" }, "meas_return": { "type": "string", "enum": [ "single", "avg" ], "description": "Is the data averaged or from each shot" }, "header": { "type": "object", "properties": {}, "description": "Header passed through from the qobj with experiment metadata" }, "data": { "type": "object", "properties": { "counts": { "type": "object", "description": "Histogram of the memory over the indicated shots", "patternProperties": { "^0x([0-9A-Fa-f])+$": { "type": "integer", "minimum": 0 } }, "additionalProperties": false }, "snapshots": { "description": "collection of all snapshots of simulator state", "type": "object" }, "memory": { "$ref": "#/definitions/memory" }, "statevector": { "$ref": "#/definitions/complex_array" }, "unitary": { "$ref": "#/definitions/complex_matrix" } } } } } }, "type": "object", "required": [ "backend_name", "backend_version", "qobj_id", "job_id", "success", "results" ], "properties": { "backend_name": { "type": "string", "description": "Backend name" }, "backend_version": { "type": "string", "pattern": "[0-9]+.[0-9]+.[0-9]+$", "description": "Backend version in the form X.X.X" }, "qobj_id": { "type": "string", "description": "User generated Qobj id" }, "job_id": { "type": "string", "description": "Unique execution id from the backend" }, "date": { "type": "string", "format": "date-time", "description": "Date/time of job execution" }, "success": { "type": "boolean", "description": "True if complete input qobj executed correctly. (Implies each experiment success)" }, "status": { "type": "string", "description": "Human-readable status of complete qobj execution" }, "header": { "type": "object", "properties": {}, "description": "Header passed through from the qobj with job metadata" }, "results": { "type": "array", "description": "Corresponding results for array of experiments of the input qobj", "items": { "$ref": "#/definitions/resultobj" } } } }
o13124
{ "properties": { "as_scan_location_sql": { "enum": [ "FORMFIELD", "HEADER", "COOKIE" ], "type": "string" }, "as_scan_location_xss": { "enum": [ "FORMFIELD", "HEADER", "COOKIE" ], "type": "string" }, "as_value_expr_sql": { "type": "string" }, "as_value_expr_xss": { "type": "string" }, "as_value_type_sql": { "enum": [ "Keyword", "SpecialString", "Wildchar" ], "type": "string" }, "as_value_type_xss": { "enum": [ "Tag", "Attribute", "Pattern" ], "type": "string" }, "contenttype": { "type": "string" }, "cookieconsistency": { "type": "string" }, "creditcardnumber": { "type": "string" }, "creditcardnumberurl": { "type": "string" }, "crosssitescripting": { "type": "string" }, "csrfformoriginurl": { "type": "string" }, "csrftag": { "type": "string" }, "data": { "readonly": true, "type": "string" }, "fieldconsistency": { "type": "string" }, "fieldformat": { "type": "string" }, "fieldformatcharmappcre": { "readonly": true, "type": "string" }, "fieldformatmaxlength": { "readonly": true, "type": "integer" }, "fieldformatminlength": { "readonly": true, "type": "integer" }, "fieldtype": { "readonly": true, "type": "string" }, "formactionurl_ff": { "type": "string" }, "formactionurl_ffc": { "type": "string" }, "formactionurl_sql": { "type": "string" }, "formactionurl_xss": { "type": "string" }, "hits": { "readonly": true, "type": "integer" }, "name": { "readonly": true, "type": "string" }, "profilename": { "type": "string" }, "securitycheck": { "enum": [ "startURL", "cookieConsistency", "fieldConsistency", "crossSiteScripting", "SQLInjection", "fieldFormat", "CSRFtag", "XMLDoSCheck", "XMLWSICheck", "XMLAttachmentCheck", "TotalXMLRequests", "creditCardNumber", "ContentType" ], "type": "string" }, "sqlinjection": { "type": "string" }, "starturl": { "type": "string" }, "target": { "type": "string" }, "totalxmlrequests": { "type": "boolean" }, "url": { "readonly": true, "type": "string" }, "value": { "readonly": true, "type": "string" }, "value_type": { "readonly": true, "type": "string" }, "xmlattachmentcheck": { "type": "string" }, "xmldoscheck": { "type": "string" }, "xmlwsicheck": { "type": "string" } }, "title": "appfwlearningdata", "type": "object" }
o29989
{ "additionalProperties": false, "description": "Context schema for OSS terraform modules, VM instances and application events", "properties": { "appGeneratedId": { "_format": "uuid", "description": "Automatically generated UUID on every application restart", "type": [ "string", "null" ] }, "applicationName": { "description": "The name of the application", "maxLength": 256, "type": "string" }, "applicationVersion": { "description": "The version of the application e.g. 1.0.0", "maxLength": 256, "type": "string" }, "autoGeneratedId": { "description": "ID automatically generated upon running a modules deployment script. Intended to identify each independent module, and the infrastructure it controls", "maxLength": 256, "type": [ "string", "null" ] }, "cloud": { "description": "The cloud AWS or GCP, none for on-premise", "maxLength": 256, "type": [ "string", "null" ] }, "instanceId": { "description": "A unique identifier for the VM instance. Unique for each instance of the app running within a module", "maxLength": 256, "type": [ "string", "null" ] }, "moduleName": { "description": "The name of the terraform module", "maxLength": 256, "type": [ "string", "null" ] }, "moduleVersion": { "description": "The version of the terraform module e.g. 1.0.0", "maxLength": 32, "type": [ "string", "null" ] }, "region": { "description": "The region the services are running in", "maxLength": 256, "type": [ "string", "null" ] }, "userProvidedId": { "description": "Optional ID provided by user as an input to each component. Intended to tie events together across modules, infrastructure and apps when used consistently", "maxLength": 256, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "oss_context", "vendor": "com.snowplowanalytics.oss", "version": "1-0-1" }, "type": "object" }
sp_244_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "O3D3xx device configuration", "type": "object", "properties": { "Name": { "type": "string", "maxLength": 64, "default": "New sensor" }, "Description": { "type": "string", "maxLength": 500 }, "ActiveApplication": { "type": "integer", "minimum": 0, "maximum": 32, "default": 1 }, "PcicTcpPort": { "type": "integer", "minimum": 1024, "maximum": 65535, "not": { "enum": [ 6379, 6380, 43215 ] }, "default": 50010 }, "PcicProtocolVersion": { "type": "integer", "minimum": 1, "maximum": 4, "default": 3 }, "IOLogicType": { "type": "integer", "minimum": 0, "maximum": 1, "default": 1 }, "IODebouncing": { "type": "boolean", "default": true }, "IOExternApplicationSwitch": { "type": "integer", "minimum": 0, "maximum": 4, "default": 0 }, "EvaluationFinishedMinHoldTime": { "type": "integer", "minimum": 0, "maximum": 100, "default": 10 }, "SessionTimeout": { "type": "integer", "minimum": 5, "maximum": 300, "default": 30 }, "ServiceReportPassedBuffer": { "type": "integer", "minimum": 1, "maximum": 15, "default": 15 }, "ServiceReportFailedBuffer": { "type": "integer", "minimum": 1, "maximum": 15, "default": 15 }, "SaveRestoreStatsOnApplSwitch": { "type": "boolean", "default": true }, "ExtrinsicCalibTransX": { "type": "number", "default": 0 }, "ExtrinsicCalibTransY": { "type": "number", "default": 0 }, "ExtrinsicCalibTransZ": { "type": "number", "default": 0 }, "ExtrinsicCalibRotX": { "type": "number", "default": 0 }, "ExtrinsicCalibRotY": { "type": "number", "default": 0 }, "ExtrinsicCalibRotZ": { "type": "number", "default": 0 }, "MaxLEDDutyCycle": { "type": "number", "minimum": 0, "maximum": 1, "default": 0.5, "attributes": [ "private", "noexport" ] }, "IPAddressConfig": { "type": "integer", "minValue": 0, "maxValue": 4, "attributes": [ "readonly" ] }, "PasswordActivated": { "type": "boolean", "attributes": [ "readonly" ] }, "OperatingMode": { "type": "integer", "minValue": 0, "maxValue": 1, "attributes": [ "readonly" ] }, "DeviceType": { "type": "string", "attributes": [ "readonly" ] }, "ArticleNumber": { "type": "string", "maxLength": 6, "attributes": [ "readonly" ] }, "ArticleStatus": { "type": "string", "maxLength": 2, "attributes": [ "readonly" ] }, "UpTime": { "type": "number", "attributes": [ "readonly" ] }, "ImageTimestampReference": { "type": "integer", "attributes": [ "readonly" ] }, "TemperatureFront1": { "type": "number", "attributes": [ "readonly" ] }, "TemperatureFront2": { "type": "number", "attributes": [ "readonly" ] }, "TemperatureIMX6": { "type": "number", "attributes": [ "readonly" ] }, "TemperatureIllu": { "type": "number", "attributes": [ "readonly" ] }, "PasswordHash": { "type": "string", "default": "", "attributes": [ "private" ] }, "PNIODeviceName": { "type": "string", "maxLength": 127, "default": "" }, "EthernetFieldBus": { "type": "integer", "minimum": 0, "maximum": 2, "default": 1 }, "EthernetFieldBusEndianness": { "type": "integer", "minimum": 0, "maximum": 1, "default": 0 } }, "required": [ "Name", "Description", "ActiveApplication", "PcicTcpPort", "PcicProtocolVersion", "IOLogicType", "IODebouncing", "IOExternApplicationSwitch", "SessionTimeout", "ExtrinsicCalibTransX", "ExtrinsicCalibTransY", "ExtrinsicCalibTransZ", "ExtrinsicCalibRotX", "ExtrinsicCalibRotY", "ExtrinsicCalibRotZ", "DeviceType", "ArticleNumber", "ArticleStatus", "PasswordHash" ] }
o57622
{ "properties": { "customer_details": { "properties": { "address": { "description": "The address of the customer", "type": "string" }, "email": { "description": "The email address of the customer", "type": "string" }, "name": { "description": "The name of the customer", "type": "string" } }, "required": [ "name", "email", "address" ], "type": "object" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "items", "customer_details" ], "type": "object" }
generate_invoice_4b399986
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "address": { "type": "object", "properties": { "streetAddress": { "type": "string" }, "city": { "type": "string" } }, "required": [ "streetAddress", "city" ] }, "phoneNumber": { "type": "array", "items": { "type": "object", "properties": { "location": { "type": "string" }, "code": { "type": "integer" } }, "required": [ "location", "code" ] } } }, "required": [ "address", "phoneNumber" ] }
o37624
{ "additionalProperties": true, "definitions": {}, "description": "order_returned_v1", "links": [ { "description": "order_returned_v1", "href": "/order_returned_v1", "method": "post", "rel": "instances", "schema": { "allOf": [ { "properties": { "action": { "description": "Action Name name", "example": "catalog_get_config", "type": "string" }, "channel_info": { "properties": { "id": { "description": "channel id", "example": 21, "type": "integer" } }, "type": "object" }, "client_id": { "description": "RetailOPS client id", "example": 497, "type": "integer" }, "integration_auth_token": { "description": "Randomly generated authorization token, for authenticating genuine RetailOps- originated requests.", "example": "2KuxqV9rsAtAM78i47CITMvtnflUapNmgGJAvWiHqgUrk1xkeDNWlM3EsrmJEtmV", "type": "string" }, "version": { "description": "Action Version", "example": 1, "type": "integer" } }, "required": [ "action", "version", "client_id", "channel_info" ], "type": "object" }, { "properties": { "order": { "properties": { "channel_order_refnum": { "description": "channel reference number for order", "type": "string" }, "grand_total": { "description": "RetailOps current order grand total", "type": "number" }, "order_items": { "description": "List of order line items", "items": { "properties": { "apportioned_ship_amt": { "description": "Apportioned ship amount", "type": "number" }, "channel_item_refnum": { "description": "channel reference number for order", "type": "string" }, "direct_ship_amt": { "description": "Direct ship amount", "type": "number" }, "estimated_cost": { "description": "Estimated item cost", "type": "number" }, "estimated_extended_cost": { "description": "Estimated extended cost of item", "type": "number" }, "estimated_ship_date": { "description": "estimated ship date of item", "example": "2016-04-08T21:13:11Z", "type": "string" }, "estimated_unit_cost": { "description": "Estimated unit cost of item", "type": "number" }, "order_item_id": { "description": "Retail Ops order item ID", "type": "integer" }, "quantity": { "description": "Order quantity of item", "type": "integer" }, "removed": { "description": "boolean indicator of whether the item was removed from the order.", "enum": [ true, false ], "type": "string" }, "sku": { "description": "SKU specified by the order item", "type": "string" }, "unit_price": { "description": "base unit price of item", "type": "number" } }, "type": "object" }, "type": "array" }, "retailops_order_id": { "description": "RetailOps Order ID", "type": "integer" }, "shipments": { "description": "List of all fulfilled shipments for this order. Each RetailOps shipment corresponds to one portion of the order routing plan, usually one per each facility or vendor. Each fulfilled shipment will contain one or more packages", "items": { "properties": { "packages": { "items": { "description": "a package included in shipment", "properties": { "carrier_class_name": { "description": "Ship Carrier's Class Name", "example": "Ground", "type": "string" }, "carrier_name": { "description": "Ship Carrier Name", "example": "UPS", "type": "string" }, "channel_ship_code": { "description": "Code which has been configured for this channel to represent the above carrier/class. EG: 'UPS Ground' -> 'UPSGRND' or 'U,GRD'", "type": "string" }, "date_shipped": { "description": "Date the package was shipped", "example": "2016-04-08T21:13:11Z", "type": "string" }, "package_items": { "items": { "properties": { "channel_item_refnum": { "description": "Channel reference number for this item", "type": "string" }, "quantity": { "description": "Quantity of the referenced items which was included in this package", "type": "integer" }, "retailops_order_item_id": { "description": "RetailOps Order Item ID", "type": "integer" }, "retailops_shipment_item_id": { "description": "RetailOps Shipment Item ID", "type": "integer" }, "sku": { "description": "SKU Number of the item", "type": "string" } }, "type": "object" }, "type": "array" }, "retailops_package_id": { "description": "RetailOps Package ID", "type": "integer" }, "tracking_number": { "description": "Tracking number", "example": "ZX29827782929", "type": "string" }, "weight_kg": { "description": "Weight in Kilograms", "type": "number" } }, "type": "object" }, "type": "array" }, "retailops_shipment_id": { "description": "RetailOps Shipment ID", "type": "integer" } }, "type": "object" }, "type": "array" }, "unshipped_items": { "description": "List of items which were not shipped as of the time of order completion. Presumably these items should be canceled in the channel", "items": { "properties": { "channel_item_refnum": { "description": "channel reference number for order", "type": "string" }, "effective_extended_price": { "description": "extended price associated with the order item (after discounts), specified in the counterparty currency", "type": "number" }, "effective_unit_price": { "description": "effective unit price associated with the order item (after discounts), specified in the counterparty currency", "type": "number" }, "ordered_quantity": { "description": "quantity of the order item which was ordered", "type": "integer" }, "sku": { "description": "SKU specified by the order item", "type": "string" }, "unshipped_quantity": { "description": "quantity of the order item which has not been shipped", "type": "integer" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "return": { "properties": { "discount_amt": { "description": "amount of applied discount", "example": 0, "type": "number" }, "items": { "items": { "description": "credited item ref", "properties": { "channel_item_refnum": { "description": "ref number of returned item being credited", "example": "return_item 90", "type": "string" }, "credit_amt": { "description": "", "example": 30, "type": "number" }, "giftwrap_amt": { "description": "item giftwrap cost", "example": 0, "type": "number" }, "giftwrap_tax_amt": { "description": "", "example": 0, "type": "number" }, "item_shipping_tax_amt": { "description": "", "example": 30, "type": "number" }, "product_amt": { "description": "", "example": 30, "type": "number" }, "quantity": { "description": "quantity", "example": 1, "type": "integer" }, "reason": { "description": "return reason", "example": "CustomerReturn", "type": "string" }, "recycling_amt": { "description": "", "example": 0, "type": "number" }, "restock_fee_amt": { "description": "item restock fee", "example": 0, "type": "number" }, "retailops_item_id": { "description": "order item id", "example": 7395, "type": "integer" }, "shipping_amt": { "description": "item shipped amount", "example": 0, "type": "number" }, "sku": { "description": "sku id", "example": "132", "type": "string" }, "subtotal_amt": { "description": "", "example": 30, "type": "number" }, "tax_amt": { "description": "", "example": 0, "type": "number" } }, "type": "object" }, "type": "array" }, "product_amt": { "description": "", "example": 30, "type": "number" }, "refund_action": { "description": "action name of return", "example": "refund", "type": "string" }, "refund_amt": { "description": "amount refunded", "example": 30, "type": "number" }, "retailops_return_id": { "description": "RetailOps Order return id", "example": 87, "type": "integer" }, "retailops_rma_id": { "description": "RetailOps RMA id", "example": "null", "type": "string" }, "shipping_amt": { "description": "amount shipped", "example": 0, "type": "integer" }, "subtotal_amt": { "description": "", "example": 30, "type": "number" }, "tax_amt": { "description": "tax amount on returned items", "example": 0, "type": "number" } }, "type": "object" } }, "type": "object" } ] }, "targetSchema": { "properties": { "events": { "items": { "description": "event returned in action response", "properties": { "associations": { "description": "", "items": { "properties": { "identifier": { "description": "identify value corresponding to the type", "example": "S1234", "type": "string" }, "identifier_type": { "description": "Type of identifier being provided", "enum": [ "order_id", "order_refnum", "orderitem_id", "orderitem_refnum", "shipment_id", "shipmentitem_id", "product_id", "sku_number" ], "example": "sku_number", "type": "string" } }, "type": "object" }, "type": [ "array", "null" ] }, "code": { "description": "error/warning code", "example": "ERR1234", "type": "string" }, "diagnostic_data": { "description": "", "type": "string" }, "event_type": { "description": "event type", "enum": [ "error", "warning", "info" ], "example": "error", "type": "string" }, "message": { "description": "descriptive error/warning message", "example": "Example error message", "type": "string" } }, "type": "object" }, "type": [ "array", "null" ] }, "return": { "properties": { "channel_store_credit_amount": { "description": "store credit issued by channel (if any)", "example": 20, "type": "number" } }, "type": "object" } }, "type": "object" }, "title": "/order_returned_v1" } ], "properties": {}, "stability": "draft", "title": "/order_returned_v1", "type": "object" }
o45026
{ "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": [ "string", "null" ] }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": [ "string", "null" ] }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": [ "string", "null" ] }, "port": { "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "namespace", "name" ], "type": "object" }
kb_983_Normalized
{ "$id": "https://hydra.ugent.be/schema/special-events", "type": "object", "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "special-events": { "$id": "/properties/special-events", "type": "array", "items": { "$id": "/properties/special-events/items", "type": "object", "required": [ "name", "link", "simple-text", "image", "html", "priority", "start", "end", "id", "development" ], "properties": { "name": { "$id": "/properties/special-events/items/properties/name", "type": "string", "title": "The title of the event.", "examples": [ "Rectorverkiezingen" ] }, "link": { "$id": "/properties/special-events/items/properties/link", "type": "string", "title": "A link to a website about the event.", "examples": [ "https://www.ugentkiest.be" ] }, "simple-text": { "$id": "/properties/special-events/items/properties/simple-text", "type": "string", "title": "A short plain text description of the event.", "examples": [ "Stemmen voor rectorverkiezingen kan nog tot dinsdag 8u." ] }, "image": { "$id": "/properties/special-events/items/properties/image", "type": "string", "title": "Link to an image for the event" }, "html": { "$id": "/properties/special-events/items/properties/html", "type": "string", "title": "Larger text, using HTML, describing the event. Can be empty." }, "priority": { "$id": "/properties/special-events/items/properties/priority", "type": "integer", "title": "The priority of the event. 1000 is the highest priority, 0 the lowest.", "examples": [ 990 ] }, "start": { "$id": "/properties/special-events/items/properties/start", "type": "string", "title": "The start date when the event should be shown.", "format": "date-time", "examples": [ "2017-09-18T08:00:00+02:00" ] }, "end": { "$id": "/properties/special-events/items/properties/end", "type": "string", "title": "The end date when the event should be shown.", "format": "date-time", "examples": [ "2017-09-19T08:00:00+02:00" ] }, "id": { "$id": "/properties/special-events/items/properties/id", "type": "integer", "title": "The unique ID of the event.", "examples": [ 1 ] }, "development": { "$id": "/properties/special-events/items/properties/development", "type": "boolean", "title": "Set to true if the event is used in development. For example, on Android, these events are always shown. Should normally be false.", "examples": [ false ] }, "in-app": { "$id": "/properties/special-events/items/properties/in-app", "type": "string", "title": "Unique identifier for the type of event. Some apps may do special things with these. For example, the Android app uses this to identify the SKO event and opens the native app portion instead of going to the link.", "examples": [ "be.ugent.zeus.hydra.special.sko" ] } } } } } }
o17990
{ "$schema": "http://json-schema.org/draft-04/schema", "allOf": [ { "properties": { "date": { "_format": "date-time", "description": "When the operation should be considered performed", "type": "string" }, "id": { "description": "The id of the item being operated", "type": "string" }, "note": { "description": "The new or updated note", "type": "string" }, "operation": { "description": "The identifier of the operation being performed", "enum": [ "update" ], "type": "string" }, "organization_id": { "description": "The id of the organization", "type": "string" }, "type": { "description": "Identifies this as an ANS operation", "enum": [ "planning-note-operation" ], "type": "string" }, "version": { "description": "The version of ANS this item is written in", "type": "string" } }, "required": [ "type", "operation", "id", "organization_id", "note" ] } ], "description": "An operation to update the planning note associated with a story.", "type": "object" }
wp_10_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "type": { "type": "string", "enum": [ "virtualButton" ] }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string" } } }, "meta": { "type": "object" }, "config": { "type": "object", "additionalProperties": false } }, "required": [ "type" ], "additionalProperties": false }
o6263
{ "definitions": { "moreThanOneInteger": { "$id": "moreThanOneInteger", "minimum": 1, "type": "integer" }, "nameOrNames": { "$id": "nameOrNames", "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array", "_uniqueItems": true } ] }, "namedObject": { "$id": "namedObject", "properties": { "name": { "type": "string" } } } }, "properties": { "moreThanOneInteger": { "$ref": "#/definitions/moreThanOneInteger" }, "nameOrNames": { "$ref": "#/definitions/nameOrNames" }, "namedObject": { "$ref": "#/definitions/namedObject" } }, "required": [ "moreThanOneInteger", "nameOrNames", "namedObject" ] }
o2232
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_f2a35cc2
{ "properties": { "city": { "type": "string" }, "closetime": { "type": "string" }, "days": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" }, "name": { "type": "string" }, "opentime": { "type": "string" }, "sitecoordinator": { "type": "integer" }, "sitestatus": { "type": "string" }, "slug": { "type": "string" }, "state": { "type": "string" }, "street": { "type": "string" }, "zip": { "type": "string" } }, "title": "ValidSite", "type": "object" }
o33193
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "description": "Models a topic used in describing a piece of content.", "properties": { "_id": { "description": "The unique identifier for this topic.", "type": "string" }, "name": { "description": "The general name for this topic.", "type": "string" }, "score": { "description": "An arbitrary weighting to give the topic", "type": "number" }, "uid": { "description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "score", "uid" ], "title": "Topic", "type": "object" }
wp_120_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://judkins.house/apis/k2/v1/dockerContainerConfig.json", "$$target": "dockerContainerConfig.json", "title": "Docker Runtime Configuration", "description": "Describes the configuration of a Docker runtime.", "properties": { "name": { "description": "Name of the docker configuration (e.g. prodDockerConfig, betaDockerConfig, etc.).", "type": "string", "default": "defaultDockerConfig" }, "kind": { "description": "Type of configuration.", "enum": [ "container" ], "type": "string" }, "runtime": { "description": "Type of container runtime.", "enum": [ "docker" ], "type": "string", "default": "docker" }, "type": { "description": "Type of docker installation.", "enum": [ "distro", "tgz" ], "type": "string", "default": "distro" }, "uri": { "description": "If type is tgz, then uri identifies how to obtain a tgz file containing the docker binaries.", "type": "string" } }, "required": [ "name", "runtime", "type" ], "additionalProperties": false, "type": "object" }
o90383
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "targets": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "$ref": "#/definitions/target" }, "additionalItems": true } }, "required": [ "targets" ], "additionalProperties": false, "definitions": { "target": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "aws" ] }, "options": { "$ref": "#/definitions/optionsAws" }, "strategy": { "oneOf": [ { "$ref": "#/definitions/strategyString" }, { "$ref": "#/definitions/strategyArray" } ] } }, "required": [ "type", "options", "strategy" ], "additionalProperties": false }, "strategyString": { "type": "string", "enum": [ "clone", "gzip", "gzip-suffix" ] }, "strategyArray": { "type": "array", "items": { "$ref": "#/definitions/strategyString" }, "_uniqueItems": true, "minItems": 1 }, "optionsAws": { "type": "object", "properties": { "accessKeyId": { "type": "string" }, "secretAccessKey": { "type": "string" }, "region": { "type": "string" }, "sslEnabled": { "type": "boolean" }, "Bucket": { "type": "string" } }, "required": [ "accessKeyId", "secretAccessKey", "region", "Bucket" ], "additionalProperties": true } } }
o51260
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "Additional information to be displayed near the content from the editor.", "title": "Editor_Note", "type": "string" }
wp_60_Normalized
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The shape type (e.g., circle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_a536283a
{ "properties": { "appRoot": { "description": "The root of the application.", "format": "path", "type": "string", "visible": false }, "name": { "description": "The name of the interface.", "type": "string" }, "path": { "default": "app", "description": "The path to create the interface.", "format": "path", "type": "string", "visible": false }, "prefix": { "default": "", "description": "Specifies the prefix to use.", "type": "string" }, "sourceDir": { "default": "src", "description": "The path of the source directory.", "format": "path", "type": "string", "visible": false }, "type": { "default": "", "description": "Specifies the type of interface.", "type": "string" } }, "required": [ "name" ], "title": "Angular Interface Options Schema", "type": "object" }
o32668
{ "$id": "https://example.com/address.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A schema definition for an object which can be inherited", "javaType": "com.example.package.GeneratedParentType", "type": "object", "properties": { "parentProperty": { "type": "string" } }, "dependencies": {} }
o78404
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "MyUnion": { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/definitions/MyObject" } ] } }, "MyObject": { "type": "object", "properties": { "array": { "type": "array", "items": { "type": [ "string", "number" ] } } }, "required": [ "array" ], "additionalProperties": false } }, "$ref": "#/definitions/MyUnion" }
o17678
{ "properties": { "logging": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "normalvalue": { "type": "integer" }, "severity": { "enum": [ "Critical", "Major", "Minor", "Warning", "Informational" ], "type": "string" }, "state": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "thresholdvalue": { "type": "integer" }, "time": { "type": "integer" }, "timeout": { "readonly": true, "type": "integer" }, "trapname": { "enum": [ "CPU-USAGE", "AVERAGE-CPU", "MEMORY", "MGMT-CPU-USAGE", "SYNFLOOD", "TCP-SYNFLOOD", "VSERVER-REQRATE", "SERVICE-REQRATE", "ENTITY-RXRATE", "ENTITY-TXRATE", "ENTITY-SYNFLOOD", "SERVICE-MAXCLIENTS", "HA-STATE-CHANGE", "ENTITY-STATE", "CONFIG-CHANGE", "CONFIG-SAVE", "SERVICEGROUP-MEMBER-REQRATE", "SERVICEGROUP-MEMBER-MAXCLIENTS", "MONITOR-RTO-THRESHOLD", "LOGIN-FAILURE", "SSL-CERT-EXPIRY", "FAN-SPEED-LOW", "VOLTAGE-LOW", "VOLTAGE-HIGH", "TEMPERATURE-HIGH", "CPU-TEMPERATURE-HIGH", "POWER-SUPPLY-FAILURE", "DISK-USAGE-HIGH", "INTERFACE-THROUGHPUT-LOW", "MON_PROBE_FAILED", "HA-VERSION-MISMATCH", "HA-SYNC-FAILURE", "HA-NO-HEARTBEATS", "HA-BAD-SECONDARY-STATE", "INTERFACE-BW-USAGE", "RATE-LIMIT-THRESHOLD-EXCEEDED", "ENTITY-NAME-CHANGE", "HA-PROP-FAILURE", "IP-CONFLICT", "PF-RL-RATE-THRESHOLD", "PF-RL-PPS-THRESHOLD", "PF-RL-RATE-PKTS-DROPPED", "PF-RL-PPS-PKTS-DROPPED", "APPFW-START-URL", "APPFW-DENY-URL", "APPFW-VIOLATIONS-TYPE", "APPFW-REFERER-HEADER", "APPFW-CSRF-TAG", "APPFW-COOKIE", "APPFW-FIELD-CONSISTENCY", "APPFW-BUFFER-OVERFLOW", "APPFW-FIELD-FORMAT", "APPFW-FILE-UPLOAD-TYPE", "APPFW-JSON-DOS", "APPFW-JSON-SQL", "APPFW-JSON-XSS", "APPFW-SAFE-COMMERCE", "APPFW-SAFE-OBJECT", "APPFW-SESSION-LIMIT", "APPFW-POLICY-HIT", "APPFW-XSS", "APPFW-XML-XSS", "APPFW-SQL", "APPFW-XML-SQL", "APPFW-XML-ATTACHMENT", "APPFW-XML-DOS", "APPFW-XML-VALIDATION", "APPFW-XML-WSI", "APPFW-XML-SCHEMA-COMPILE", "APPFW-XML-SOAP-FAULT", "APPFW-NEW-SIGNATURE-ADDED", "APPFW-DEPLOY-RELAXATION-DP", "APPFW-LEARNED-RULE-APPLIED-DYN-PROF", "DNSKEY-EXPIRY", "HA-LICENSE-MISMATCH", "SSL-CARD-FAILED", "SSL-CARD-NORMAL", "WARM-RESTART-EVENT", "HARD-DISK-DRIVE-ERRORS", "COMPACT-FLASH-ERRORS", "CALLHOME-UPLOAD-EVENT", "1024KEY-EXCHANGE-RATE", "2048KEY-EXCHANGE-RATE", "4096KEY-EXCHANGE-RATE", "SSL-CUR-SESSION-INUSE", "CLUSTER-NODE-HEALTH", "CLUSTER-NODE-QUORUM", "CLUSTER-VERSION-MISMATCH", "CLUSTER-CCO-CHANGE", "CLUSTER-OVS-CHANGE", "CLUSTER-SYNC-FAILURE", "CLUSTER-PROP-FAILURE", "HA-STICKY-PRIMARY", "INBAND-PROTOCOL-VERSION-MISMATCH", "SSL-CHIP-REINIT", "VRID-STATE-CHANGE", "PORT-ALLOC-FAILED", "LLDP-REMOTE-CHANGE", "DUPLICATE-IPV6", "PARTITION-CONFIG-EVENT", "PARTITION-SWITCHED", "LSN-PORTALLOC-FAILED", "LSN-PORTQUOTA-EXCEED", "LSN-SESSIONQUOTA-EXCEED", "LSN-MEM-RECOVERY-KICKEDIN", "VSERVER-SPILLOVER", "PARTITION-RATE-LIMIT", "POOLED-LICENSE-ONGRACE", "POOLED-LICENSE-PARTIAL", "CLUSTER-BACKPLANE-HB-MISSING", "GSLB-SITE-MEP-FLAP", "DNS-MAXNEGCACHE-USAGE", "DNS-MAXCACHE-USAGE", "NS-LICENSE-EXPIRY", "PKT-RATELIMITING-ATTACK", "GSLB-SYNC-STATUS-FLIP", "URLFILT-DB-UPDATE-STATUS", "URLFILT-INIT-SDK", "POOLED-LICENSE-CHECKOUT-FAILURE", "MIGRATION-STARTED", "MIGRATION-COMPLETE" ], "type": "string" } }, "title": "snmpalarm", "type": "object" }
o30892
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "filter", "properties": { "genericLabel": { "type": "string" }, "length": { "type": "number" }, "label": { "type": "string" }, "select": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "label": { "type": "string" }, "class": { "type": "string" }, "selected": { "type": "object", "properties": { "value": { "type": "string" }, "label": { "type": "string" } } }, "options": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" }, "label": { "type": "string" } } } } } } }, "multipleSelect": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "label": { "type": "string" }, "class": { "type": "string" }, "labelSelected": { "type": "string" }, "labelSelectAll": { "type": "string" }, "labelSubmit": { "type": "string" }, "submitOnSelection": { "type": "boolean", "default": false }, "hideOnSelection": { "type": "boolean", "default": false }, "selected": { "type": "object", "properties": { "value": { "type": "string" }, "label": { "type": "string" } } }, "options": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" }, "label": { "type": "string" } } } } } } }, "search": { "type": "object", "properties": { "id": { "type": "string" }, "placeholder": { "type": "string" }, "minLength": { "type": "number" }, "label": { "type": "string" } } } } }
o12288
{ "properties": { "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or base of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape for which the area needs to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_e9dc4822
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string" }, "createDate": { "type": "integer" }, "updateDate": { "type": "integer" }, "requester": { "type": "object", "properties": { "id": { "type": "string" }, "login": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" } } }, "responder": { "type": "object", "properties": { "id": { "type": "string" }, "login": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" } } }, "latestBid": { "type": "object", "properties": { "placeDate": { "type": "integer" }, "bidder": { "type": "object", "properties": { "id": { "type": "integer" }, "login": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" } } }, "offeredItems": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } }, "requestedItems": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } } } } } }
o54977
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentCondition": { "description": "Information about the condition of a component.", "properties": { "error": { "description": "Condition error code for a component. For example, a health check error code.", "type": "string" }, "message": { "description": "Message about the condition for a component. For example, information about a health check.", "type": "string" }, "status": { "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".", "type": "string" }, "type": { "description": "Type of condition for a component. Valid value: \"Healthy\"", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "v1" ], "type": [ "string", "null" ] }, "conditions": { "description": "List of component conditions observed", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ComponentCondition" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "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": [ "ComponentStatus" ], "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" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ComponentStatus", "version": "v1" } ] }
kb_101_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "rating_history": { "type": "array", "items": { "type": "integer" } }, "score_history": { "type": "object", "patternProperties": { "^\\d+$": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "player_id": { "type": "integer" }, "score": { "type": "integer" }, "rating_delta": { "type": "number" }, "place": { "type": "integer" } }, "required": [ "player_id", "score", "rating_delta", "place" ] } } } }, "players_info": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "integer" }, "display_name": { "type": "string" }, "tenhou_id": { "type": "string" } }, "required": [ "id", "display_name", "tenhou_id" ] } }, "places_summary": { "type": "object", "additionalProperties": false, "properties": { "1": { "type": "integer" }, "2": { "type": "integer" }, "3": { "type": "integer" }, "4": { "type": "integer" } }, "required": [ "1", "2", "3", "4" ] }, "total_played_games": { "type": "integer" }, "total_played_rounds": { "type": "integer" }, "win_summary": { "type": "object", "additionalProperties": false, "properties": { "ron": { "type": "integer" }, "tsumo": { "type": "integer" }, "chombo": { "type": "integer" }, "feed": { "type": "integer" }, "tsumofeed": { "type": "integer" }, "openhand": { "type": "integer" } }, "required": [ "ron", "tsumo", "chombo", "feed", "tsumofeed" ] }, "hands_value_summary": { "type": "object", "patternProperties": { "^-?\\d+$": { "type": "integer" } } }, "yaku_summary": { "type": "object", "patternProperties": { "^\\d+$": { "type": "integer" } } }, "riichi_summary": { "type": "object", "additionalProperties": false, "properties": { "riichi_won": { "type": "integer" }, "riichi_lost": { "type": "integer" }, "feed_under_riichi": { "type": "integer" } }, "required": [ "riichi_won", "riichi_lost", "feed_under_riichi" ] } }, "additionalProperties": false, "required": [ "rating_history", "score_history", "players_info", "places_summary", "total_played_games", "total_played_rounds", "win_summary", "hands_value_summary", "yaku_summary", "riichi_summary" ] }
o10297
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "orgId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "blocks": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "blockType": { "type": "string" }, "title": { "type": "string", "maxLength": 255 }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "startX": { "type": "integer" }, "startY": { "type": "integer" }, "width": { "type": "integer" }, "height": { "type": "integer" }, "config": { "type": "object" } }, "required": [ "id", "blockType", "startX", "startY", "width", "height" ] } } }, "additionalProperties": false, "required": [ "name" ] }
o6182
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "ParentId", "PathPart", "RestApiId" ], "properties": { "ParentId": { "type": "string", "pattern": "^[a-z0-9]+$" }, "PathPart": { "type": "string", "pattern": "^(\\{[a-z]+\\})|([a-z]+)$" }, "RestApiId": { "type": "string", "pattern": "^[a-z0-9]{10}$" } }, "additionalProperties": false }
o21855
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "lookup": { "type": "object", "properties": { "action": { "type": "string", "format": "topic" } } }, "result": { "type": "object", "properties": { "resource": { "type": "string", "format": "topic" } } } } }
o89614
{ "properties": { "connect": { "properties": { "bootstrap-servers": { "default": "broker.confluent-kafka.l4lb.thisdcos.directory:9092", "description": "Bootstrap servers for target Kafka cluster. Format is comma-separated list of <host>:<port>", "type": "string" }, "cpus": { "default": 2, "description": "CPU shares to allocate to each connect worker instance.", "minimum": 1, "type": "number" }, "heap": { "default": 768, "description": "JVM heap allocation (in MB) for connect worker task; should be ~256MB less than total memory for the instance.", "minimum": 256, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "key-converter-schema-registry-url": { "default": "http://8.0.8.1:8081", "description": "Schema Registry service (for message keys). Format is http://<host>:<port>", "type": "string" }, "mem": { "default": 1024, "description": "Memory (MB) to allocate to each connect worker instance.", "minimum": 512, "type": "number" }, "name": { "default": "connect", "description": "Name for this connect worker application", "type": "string" }, "role": { "default": "*", "description": "Deploy connect worker only on nodes with this role.", "type": "string" }, "value-converter-schema-registry-url": { "default": "http://8.0.8.1:8081", "description": "Schema Registry service (for message data). Format is http://<host>:<port>", "type": "string" }, "vip-label": { "default": "8.0.8.3:8083", "description": "Label for external access to connect workers. Format is <IP>:<port>", "type": "string" }, "zookeeper-connect": { "default": "master.mesos:2181/dcos-service-confluent-kafka", "description": "Zookeeper Connect string for service cluster. Format is comma-separated list of <zk-host>:<zkport>/<kservice>", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" } }, "type": "object" }
o90652
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "GetAllVersionsResponse", "type": "object", "additionalProperties": false, "properties": { "commits": { "type": "array", "items": { "$ref": "#/definitions/CommitModel" }, "description": "All of the commits for a repository" }, "latest": { "$ref": "#/definitions/CommitModel" } }, "definitions": { "CommitModel": { "type": "object", "additionalProperties": false, "properties": { "commitId": { "type": "string" }, "version": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" } } } }, "javaName": "GetAllVersionsResponse" }
o39432
{ "$id": "https://json.schemastore.org/drupal-migration.json", "$schema": "http://json-schema.org/draft-07/schema#", "properties": { "id": { "title": "The migration ID (machine name)", "type": "string" }, "label": { "title": "The human-readable label for the migration", "type": "string" }, "audit": { "title": "Whether the migration is auditable", "type": "boolean" }, "migration_tags": { "title": "List of tags, used by the plugin manager for filtering", "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "deriver": { "title": "Deriver class", "type": "string" }, "source": { "title": "The source plugin configuration", "type": "object", "properties": { "plugin": { "title": "Source plugin ID", "type": "string" } }, "required": ["plugin"] }, "process": { "title": "The configuration describing the process plugins", "type": "object" }, "destination": { "title": "The destination plugin configuration", "type": ["object"], "properties": { "plugin": { "title": "Destination plugin ID", "type": ["string", "null"] } }, "required": ["plugin"] }, "migration_dependencies": { "title": "Migrations to run before this migration", "type": "object", "properties": { "required": { "title": "List of migration IDs that must be run before this migration", "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "optional": { "title": "List of migration IDs that, if they exist, must be run before", "type": "array", "items": { "type": "string" }, "uniqueItems": true } } }, "dependencies": { "title": "The migration's dependencies", "type": "object", "properties": { "config": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "module": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "theme": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "content": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "enforced": { "type": "object", "properties": { "config": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "module": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "theme": { "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "content": { "type": "array", "items": { "type": "string" }, "uniqueItems": true } }, "additionalProperties": false } }, "additionalProperties": false }, "provider": { "title": "List of plugin providers", "type": "array", "items": { "type": "string" }, "uniqueItems": true }, "class": { "title": "Class for migration implementation", "type": ["string", "null"] } }, "title": "JSON schema for Drupal migration files", "type": "object" }
drupal-migration
{ "copyright": [ "Copyright 2013 Red Hat, Inc. and/or its affiliates.", "This file is part of lightblue.", "This program is free software: you can redistribute it and/or modify", "it under the terms of the GNU General Public License as published by", "the Free Software Foundation, either version 3 of the License, or", "(at your option) any later version.", "This program is distributed in the hope that it will be useful,", "but WITHOUT ANY WARRANTY; without even the implied warranty of", "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", "GNU General Public License for more details.", "You should have received a copy of the GNU General Public License", "along with this program. If not, see <http://www.gnu.org/licenses/>." ], "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "description": "Structure of document that is submitted to the endpoint defined in a hook.", "properties": { "date": { "type": "string", "description": "When was the request made, format=YYYYMMDD HHmmssSSSS in UTC" }, "clientId": { "type": "string", "description": "Identifier (principal) for the client that made the request" }, "request": { "type": "object", "description": "The request" }, "response": { "type": "object", "description": "The response" }, "before": { "type": "object", "description": "Data before the request is processed." }, "after": { "type": "object", "description": "Data after the request is processed." } }, "required": [ "date", "clientId" ], "minProperties": 3, "additionalProperties": false }
o66294
{ "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { "partition": { "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", "format": "int32", "type": [ "integer", "null" ] } }, "type": "object" }
kb_884_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/traits/trait_content_aliases.json", "title": "Aliases trait", "description": "An list of alternate names that this content can be fetched by instead of id.", "type": "array", "items": { "type": "string", "pattern": "^([a-z])([a-z0-9-])*$" } }
o85911
{ "$id": "http://raw.githubusercontent.com/oasis-open/cti-stix2-json-schemas/stix2.1/schemas/common/binary.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "binary", "description": "The \u200bbinary data type represents a sequence of bytes. In order to allow pattern matching on custom objects, for all properties that use the binary type, the property name MUST end with '_bin'. The JSON MTI serialization represents this as a base64-\u00adencoded string as specified in RFC4648\u200b. Other serializations SHOULD use a native binary type, if available.", "type": "string", "pattern": "^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{4}|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{2}==)$" }
o64727
{ "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "shape": { "description": "The shape for which the area should be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_edf6b847
{ "properties": { "appflowlog": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "arp": { "enum": [ "ON", "OFF" ], "type": "string" }, "authentication": { "enum": [ "ON", "OFF" ], "readonly": true, "type": "string" }, "backendssl": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "backupvserver": { "type": "string" }, "bindpoint": { "enum": [ "REQUEST", "RESPONSE", "ICA_REQUEST" ], "readonly": true, "type": "string" }, "cachetype": { "enum": [ "TRANSPARENT", "REVERSE", "FORWARD" ], "type": "string" }, "cachevserver": { "type": "string" }, "clttimeout": { "type": "integer" }, "comment": { "type": "string" }, "curstate": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "destinationvserver": { "type": "string" }, "disableprimaryondown": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "dnsvservername": { "type": "string" }, "domain": { "type": "string" }, "downstateflush": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "format": { "enum": [ "ON", "OFF" ], "type": "string" }, "ghost": { "enum": [ "ON", "OFF" ], "type": "string" }, "gotopriorityexpression": { "readonly": true, "type": "string" }, "homepage": { "readonly": true, "type": "string" }, "httpprofilename": { "type": "string" }, "icmpvsrresponse": { "enum": [ "PASSIVE", "ACTIVE" ], "type": "string" }, "invoke": { "readonly": true, "type": "boolean" }, "ip": { "readonly": true, "type": "string" }, "ipset": { "type": "string" }, "ipv46": { "type": "string" }, "l2conn": { "enum": [ "ON", "OFF" ], "type": "string" }, "labelname": { "readonly": true, "type": "string" }, "labeltype": { "enum": [ "reqvserver", "resvserver", "policylabel" ], "readonly": true, "type": "string" }, "lbvserver": { "readonly": true, "type": "string" }, "listenpolicy": { "type": "string" }, "listenpriority": { "type": "integer" }, "map": { "enum": [ "ON", "OFF" ], "type": "string" }, "name": { "type": "string" }, "netprofile": { "type": "string" }, "newname": { "type": "string" }, "ngname": { "readonly": true, "type": "string" }, "nodefaultbindings": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "onpolicymatch": { "enum": [ "CACHE", "ORIGIN" ], "type": "string" }, "originusip": { "enum": [ "ON", "OFF" ], "type": "string" }, "pipolicyhits": { "readonly": true, "type": "integer" }, "policyname": { "readonly": true, "type": "string" }, "port": { "type": "integer" }, "precedence": { "enum": [ "RULE", "URL" ], "type": "string" }, "priority": { "readonly": true, "type": "integer" }, "range": { "type": "integer" }, "redirect": { "enum": [ "CACHE", "POLICY", "ORIGIN" ], "type": "string" }, "redirecturl": { "type": "string" }, "reuse": { "enum": [ "ON", "OFF" ], "type": "string" }, "rhistate": { "enum": [ "PASSIVE", "ACTIVE" ], "type": "string" }, "rule": { "readonly": true, "type": "string" }, "sc": { "enum": [ "ON", "OFF" ], "readonly": true, "type": "string" }, "servicename": { "readonly": true, "type": "string" }, "servicetype": { "enum": [ "HTTP", "SSL", "NNTP", "HDX" ], "type": "string" }, "somethod": { "enum": [ "CONNECTION", "DYNAMICCONNECTION", "BANDWIDTH", "HEALTH", "NONE" ], "readonly": true, "type": "string" }, "sopersistence": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "sopersistencetimeout": { "type": "integer" }, "sothreshold": { "type": "integer" }, "srcipexpr": { "type": "string" }, "state": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "status": { "readonly": true, "type": "integer" }, "targetvserver": { "readonly": true, "type": "string" }, "tcpprofilename": { "type": "string" }, "td": { "type": "integer" }, "type": { "enum": [ "CONTENT", "ADDRESS" ], "readonly": true, "type": "string" }, "useoriginipportforcache": { "enum": [ "YES", "NO" ], "type": "string" }, "useportrange": { "enum": [ "ON", "OFF" ], "type": "string" }, "value": { "enum": [ "Certkey not bound", "SSL feature disabled" ], "readonly": true, "type": "string" }, "via": { "enum": [ "ON", "OFF" ], "type": "string" }, "weight": { "readonly": true, "type": "integer" } }, "title": "crvserver", "type": "object" }
o30342
{ "collection": "reports", "class": "schema", "_id": "reports/schema/reportipd", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Leprosy and TB", "type": "object", "properties": { "those_who_are_admitted_in_the_ward": { "line_number": "1", "sw": "Waliolazwa Wodini", "en": "Those who are admitted into the ward" }, "acute_flacid_paralysis": { "line_number": "2", "sw": "Acute Flacid Paralysis", "en": "Acute Flacid Paralysis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Acute Flacid Paralysis'" }, "cholera": { "line_number": "3", "sw": "Cholera", "en": "Cholera", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Cholera'" }, "dysentery": { "line_number": "4", "sw": "Dysentery", "en": "Dysentery", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Dysentery'" }, "measles": { "line_number": "5", "sw": "Measles", "en": "Measles", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Measles'" }, "meningitis": { "line_number": "6", "sw": "Meningitis", "en": "Meningitis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Meningitis'" }, "tetanus_neonatal": { "line_number": "7", "sw": "Tetanus. Neonatal", "en": "Tetanus. Neonatal", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Tetanus. Neonatal'" }, "plague": { "line_number": "8", "sw": "Plague", "en": "Plague", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Plague'" }, "relapsing_fever_louse_borne_typhus": { "line_number": "9", "sw": "Relapsing Fever Louse borne Typhus", "en": "Relapsing Fever Louse borne Typhus", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Relapsing Fever Louse borne Typhus'" }, "typhoid": { "line_number": "10", "sw": "Typhoid", "en": "Typhoid", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Typhoid'" }, "diarrhea_acute": { "line_number": "11", "sw": "Diarrhea Acute <14days", "en": "Diarrhea Acute <14days", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Diarrhea Acute <14days'" }, "diarrhea_chronic": { "line_number": "1", "sw": "Diarrhea Chronic >or= 14days", "en": "Diarrhea Chronic >or= 14days", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Diarrhea Chronic >or= 14days'" }, "malaria_severe_complicated_blood_side_positive": { "line_number": "13a", "sw": "Malaria Severe/Complicated Blood Side Positive", "en": "Maleria Severe/Complicated Blood Side Positive", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Maleria Severe/Complicated Blood Side Positive'" }, "malaria_severe_complicated_mrdt_positive": { "line_number": "13b", "sw": "Malaria Severe/Complicated mRDT Positive", "en": "Maleria Severe/Complicated mRDT Positive", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Maleria Severe/Complicated mRDT Positive'" }, "malaria_severe_complicated_clinical_no_test": { "line_number": "13c", "sw": "Malaria Severe/Complicated Clinical no test", "en": "Maleria Severe/Complicated Clinical no test", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Maleria Severe/Complicated Clinical no test'" }, "schistosomiasis": { "line_number": "14", "sw": "Schistosomiasis", "en": "Schistosomiasis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Schistosomiasis'" }, "sti_genital_discharge_syndrome_gds": { "line_number": "15", "sw": "STI Genital Discharge Syndrome GDS", "en": "STI Genital Discharge Syndrome GDS", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'STI Genital Discharge Syndrome GDS'" }, "sti_genital_ulcer_diseases_gud": { "line_number": "16", "sw": "STI Genital Ulcer Diseases GUD", "en": "STI Genital Ulcer Diseases GUD", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'STI Genital Ulcer Diseases GUD'" }, "sti_pelvic_inflammatory_diseases": { "line_number": "17", "sw": "STI Pelvic Inflammatory diseases PID", "en": "STI Pelvic Inflammatory diseases PID", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'STI Pelvic Inflammatory diseases PID'" }, "sexually_transmitted_infection_other": { "line_number": "18", "sw": "Sexually Transmitted Infection Other", "en": "Sexually Transmitted Infection Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Sexually Transmitted Infection Other'" }, "gynaecological_diseases": { "line_number": "19", "sw": "Gynaecological diseases Other", "en": "Gynaecological diseases Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Gynaecological diseases Other'" }, "tuberculosis": { "line_number": "20", "sw": "Tuberculosis", "en": "Tuberculosis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Tuberculosis'" }, "leprosy": { "line_number": "21", "sw": "Leprosy", "en": "Leprosy", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Leprosy'" }, "diabetes_mellitus": { "line_number": "22", "sw": "Diabetes Mellitus", "en": "Diabetes Mellitus", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Diabetes Mellitus'" }, "infant_of_diabetic_mother": { "line_number": "23", "sw": "Infant of Diabetic Mother", "en": "Infant of Diabetic Mother", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Infant of Diabetic Mother'" }, "kwashiorkor": { "line_number": "24", "sw": "Kwashiorkor", "en": "Kwashiorkor", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Kwashiorkor'" }, "marasmus": { "line_number": "25", "sw": "Marasmus", "en": "Marasmus", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Marasmus'" }, "marasmic_kwashiorkor": { "line_number": "26", "sw": "Marasmic_kwashiorkor", "en": "Marasmic_kwashiorkor", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Marasmic_kwashiorkor'" }, "moderate_malnutrition": { "line_number": "27", "sw": "Moderate Malnutrition", "en": "Moderate Malnutrition", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Moderate Malnutrition'" }, "nutritional_disoders_other": { "line_number": "28", "sw": "Nutritional Disorders Other", "en": "Nutritional Disorders Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Nutritional Disorders Other'" }, "thyroid_diseases": { "line_number": "29", "sw": "Thyroid Diseases", "en": "Thyroid Diseases", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Thyroid Diseases'" }, "sickle_cell_disease": { "line_number": "30", "sw": "Sickle cell Disease", "en": "Sickle cell Disease", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Sickle cell Disease'" }, "anaemia_mild_moderate": { "line_number": "31", "sw": "Anaemia Mild/Moderate", "en": "Anaemia Mild/Moderate", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Anaemia Mild/Moderate'" }, "anaemia_severe": { "line_number": "32", "sw": "Anaemia Severe", "en": "Anaemia Severe", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Anaemia Severe'" }, "psychoses": { "line_number": "33", "sw": "Psychoses", "en": "Psychoses", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Psychoses'" }, "neuroses": { "line_number": "34", "sw": "Neuroses", "en": "Neuroses", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Neuroses'" }, "cerebral_palsy": { "line_number": "35", "sw": "Cerebral Palsy", "en": "Cerebral Palsy", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Cerebral Palsy'" }, "epilepsy": { "line_number": "36", "sw": "Epilepsy", "en": "Epilepsy", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Epilepsy'" }, "ear_diseases_non_infectious": { "line_number": "37", "sw": "Ear Diseases non-infectious", "en": "Ear Diseases non-infectious", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Ear Diseases non-infectious'" }, "ear_infection_acute": { "line_number": "38", "sw": "Ear infection Acute", "en": "Ear infection Acute", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Ear infection Acute'" }, "ear_infection_chronic": { "line_number": "39", "sw": "Ear Infection Chronic", "en": "Ear Infection Chronic", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Ear Infection Chronic'" }, "eye_infections_viral_keratoconjunctivitis": { "line_number": "40", "sw": "Eye Infections Viral Keratoconjunctivitis", "en": "Eye Infections Viral Keratoconjunctivitis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Eye Infections Viral Keratoconjunctivitis'" }, "eye_infections_other": { "line_number": "41", "sw": "Eye Infections Other", "en": "Eye Infections Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Eye Infections Other'" }, "eye_diseases_non-infectious": { "line_number": "42", "sw": "Eye Diseases Non-infectious", "en": "Eye Diseases Non-infectious", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Eye Diseases Non-infectious'" }, "cardiac_failure": { "line_number": "43", "sw": "Cardiac Failure", "en": "Cardiac Failure", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Cardiac Failure'" }, "hypertension_severe": { "line_number": "44", "sw": "Hypertension severe", "en": "Hypertension severe", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Hypertension severe'" }, "rheumatic_fever": { "line_number": "45", "sw": "Rheumatic Fever", "en": "Rheumatic Fever", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Rheumatic Fever'" }, "cardiovascular_disorders_other": { "line_number": "46", "sw": "Cardiovascular Disorders Other", "en": "Cardiovascular Disorders Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Cardiovascular Disorders Other'" }, "broncial_asthma_severe": { "line_number": "47", "sw": "Broncial Asthma Severe", "en": "Broncial Asthma Severe", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Broncial Asthma Severe'" }, "upper_respiratory_infections_pharyngitis_tonsillitis_rhinitis": { "line_number": "48", "sw": "Upper Respiratory Infections Pharyngitis/Tonsillitis/Rhinitis", "en": "Upper Respiratory Infections Pharyngitis/Tonsillitis/Rhinitis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Upper Respiratory Infections Pharyngitis/Tonsillitis/Rhinitis'" }, "pneumonia": { "line_number": "49", "sw": "Pneumonia", "en": "Pneumonia", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Pneumonia'" }, "pneumonia_severe": { "line_number": "50", "sw": "Pneumonia Severe", "en": "Pneumonia Severe", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Pneumonia Severe'" }, "respiratory_system_disorders_other": { "line_number": "51", "sw": "Respiratory System disorders Other", "en": "Respiratory System disorders Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Respiratory System disorders Other'" }, "peptic_ulcers": { "line_number": "52", "sw": "Peptic ulcers", "en": "Peptic ulcers", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Peptic ulcers'" }, "liver_diseases_non_infectious": { "line_number": "53", "sw": "Liver diseases Non-infectious", "en": "Liver diseases Non-infectious", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Liver diseases Non-infectious'" }, "gastrointestinal_disease_other_non_infectious": { "line_number": "54", "sw": "Gastrointestinal diseases Other non-infectious", "en": "Gastrointestinal diseases Other non-infectious", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Gastrointestinal diseases Other non-infectious'" }, "urinary_tract_infections": { "line_number": "55", "sw": "Urinary Tract Infections UTI", "en": "Urinary Tract Infections UTI", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Urinary Tract Infections UTI'" }, "nephrotic_syndrome": { "line_number": "56", "sw": "Nephrotic Syndrome", "en": "Nephrotic Syndrome", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Nephrotic Syndrome'" }, "acute_glumerulonephritis": { "line_number": "57", "sw": "Acute glumerulonephritis", "en": "Acute glumerulonephritis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Acute glumerulonephritis'" }, "skin_infections": { "line_number": "58", "sw": "Skin Infections", "en": "Skin Infections", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Skin Infections'" }, "skin_diseases_non_infectious": { "line_number": "59", "sw": "Skin diseases Non-infectious", "en": "Skin diseases Non-infectious", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Skin diseases Non-infectious'" }, "osteomyelitis": { "line_number": "60", "sw": "Osteomyelitis", "en": "Osteomyelitis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Osteomyelitis'" }, "rheumatoid_and_joint_disease": { "line_number": "61", "sw": "Rheumatoid and Joint diseases", "en": "Rheumatoid and Joint diseases", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Rheumatoid and Joint diseases'" }, "low_birth_weight_and_prematurity_complications": { "line_number": "62", "sw": "Low birth weight and Prematurity complications", "en": "Low birth weight and Prematurity complications", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Low birth weight and Prematurity complications'" }, "birth_asphyxia": { "line_number": "63", "sw": "Birth asphyxia", "en": "Birth asphyxia", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Birth asphyxia'" }, "neonatal_septicaemia_local_infections": { "line_number": "64", "sw": "Neonatal Septicaemia Local infections", "en": "Neonatal Septicaemia Local infections", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Neonatal Septicaemia Local infections'" }, "road_traffic_accidents": { "line_number": "65", "sw": "Road Traffic Accidents", "en": "Road Traffic Accidents", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Road Traffic Accidents'" }, "fractures": { "line_number": "66", "sw": "Fractures", "en": "Fractures", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Fractures'" }, "poisoning": { "line_number": "67", "sw": "Poisoning", "en": "Poisoning", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Poisoning'" }, "burns": { "line_number": "68", "sw": "Burns", "en": "Burns", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Burns'" }, "animal_bites_suspected_rabies": { "line_number": "69", "sw": "Animal Bites Suspected Rabies", "en": "Animal Bites Suspected Rabies", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Animal Bites Suspected Rabies'" }, "animal_bites_no_suspected_rabies": { "line_number": "70", "sw": "Animal Bites No suspected Rabies", "en": "Animal Bites No suspected Rabies", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Animal Bites No suspected Rabies'" }, "hiv_infection_symptomatic": { "line_number": "71", "sw": "HIV infection Symptomatic", "en": "HIV infection Symptomatic", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'HIV infection Symptomatic'" }, "congenital_disorders": { "line_number": "72", "sw": "Congenital Disorders", "en": "Congenital Disorders", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Congenital Disorders'" }, "hepatitis": { "line_number": "73", "sw": "Hepatitis", "en": "Hepatitis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Hepatitis'" }, "neoplasm": { "line_number": "74", "sw": "Neoplasm", "en": "Neoplasm", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Neoplasm'" }, "soil_transmitted_helminths": { "line_number": "75", "sw": "Soil transmitted helminths", "en": "Soil transmitted helminths", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Soil transmitted helminths'" }, "lympatic_filairiasis": { "line_number": "76", "sw": "Lympatic filairiasis", "en": "Lympatic filairiasis", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Lympatic filairiasis'" }, "anthrax": { "line_number": "77", "sw": "Anthrax", "en": "Anthrax", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Anthrax'" }, "diagnoses_other": { "line_number": "78", "sw": "Diagnoses Other", "en": "Diagnoses Other", "condition": "disease_diagnosis.admission && disease_diagnosis.diagnosis == 'Diagnoses Other'" }, "definitions": { "columns": { "lessthan1male": { "title": "Males", "condition": "FIXME && patient.gender == 'male'" }, "lessthan1female": { "title": "Less than 1 Month - Females", "condition": "FIXME && patient.gender == 'female'" }, "lessthan1total": { "title": "Less than 1 Month - Total", "condition": "FIXME" }, "more1momale": { "title": "More than 1 month and less than 1 Year - Male", "condition": "FIXME && patient.gender == 'male'" }, "more1mofemale": { "title": "More than 1 month and less than 1 Year - Females", "condition": "FIXME && patient.gender == 'female'" }, "more1mototal": { "title": "More than 1 month and less than 1 Year - Total", "condition": "FIXME " }, "above1below5male": { "title": "More than 1 year and less than 5 Years - Male", "condition": "patient.approxage > 1 && patient.approxage < 5 && patient.gender == 'male'" }, "above1below5female": { "title": "More than 1 year and less than 5 Years - Females", "condition": "patient.approxage > 1 && patient.approxage < 5 && patient.gender == 'female'" }, "above1below5total": { "title": "More than 1 year and less than 5 Years - Total", "condition": "patient.approxage > 1 && patient.approxage < 5" } } } } }
o47199
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "purchase": { "type": "object", "description": "The purchase.", "properties": { "browserIpAddress": { "type": "string", "description": "The IP Address of the browser that was used to make the This is the IP Address that was used to connect to your site and make the " }, "shipments": { "type": "array", "description": "The shipments association with this purchase" }, "products": { "type": "array", "description": "The products purchased in the transaction." }, "orderId": { "type": "string", "description": "A string uniquely identifying this order." }, "createdAt": { "type": "string", "description": "`yyyy-MM-dd'T'HH:mm:ssZ` The date and time when the order was placed, shown on the signifyd console. See the Dates section of these docs for more information about date formats." }, "paymentGateway": { "type": "string", "description": "The gateway that processed the transaction. For paypal orders use paypal_account." }, "paymentMethod": { "type": "object", "description": "The method the user used to complete the " }, "transactionId": { "type": "string", "description": "The unique identifier provided by the payment gateway for this order. If you have provided us with credentials for your payment gateway we can obtain additional details about the order, like AVS and CVV status, from your payment provider." }, "currency": { "type": "string", "description": "The currency type of the order, in 3 letter ISO 4217 format. Defaults to USD." }, "avsResponseCode": { "type": "string", "description": "The response code from the address verification system (AVS). Accepted codes: http://www.emsecommerce.net/avs_cvv2_response_codes.htm" }, "cvvResponseCode": { "type": "string", "description": "The response code from the card verification value (CVV) check. Accepted codes listed on above link." }, "orderChannel": { "type": "string", "description": "The method used by the buyer to place the order. Either WEB or PHONE." }, "receivedBy": { "type": "string", "description": "If the order was was taken by a customer service or sales agent, his or her name." }, "totalPrice": { "type": "number", "description": "The total price of the order, including shipping price and taxes." } }, "required": [ "browserIpAddress", "orderId", "createdAt", "avsResponseCode", "cvvResponseCode", "totalPrice" ] }, "recipient": { "type": "object", "description": "The person receiving the goods.", "properties": { "fullName": { "type": "string", "description": "The full name of the person receiving the goods. If this item is being shipped, then this field is the person it is being shipping to. Don't assume this name is the same as card.cardHolderName. Only put a value here if the name will actually appear on the shipping label. If this item is digital, then this field will likely be blank." }, "confirmationEmail": { "type": "string", "description": "When this purchase was completed, you likely sent a confirmation email or you will be sending a confirmation email to someone once you approve the order. This is the email address to which that confirmation email will be sent." }, "confirmationPhone": { "type": "string", "description": "The phone number that you would call if there was something wrong with this order or the phone number that was supplied with the shipping information." }, "organization": { "type": "string", "description": "If provided by the buyer, the name of the recipient's company or organization." }, "deliveryAddress": { "type": "object", "description": "The address to which the order will be delivered.", "properties": { "streetAddress": { "type": "string", "description": "The street number and street name." }, "unit": { "type": "string", "description": "The unit or apartment number." }, "city": { "type": "string", "description": "The city name." }, "provinceCode": { "type": "string", "description": "The code or abbreviation for the province." }, "postalCode string": { "type": "string", "description": "The postal code." }, "countryCode": { "type": "string", "description": "The two-letter ISO-3166 country code. If left blank, we will assume US." }, "latitude": { "type": "number", "description": "The latitude of the address. Used when address details are not provided. Ignored otherwise." }, "longitude": { "type": "number", "description": "The longitude of the address. Used when address details are not provided. Ignored otherwise." } } } }, "required": [ "fullName", "confirmationEmail", "deliveryAddress" ] }, "card": { "type": "object", "properties": { "cardHolderName": { "type": "string", "description": "The full name on the credit card that was charged." }, "bin": { "type": "number", "description": "The first six digits of the credit card, the bank identification number, which uniquely identifies the issuer." }, "last4": { "type": "string", "description": "The last four digits of the card number." }, "expiryMonth": { "type": "number", "description": "MM representation of the expiration month of the card." }, "expiryYear": { "type": "number", "description": "yyyy representation of the expiration year of the card." }, "billingAddress": { "type": "object", "properties": { "streetAddress": { "type": "string", "description": "The street number and street name." }, "unit": { "type": "string", "description": "The unit or apartment number." }, "city": { "type": "string", "description": "The city name." }, "provinceCode": { "type": "string", "description": "The code or abbreviation for the province." }, "postalCode string": { "type": "string", "description": "The postal code." }, "countryCode": { "type": "string", "description": "The two-letter ISO-3166 country code. If left blank, we will assume US." }, "latitude": { "type": "number", "description": "The latitude of the address. Used when address details are not provided. Ignored otherwise." }, "longitude": { "type": "number", "description": "The longitude of the address. Used when address details are not provided. Ignored otherwise." } }, "description": "The billing address for the card." } }, "required": [ "cardHolderName", "billingAddress" ] }, "userAccount": { "type": "object", "properties": { "email": { "type": "string", "description": "The primary email address associated with the account." }, "username": { "type": "string", "description": "The username associated with the account. Please supply this even if it is the same as the email address." }, "phone": { "type": "string", "description": "The phone number association with the account." }, "createdDate": { "type": "string", "description": "`yyyy-MM-dd'T'HH:mm:ssZ` The date when the account was created. See the Dates section of these docs for more information about date formats." }, "accountNumber": { "type": "string", "description": "Your unique identifier for the account." }, "lastOrderId": { "type": "string", "description": "The unique identifier for the last order placed by this account, prior to the current order." }, "aggregateOrderCount": { "type": "number", "description": "The total count of orders placed by this account since it was created, including the current order." }, "aggregateOrderDollars": { "type": "number", "description": "The total amount spent by this account since it was created, including the current order." }, "lastUpdateDate": { "type": "string", "description": "`yyyy-MM-dd'T'HH:mm:ssZ` The last time a change was made to this account other than an order being placed. Examples include changing email addresses or adding a new credit card. See the Dates section of these docs for more information about date formats." } } }, "seller": { "type": "object", "properties": { "name": { "type": "string", "description": "The business name of the seller." }, "domain": { "type": "string", "description": "The domain of the seller." }, "shipFromAddress": { "type": "object", "properties": { "streetAddress": { "type": "string", "description": "The street number and street name." }, "unit": { "type": "string", "description": "The unit or apartment number." }, "city": { "type": "string", "description": "The city name." }, "provinceCode": { "type": "string", "description": "The code or abbreviation for the province." }, "postalCode string": { "type": "string", "description": "The postal code." }, "countryCode": { "type": "string", "description": "The two-letter ISO-3166 country code. If left blank, we will assume US." }, "latitude": { "type": "number", "description": "The latitude of the address. Used when address details are not provided. Ignored otherwise." }, "longitude": { "type": "number", "description": "The longitude of the address. Used when address details are not provided. Ignored otherwise." } }, "description": "The location from which the seller shipped the order." } } } }, "required": [ "purchase", "recipient", "card" ] }
o77276
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "data_type": { "enum": [ "share_parcel" ] }, "properties": { "type": "object", "required": [ "shareholders" ], "properties": { "number_of_shares": { "description": "Number of shares, if known", "type": "integer" }, "percentage_of_shares": { "description": "Percentage of shares, if known", "type": "number", "maximum": 100, "minimum": 0 }, "shareholders": { "description": "Legal persons who own this share parcel", "type": "array", "minItems": 1, "items": { "anyOf": [ { "type": "object", "name": "person", "required": [ "name" ], "properties": { "name": { "description": "Name of natural person or company", "type": "string" }, "jurisdiction": { "description": "Jurisdiction of registration, if company", "type": "string" }, "company_number": { "description": "Company number, if company and known", "type": "string" }, "identifier": { "description": "Unique identifier of person", "type": "string" }, "type": { "description": "Type of person if known (company or natural person)", "enum": [ "Company", "Person" ] }, "address": { "description": "Address given for owner of parcel", "type": "string" }, "address_country": { "description": "Country part of owner's address", "type": "string" } } } ] } } } } }, "required": [ "data_type", "properties" ] }
o65465
{ "definitions": { "userLight": { "properties": { "admin": { "type": "boolean" }, "callsign": { "type": "string" }, "email": { "format": "email", "type": "string" }, "id": { "type": "integer" } }, "required": [ "id", "callsign", "email", "admin" ], "type": "object" } }, "properties": { "userLight": { "$ref": "#/definitions/userLight" } }, "required": [ "userLight" ] }
o64536
{ "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" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (required if shape is rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_df38668d
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "endpoint": "http://{host}", "items": { "title": "film", "type": "object", "properties": { "id": { "type": "integer" } } } }
o78398
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Codex Coverage Schema", "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "range": { "type": "array", "items": { "type": "object", "properties": { "begin": { "type": "string" }, "end": { "type": "string" } }, "additionalItems": true, "_uniqueItems": true } }, "statement": { "type": "string" }, "embargo": { "type": "array", "items": { "type": "object", "properties": { "begin": { "type": "string" }, "end": { "type": "string" } } }, "additionalItems": true, "_uniqueItems": true } }, "required": [ "id" ] }
o24172
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area of the shape", "properties": { "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 for which area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_219b3906
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "Name is the name of the service", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the service", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "type": "object" } }, "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", "properties": { "caBundle": { "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "format": "byte", "type": [ "string", "null" ] }, "group": { "description": "Group is the API group name this server hosts", "type": [ "string", "null" ] }, "groupPriorityMinimum": { "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "format": "int32", "type": [ "integer", "null" ] }, "insecureSkipTLSVerify": { "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", "type": [ "boolean", "null" ] }, "service": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference", "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled." }, "version": { "description": "Version is the API version this server hosts. For example, \"v1\"", "type": [ "string", "null" ] }, "versionPriority": { "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "groupPriorityMinimum", "versionPriority" ], "type": "object" }
kb_33_Normalized
{ "properties": { "addvaryheader": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "builtin": { "enum": [ "MODIFIABLE", "DELETABLE", "IMMUTABLE", "PARTITION_ALL" ], "readonly": true, "type": "object" }, "cmpbypasspct": { "type": "integer" }, "cmplevel": { "enum": [ "optimal", "bestspeed", "bestcompression" ], "type": "string" }, "cmponpush": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "externalcache": { "enum": [ "YES", "NO" ], "type": "string" }, "feature": { "enum": [ "WL", "WebLogging", "SP", "SurgeProtection", "LB", "LoadBalancing", "CS", "ContentSwitching", "CR", "CacheRedirection", "SC", "SureConnect", "CMP", "CMPcntl", "CompressionControl", "PQ", "PriorityQueuing", "HDOSP", "HttpDoSProtection", "SSLVPN", "AAA", "GSLB", "GlobalServerLoadBalancing", "SSL", "SSLOffload", "SSLOffloading", "CF", "ContentFiltering", "IC", "IntegratedCaching", "OSPF", "OSPFRouting", "RIP", "RIPRouting", "BGP", "BGPRouting", "REWRITE", "IPv6PT", "IPv6protocoltranslation", "AppFw", "ApplicationFirewall", "RESPONDER", "HTMLInjection", "push", "NSPush", "NetScalerPush", "AppFlow", "CloudBridge", "ISIS", "ISISRouting", "CH", "CallHome", "AppQoE", "ContentAccelerator", "SYSTEM", "RISE", "FEO", "LSN", "LargeScaleNAT", "RDPProxy", "Rep", "Reputation", "URLFiltering", "VideoOptimization", "ForwardProxy", "SSLInterception", "AdaptiveTCP", "CQA", "CI", "ContentInspection", "Bot" ], "readonly": true, "type": "string" }, "heurexpiry": { "enum": [ "ON", "OFF" ], "type": "string" }, "heurexpiryhistwt": { "type": "integer" }, "heurexpirythres": { "type": "integer" }, "minressize": { "type": "integer" }, "policytype": { "enum": [ "CLASSIC", "ADVANCED" ], "type": "string" }, "quantumsize": { "type": "integer" }, "servercmp": { "enum": [ "ON", "OFF" ], "type": "string" }, "varyheadervalue": { "type": "string" } }, "title": "cmpparameter", "type": "object" }
o30308
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressClass": { "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "type": "string" }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "IngressClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressClassSpec", "description": "Spec is the desired state of the IngressClass. 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": "networking.k8s.io", "kind": "IngressClass", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressClassSpec": { "description": "IngressClassSpec provides information about the class of an Ingress.", "properties": { "controller": { "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", "type": "string" }, "parameters": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "IngressClassList is a collection of IngressClasses.", "properties": { "apiVersion": { "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", "enum": [ "networking.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is the list of IngressClasses.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_networking_v1beta1_IngressClass" }, "type": [ "array", "null" ] }, "kind": { "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "enum": [ "IngressClassList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "IngressClassList", "version": "v1beta1" } ] }
kb_444_Normalized
{ "title": "JSON schema for Azure Functions extensions.json files", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "extensions": { "type": "array", "description": "The list of installed extensions.", "items": { "type": "object", "properties": { "name": { "description": "The short extension name.", "type": "string", "minLength": 0 }, "typeName": { "description": "The type assembly qualified name.", "type": "string" }, "hintPath": { "description": "An optional file path hint to the assembly containing the type.", "type": "string" } } } } } }
o39754
{ "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 an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": [ "boolean", "null" ] }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": [ "boolean", "null" ] }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": [ "string", "null" ] }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": [ "string", "null" ] }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": [ "string", "null" ] }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": [ "string", "null" ] }, "lun": { "description": "iSCSI Target Lun number.", "format": "int32", "type": [ "integer", "null" ] }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": [ "boolean", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": [ "string", "null" ] } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }
kb_477_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelArtifactReusedEvent" ] }, "version": { "type": "string", "enum": [ "2.0.0" ], "default": "2.0.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "string", "pattern": "^pkg:" }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "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 }
o5356
{ "additionalProperties": false, "description": "Schema for a Google Analytics system info entity", "properties": { "documentEncoding": { "maxLength": 20, "type": [ "string", "null" ] }, "flashVersion": { "maxLength": 20, "type": [ "string", "null" ] }, "javaEnabled": { "type": [ "boolean", "null" ] }, "screenColors": { "maxLength": 20, "type": [ "string", "null" ] }, "screenResolution": { "maxLength": 20, "type": [ "string", "null" ] }, "userLanguage": { "maxLength": 20, "type": [ "string", "null" ] }, "viewportSize": { "maxLength": 20, "type": [ "string", "null" ] } }, "self": { "format": "jsonschema", "name": "system_info", "vendor": "com.google.analytics.measurement-protocol", "version": "1-0-0" }, "type": "object" }
sp_63_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "Beschreibung fehlt", "properties": { "content": { "description": "Beschreibung fehlt", "properties": { "All_Day": { "description": "Beschreibung fehlt", "title": "All_Day schema.", "type": "boolean" }, "Created_At": { "description": "Beschreibung fehlt", "title": "Created_At schema.", "type": "string" }, "Created_By": { "description": "Beschreibung fehlt", "title": "Created_By schema.", "type": "string" }, "Description": { "description": "Beschreibung fehlt", "title": "Description schema.", "type": "string" }, "End": { "description": "Beschreibung fehlt", "title": "End schema.", "type": "string" }, "ID": { "description": "Beschreibung fehlt", "title": "ID schema.", "type": "integer" }, "Kalender": { "description": "Beschreibung fehlt", "title": "Kalender schema.", "type": "string" }, "Keywords": { "description": "Beschreibung fehlt", "title": "Keywords schema.", "type": "object" }, "Last_Modified_At": { "description": "Beschreibung fehlt", "title": "Last_Modified_At schema.", "type": "string" }, "Last_Modified_By": { "description": "Beschreibung fehlt", "title": "Last_Modified_By schema.", "type": "string" }, "Location": { "description": "Beschreibung fehlt", "title": "Location schema.", "type": "string" }, "Organizer": { "description": "Beschreibung fehlt", "title": "Organizer schema.", "type": "string" }, "SSID": { "description": "Beschreibung fehlt", "title": "SSID schema.", "type": "string" }, "Start": { "description": "Beschreibung fehlt", "title": "Start schema.", "type": "string" }, "Stufen": { "description": "Beschreibung fehlt", "items": { "description": "Beschreibung fehlt", "title": "0 schema.", "type": "integer" }, "title": "Stufen schema.", "type": "array" }, "Target_Group": { "description": "Beschreibung fehlt", "title": "Target_Group schema.", "type": "string" }, "Title": { "description": "Beschreibung fehlt", "title": "Title schema.", "type": "string" }, "UID": { "description": "Beschreibung fehlt", "title": "UID schema.", "type": "integer" }, "URL": { "description": "Beschreibung fehlt", "title": "URL schema.", "type": "string" }, "URL_Text": { "description": "Beschreibung fehlt", "title": "URL_Text schema.", "type": "string" }, "ZIP": { "description": "Beschreibung fehlt", "title": "ZIP schema.", "type": "string" } }, "title": "Content schema.", "type": "object" }, "type": { "description": "Beschreibung fehlt", "enum": [ "event" ], "title": "Type schema.", "type": "string" } }, "title": "Root schema.", "type": "object" }
o74367
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "extensions": { "type": "array", "description": "Extension points", "items": { "properties": { "type": { "type": "string" }, "order": { "type": "number" } } } }, "dependencies": { "type": "array", "items": { "type": "string" } }, "scripts": { "type": "array", "items": { "type": "string" } }, "resources": { "type": "array", "items": { "type": "string" } }, "skip_compilation": { "type": "array", "items": { "type": "string" } }, "experiment": { "type": "string" } }, "definitions": {} }
o70193
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "classification": { "enum": ["MyCode", "LibraryCode", "UnrelatedCode"] }, "includes": { "type": "array", "items": { "type": "string", "minLength": 1 } } }, "id": "https://json.schemastore.org/mycode.json", "properties": { "Eval": { "description": "Script that is executed by passing a string to the host-provided eval function.", "default": "MyCode", "allOf": [ { "$ref": "#/definitions/classification" } ] }, "Function": { "description": "Script that is executed by passing a string to the 'Function' constructor.", "default": "LibraryCode", "allOf": [ { "$ref": "#/definitions/classification" } ] }, "ScriptBlock": { "description": "Script that is executed by passing a string to the 'setTimeout', 'setImmediate', or 'setInterval' functions.", "default": "UnrelatedCode", "allOf": [ { "$ref": "#/definitions/classification" } ] }, "MyCode": { "description": "An array of urls or files that are classified as 'MyCode'.", "allOf": [ { "$ref": "#/definitions/includes" } ] }, "Libraries": { "description": "An array of urls or files that are classified as 'LibraryCode'.", "allOf": [ { "$ref": "#/definitions/includes" } ] }, "Unrelated": { "description": "An array of urls or files that are classified as 'UnrelatedCode'.", "allOf": [ { "$ref": "#/definitions/includes" } ] } }, "title": "JSON schema for mycode.js files", "type": "object" }
mycode
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A manifest file for a Slack app, as described on this page: https://api.slack.com/reference/manifests", "id": "https://json.schemastore.org/slack-app-manifest.json", "properties": { "_metadata": { "description": "Settings that describe the manifest.\nhttps://api.slack.com/reference/manifests#metadata", "type": "object", "properties": { "major_version": { "description": "An integer that specifies the major version of the manifest schema to target.", "type": "integer" }, "minor_version": { "description": "An integer that specifies the minor version of the manifest schema to target.", "type": "integer" } }, "additionalProperties": false }, "display_information": { "description": "Settings that describe parts of an app's appearance within Slack. If you're distributing the app via the App Directory, read our listing guidelines to pick the best values for these settings.\nhttps://api.slack.com/reference/manifests#display", "type": "object", "properties": { "name": { "description": "The name of the app.", "type": "string", "maxLength": 35 }, "description": { "description": "A short description of the app for display to users.", "type": "string", "maxLength": 140 }, "long_description": { "description": "A longer version of the description of the app.", "type": "string", "maxLength": 4000 }, "background_color": { "description": "A hex color value that specifies the background color used on hovercards that display information about your app. Can be 3-digit (#000) or 6-digit (#000000) hex values. Once an app has set a background color value, it cannot be removed, only updated.", "type": "string", "pattern": "^#(?:[\\da-fA-F]{3}){1,2}$" } }, "required": ["name"], "additionalProperties": false }, "settings": { "description": "Settings section of the app config pages.\nhttps://api.slack.com/reference/manifests#settings", "type": "object", "properties": { "allowed_ip_address_ranges": { "description": "IP addresses that conform to the Allowed IP Ranges feature", "type": "array", "items": { "type": "string" } }, "event_subscriptions": { "description": "Events API configuration for the app.", "type": "object", "properties": { "request_url": { "description": "The full https URL that acts as the Events API request URL. If set, you'll need to manually verify the Request URL in the App Manifest section of App Management.", "type": "string" }, "bot_events": { "description": "The event types you want to the app to subscribe to.", "type": "array", "items": { "type": "string" }, "maxItems": 100 }, "user_events": { "description": "The event types you want to the app to subscribe to on behalf of authorized users.", "type": "array", "items": { "type": "string" }, "maxItems": 100 } }, "additionalProperties": false }, "interactivity": { "description": "Interactivity configuration for the app.", "type": "object", "properties": { "is_enabled": { "description": "Whether or not interactivity features are enabled.", "type": "boolean" }, "request_url": { "description": "The full https URL that acts as the interactive Request URL.", "type": "string" }, "message_menu_options_url": { "description": "The full https URL that acts as the interactive Options Load URL.", "type": "string" } }, "required": ["is_enabled"], "additionalProperties": false }, "org_deploy_enabled": { "description": "Whether or not org-wide deploy is enabled.", "type": "boolean" }, "socket_mode_enabled": { "description": "Whether or not Socket Mode is enabled.", "type": "boolean" }, "token_rotation_enabled": { "description": "Whether or not token rotation is enabled for access tokens.", "type": "boolean" } }, "additionalProperties": false }, "features": { "description": "Features section of the app config pages.\nhttps://api.slack.com/reference/manifests#features", "type": "object", "properties": { "app_home": { "description": "App Home configuration.", "type": "object", "properties": { "home_tab_enabled": { "description": "Whether or not the Home tab is enabled.", "type": "boolean" }, "messages_tab_enabled": { "description": "Whether or not the Messages tab in your App Home is enabled.", "type": "boolean" }, "messages_tab_read_only_enabled": { "description": "Whether or not the users can send messages to your app in the Messages tab of your App Home.", "type": "boolean" } }, "additionalProperties": false }, "bot_user": { "description": "Bot user configuration.", "type": "object", "properties": { "display_name": { "description": "The display name of the bot user. Allowed characters: a-z, 0-9, -, _, and .", "type": "string", "maxLength": 80, "pattern": "^[\\w\\-.]+$" }, "always_online": { "description": "Whether or not the bot user will always appear to be online.", "type": "boolean" } }, "required": ["display_name"], "additionalProperties": false }, "shortcuts": { "description": "Shortcuts configuration.", "type": "array", "items": { "type": "object", "properties": { "name": { "description": "The name of the shortcut.", "type": "string" }, "callback_id": { "description": "The callback_id of this shortcut.", "type": "string", "maxLength": 255 }, "description": { "description": "A short description of this shortcut.", "type": "string", "maxLength": 150 }, "type": { "description": "Specifies which type of shortcut is being described.", "type": "string", "enum": ["message", "global"] } }, "required": ["name", "callback_id", "description", "type"], "additionalProperties": false } }, "slash_commands": { "description": "Slash commands configuration.", "type": "array", "items": { "type": "object", "properties": { "command": { "description": "The actual slash command. Should include the leading / character", "type": "string", "maxLength": 32, "pattern": "^/.*$" }, "description": { "description": "A description of the slash command that will be displayed to users.", "type": "string", "maxLength": 2000 }, "should_escape": { "description": "Whether or not channels, users, and links typed with the slash command should be escaped.", "type": "boolean" }, "url": { "description": "The full https URL that acts as the slash command's request URL.", "type": "string" }, "usage_hint": { "description": "A short usage hint about the slash command for users.", "type": "string", "maxLength": 1000 } }, "required": ["command", "description"], "additionalProperties": false } }, "unfurl_domains": { "description": "Valid unfurl domains to register. Please consult the unfurl docs for a list of domain requirements.", "type": "array", "items": { "type": "string" }, "maxItems": 5 }, "workflow_steps": { "description": "Workflow steps configuration.", "type": "array", "items": { "type": "object", "properties": { "name": { "description": "The name of the workflow step.", "type": "string", "maxLength": 50 }, "callback_id": { "description": "The callback_id of the workflow step.", "type": "string", "maxLength": 50 } }, "required": ["name", "callback_id"], "additionalProperties": false }, "maxItems": 10 } }, "additionalProperties": false }, "oauth_config": { "description": "OAuth configuration for the app.\nhttps://api.slack.com/reference/manifests#oauth", "type": "object", "properties": { "redirect_urls": { "description": "OAuth redirect URLs.", "type": "array", "items": { "type": "string" }, "maxItems": 1000 }, "scopes": { "description": "Permission scopes configuration.", "type": "object", "properties": { "bot": { "description": "Bot scopes to request upon app installation.", "type": "array", "items": { "type": "string" }, "maxItems": 255 }, "user": { "description": "User scopes to request upon app installation.", "type": "array", "items": { "type": "string" }, "maxItems": 255 } }, "additionalProperties": false } }, "additionalProperties": false } }, "required": ["display_information"], "title": "Slack app manifest", "type": "object" }
slack-app-manifest
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": [ "string", "null" ] } }, "type": "object" }
kb_1113_Normalized
{ "properties": { "language": { "$default": { "$source": "argv", "index": 0 }, "description": "The language to be added", "type": "string" }, "languages": { "description": "Languages to be added (comma separated list like 'en,de,fr').", "type": "string" } }, "title": "addLanguage Schema", "type": "object" }
o58863
{ "properties": { "check_in_date": { "description": "The check-in date (YYYY-MM-DD)", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date (YYYY-MM-DD)", "format": "date", "type": "string" }, "location": { "description": "The location of the hotels", "type": "string" }, "num_rooms": { "description": "The number of rooms required", "type": "integer" } }, "required": [ "location", "check_in_date", "check_out_date", "num_rooms" ], "type": "object" }
search_hotels_3e243ce8
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The type of shape (circle, rectangle, triangle, etc.)", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_e7c0d888
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/article-block/1-0-1.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "css_class": { "type": "string", "pattern": "^[\\w\\s-]+$", "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pbj": { "type": "string", "rule": "single" } }, "updated_date": { "type": "string", "format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "type": "date-time", "rule": "single" } }, "aside": { "type": "boolean", "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "type": "boolean", "rule": "single" } }, "node_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "description": "An optional override for the title of the node.", "pbj": { "type": "string", "rule": "single" } }, "cta_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "link_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "show_image": { "type": "boolean", "default": true, "pbj": { "type": "boolean", "rule": "single" } }, "image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "An optional reference to an image asset to use as the poster.", "pbj": { "type": "identifier", "rule": "single" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82637
{ "title": "Invocation manifest for MRIQC: Automatic prediction of quality and visual reporting of MRI scans in BIDS format", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "config": { "type": "object", "properties": { "ants-float": { "default": false, "type": "boolean" }, "ants-nthreads": { "default": 1, "type": "integer" }, "ants-settings": { "type": "string" }, "correct-slice-timing": { "default": false, "type": "boolean" }, "deoblique": { "default": false, "type": "boolean" }, "despike": { "default": false, "type": "boolean" }, "dry-run": { "default": false, "type": "boolean" }, "email": { "type": "string" }, "fd_thres": { "default": 0.2, "type": "number" }, "fft-spikes-detector": { "default": false, "type": "boolean" }, "float32": { "default": false, "type": "boolean" }, "gear-abort-on-bids-error": { "default": false, "type": "boolean" }, "gear-log-level": { "default": "INFO", "type": "string", "enum": [ "ERROR", "WARNING", "INFO", "DEBUG" ] }, "gear-run-bids-validation": { "default": true, "type": "boolean" }, "gear-save-intermediate-work": { "default": false, "type": "boolean" }, "gear-zip-html": { "default": false, "type": "boolean" }, "hmc-afni": { "default": true, "type": "boolean" }, "hmc-fsl": { "default": false, "type": "boolean" }, "ica": { "default": false, "type": "boolean" }, "mem_gb": { "default": 0, "type": "integer" }, "modalities": { "enum": [ "", "T1w", "bold", "T2w", "T1w bold", "T1w T2w", "bold T2w" ], "type": "string" }, "n_procs": { "default": 1, "type": "integer" }, "no-sub": { "type": "boolean" }, "profile": { "default": false, "type": "boolean" }, "run-id": { "type": "string" }, "start-idx": { "type": "integer" }, "stop-idx": { "type": "integer" }, "task-id": { "type": "string" }, "verbose": { "default": "v", "enum": [ "", "v", "vv", "vvv" ], "type": "string" }, "verbose-reports": { "default": true, "type": "boolean" }, "webapi-port": { "type": "string" }, "webapi-url": { "type": "string" }, "write-graph": { "default": false, "type": "boolean" } }, "required": [ "ants-float", "ants-nthreads", "correct-slice-timing", "deoblique", "despike", "dry-run", "fd_thres", "fft-spikes-detector", "float32", "gear-abort-on-bids-error", "gear-log-level", "gear-run-bids-validation", "gear-save-intermediate-work", "gear-zip-html", "hmc-afni", "hmc-fsl", "ica", "mem_gb", "n_procs", "profile", "verbose", "verbose-reports", "write-graph" ] }, "inputs": { "type": "object", "properties": { "key": { "type": "object" } }, "required": [ "key" ] } }, "required": [ "config", "inputs" ] }
o41196
{ "description": "An applicant applies to a **program** at an **organization**.", "links": [ { "description": "List existing organizations for this **user identity**.", "href": "/api/v1/user_identities/:user_identity_id/organizations", "http_header": { "x-api-key": "0123456789abcdef0123456789abcdef" }, "method": "GET", "rel": "self", "title": "List" } ], "properties": { "href": { "description": "Hypertext reference to this resource.", "example": "/api/v1/user_identities/1/organizations", "pattern": "/api/v1/user_identities/\\d+/organizations", "type": "string" }, "organizations": { "items": { "properties": { "association_name": { "description": "Human-readable name of the association that this organization belongs to, or `null` if not applicable.", "example": "SOPHAS", "type": [ "string", "null" ] }, "cas3": { "description": "Whether or not this organization is using CAS3 (as opposed to the older CAS2, for example).", "example": true, "type": "boolean" }, "config_portal_identifier": { "description": "Organization identifier that is specific to Config Portal. May not be unique if `cas3` is `false`.", "example": "2235", "type": "string" }, "cycle_name": { "description": "Academic cycle of this organization, or `null` if not applicable.", "example": "2014 - 2015", "pattern": "^\\d{4} - \\d{4}$", "type": [ "string", "null" ] }, "id": { "description": "Unique identifier of this organization.", "example": 42023191739237, "type": "integer" }, "name": { "description": "Human-readable name of this organization.", "example": "Demo University School of Public Health", "type": "string" } }, "required": [ "id", "name", "cycle_name", "association_name", "cas3", "config_portal_identifier" ], "type": "object" }, "type": "array" } }, "stability": "production", "strictProperties": true, "title": "Organization", "type": "object" }
o9516
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "http://localhost:3000/schemas/token-introspect-response.json#", "properties": { "active": { "description": "If true the token is valid and active. If false the token is either invalid or has expired.", "type": "boolean" }, "aud": { "description": "Audience values for the token. Has the same semantics as the JWT claim name.", "items": { "type": "string" }, "type": "array" }, "client_id": { "description": "The identifier of the OAuth 2.0 client that requested the token. The Connect2id server will always set this value.", "type": "string" }, "dat": { "description": "Optional custom authorisation data.", "type": "object" }, "exp": { "description": "The token expiration time, as number of seconds since the Unix epoch (1970-01-01T0:0:0Z) as measured in UTC until the date/time. Has the same semantics as the JWT claim name. The Connect2id server will always set this value.", "type": "number" }, "expires_in": { "type": "number" }, "iat": { "description": "The token issue time, as number of seconds since the Unix epoch (1970-01-01T0:0:0Z) as measured in UTC until the date/time. Has the same semantics as the JWT claim name.", "type": "number" }, "iss": { "description": "The token issuer (the OpenID provider issuer identifier). Has the same semantics as the JWT claim name.", "type": "string" }, "jti": { "description": "Identifier for the token. Has the same semantics as the JWT claim name.", "type": "string" }, "nbf": { "description": "The token use-not-before time, as number of seconds since the Unix epoch (1970-01-01T0:0:0Z) as measured in UTC until the date/time. Has the same semantics as the JWT claim name.", "type": "number" }, "scope": { "description": "The scope values for the token. The Connect2id server will always set this value.", "type": "string" }, "sub": { "description": "The subject of the token. Typically the user identifier of the resource owner who authorised the token. Has the same semantics as the JWT claim name. The Connect2id server will always set this value.", "type": "string" }, "token_type": { "description": "Type of the token, set to Bearer. The Connect2id will always set this value.", "type": "string" }, "username": { "description": "Username of the resource owner who authorised the token.", "type": "string" } }, "required": [ "active" ], "title": "token introspect", "type": "object" }
o20484
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side": { "description": "The length of a side (for square)", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The shape - circle, square, triangle, or rectangle", "type": "string" } }, "required": [ "shape" ], "type": "object" }
calculate_area_8978b303
{ "properties": { "end_time": { "description": "The end time of the meeting in HH:MM format", "type": "string" }, "participants": { "description": "The participants of the meeting", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the meeting in HH:MM format", "type": "string" }, "title": { "description": "The title of the meeting", "type": "string" } }, "required": [ "title", "participants", "start_time", "end_time" ], "type": "object" }
schedule_meeting_e31f1e93
{ "properties": { "date_range": { "properties": { "end_date": { "description": "The end date of the news articles", "type": "string" }, "start_date": { "description": "The start date of the news articles", "type": "string" } }, "required": [ "start_date", "end_date" ], "type": "object" }, "keywords": { "description": "The keywords to search for in the news articles", "items": { "type": "string" }, "type": "array" }, "language": { "description": "The language of the news articles", "type": "string" } }, "required": [ "keywords" ], "type": "object" }
search_news_articles_c911df76
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" } }, "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": [ "string", "null" ] }, "type": [ "array", "null" ] }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": [ "string", "null" ] }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": [ "boolean", "null" ] }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": [ "string", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": [ "string", "null" ] } }, "required": [ "monitors" ], "type": "object" }
kb_63_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Twitter", "description": "Twitter is a sample application contract.", "generators": [ { "sql-definition": { "roleName": "twitter_db_role", "grants": [ "SELECT", "INSERT", "DELETE" ], "databaseName": "twitter_db", "schemaName": "account" } } ], "definitions": { "Config": { "type": "object", "title": "Config", "description": "Config represents the required options for this module to work", "definitions": {}, "properties": { "Postgres": { "type": "object", "title": "Postgres", "description": "Postgres holds the all credentials for postgres db connection.", "properties": { "Port": { "description": "The port number for postgres config", "type": "number", "format": "int64", "minimum": 1024 }, "Host": { "description": "Host holds the hostname for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "Username": { "description": "Username holds the username for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "Password": { "description": "Password holds the password for the postgres", "type": "string", "minLength": 4, "maxLength": 24 }, "DBName": { "description": "DBName holds the database name for the postgres", "type": "string", "minLength": 4, "maxLength": 24 } }, "definitions": {} } } }, "Profile": { "type": "object", "title": "Profile", "description": "Profile represents a registered Account's Public Info", "generators": [ { "sql-definition": { "grants": [ "SELECT", "INSERT", "DELETE" ], "primaryKey": [ "Id" ] } } ], "properties": { "Id": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 10 }, "ScreenName": { "description": "Full name associated with the profile. Maximum of 20 characters.", "type": "string", "minLength": 4, "maxLength": 20, "propertyOrder": 20 }, "URL": { "description": "URL associated with the profile. Will be prepended with “http://” if not present. Maximum of 100 characters.", "type": "string", "minLength": 0, "maxLength": 100, "propertyOrder": 30 }, "Location": { "description": "The city or country describing where the user of the account is located. The contents are not normalized or geocoded in any way. Maximum of 30 characters.", "type": "string", "minLength": 0, "maxLength": 30, "propertyOrder": 40 }, "Description": { "description": "A description of the user owning the account. Maximum of 160 characters.", "type": "string", "minLength": 0, "maxLength": 160, "propertyOrder": 50 }, "LinkColor": { "description": "Sets a hex value that controls the color scheme of links used on the authenticating user’s profile page on twitter.com. This must be a valid hexadecimal value, and may be either three or six characters (ex: F00 or FF0000).", "type": "string", "minLength": 0, "maxLength": 6, "default": "FF0000", "propertyOrder": 60 }, "AvatarURL": { "description": "URL of the Account's Avatar", "type": "string", "minLength": 0, "maxLength": 2000, "propertyOrder": 70 }, "CreatedAt": { "description": "Profile's creation time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 80 } }, "required": [ "ScreenName" ], "functions": { "One": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Create": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Update": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Delete": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } } } }, "Account": { "type": "object", "title": "Account", "description": "Account represents a registered User", "generators": [ { "sql-definition": { "grants": [ "SELECT", "INSERT", "DELETE" ], "primaryKey": [ "Id" ], "uniqueKeys": [ [ "Id" ], [ "URL" ] ], "foreignKeys": [ [ "ProfileId", "Account.Profile.Id" ] ] } } ], "properties": { "Id": { "description": "The unique identifier for a Account", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 10 }, "ProfileId": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 20 }, "Password": { "description": "Salted Password of the Account", "type": "string", "minLength": 6, "propertyOrder": 30 }, "URL": { "description": "Unique URL of the Account", "type": "string", "minLength": 6, "propertyOrder": 40 }, "PasswordStatusConstant": { "description": "Status of the Account's Password", "type": "string", "enum": [ "valid", "needsReset", "generated" ], "default": "valid", "propertyOrder": 50 }, "Salt": { "description": "Salt used to hash Password of the Account", "type": "string", "minLength": 0, "maxLength": 255, "propertyOrder": 60 }, "EmailAddress": { "description": "Email Address of the Account", "type": "string", "format": "email", "propertyOrder": 70 }, "EmailStatusConstant": { "description": "Status of the Account's Email", "type": "string", "enum": [ "verified", "notVerified" ], "default": "notVerified", "propertyOrder": 80 }, "StatusConstant": { "description": "Status of the Account", "type": "string", "enum": [ "registered", "unregistered", "needsManualVerification" ], "default": "registered", "propertyOrder": 90 }, "CreatedAt": { "description": "Profile's creation time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 100 } }, "required": [ "Password", "EmailAddress" ], "functions": { "One": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Create": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Update": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Delete": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } } } }, "Tweet": { "type": "object", "title": "Tweet", "description": "Tweet represents a post a user created", "generators": [ { "sql-definition": { "roleName": "twitter_db_role", "grants": [ "SELECT", "INSERT", "DELETE" ], "primaryKey": [ "Id" ], "uniqueKeys": [ [ "Id" ], [ "ProfileId", "Body" ] ], "databaseName": "twitter_db", "schemaName": "tweet" } } ], "properties": { "Id": { "description": "The unique identifier for a Tweet", "type": "number", "format": "int64", "propertyOrder": 10 }, "ProfileId": { "description": "The unique identifier for a Account's Profile", "type": "number", "format": "int64", "minimum": 1, "propertyOrder": 20 }, "Body": { "description": "Text of the Tweet", "type": "string", "minLength": 1, "propertyOrder": 30 }, "Location": { "description": "Location of the Tweet's origin", "type": "string", "propertyOrder": 40 }, "RetweetCount": { "description": "Aggregated Count for re-tweets of a tweet", "type": "number", "format": "int32", "propertyOrder": 50 }, "FavouritesCount": { "description": "Aggregated Count for favourites of a tweet", "type": "number", "format": "int32", "propertyOrder": 60 }, "PossiblySensitive": { "description": "Mark tweet if it is possibly sensitive", "type": "boolean", "default": false, "propertyOrder": 70 }, "CreatedAt": { "description": "Tweet's creation time", "type": "string", "format": "date-time", "default": "now()", "propertyOrder": 80 } }, "required": [ "Body", "ProfileId" ], "functions": { "One": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Create": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } }, "Delete": { "type": "object", "title": "One", "properties": { "incoming": { "$ref": "#/definitions/Account" }, "outgoing": { "$ref": "#/definitions/Account" } } } } } }, "properties": { "Config": { "$ref": "#/definitions/Config" }, "Profile": { "$ref": "#/definitions/Profile" }, "Account": { "$ref": "#/definitions/Account" }, "Tweet": { "$ref": "#/definitions/Tweet" } }, "required": [ "Config", "Profile", "Account", "Tweet" ] }
o17984
{ "properties": { "latitude1": { "description": "The latitude of the first coordinate", "type": "number" }, "latitude2": { "description": "The latitude of the second coordinate", "type": "number" }, "longitude1": { "description": "The longitude of the first coordinate", "type": "number" }, "longitude2": { "description": "The longitude of the second coordinate", "type": "number" } }, "required": [ "latitude1", "longitude1", "latitude2", "longitude2" ], "type": "object" }
calculate_distance_97630804
{ "$comment": "https://minecraft.fandom.com/wiki/Item_modifier#JSON_structure", "$id": "https://json.schemastore.org/minecraft-item-modifier.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "slotEnum": { "enum": ["mainhand", "offhand", "feet", "legs", "chest", "head"] }, "numberProvider": { "$comment": "https://minecraft.fandom.com/wiki/Loot_table#Number_Providers", "properties": { "type": { "title": "Type", "description": "The number provider type.", "type": "string", "enum": [ "minecraft:constant", "minecraft:uniform", "minecraft:binomial", "minecraft:score" ] } }, "allOf": [ { "if": { "properties": { "type": { "const": "minecraft:constant" } } }, "then": { "description": "A constant value.", "properties": { "value": { "title": "Value", "description": "The exact value.", "type": "number" } } } }, { "if": { "properties": { "type": { "const": "minecraft:uniform" } } }, "then": { "description": "A random number following a uniform distribution between two values (inclusive).", "properties": { "min": { "title": "Minimum", "description": "The minimum value.", "type": ["number", "object"], "$ref": "#/definitions/numberProvider" }, "max": { "title": "Max", "description": "The maximum value.", "type": ["number", "object"], "$ref": "#/definitions/numberProvider" } } } }, { "if": { "properties": { "type": { "const": "minecraft:binomial" } } }, "then": { "description": "A random number following a binomial distribution.", "properties": { "n": { "title": "n", "description": "The amount of trials.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" }, "p": { "title": "p", "description": "The probability of success on an individual trial.", "$ref": "#/definitions/numberProvider" } } } }, { "if": { "properties": { "type": { "const": "minecraft:score" } } }, "then": { "description": "A scoreboard value.", "properties": { "target": { "title": "Target", "description": "Scoreboard name provider.", "type": ["string", "object"], "enum": ["this", "killer", "direct_killer", "player_killer"], "properties": { "type": { "title": "Type", "description": "Resource location.", "type": "string", "enum": ["fixed", "context"] } }, "allOf": [ { "if": { "properties": { "type": { "const": "fixed" } } }, "then": { "properties": { "name": { "title": "Name", "description": "A UUID or player name.", "type": "string" } } } }, { "if": { "properties": { "type": { "const": "context" } } }, "then": { "properties": { "target": { "title": "Target", "type": "string", "enum": [ "this", "killer", "direct_killer", "player_killer" ] } } } } ] }, "score": { "title": "Score", "description": "The scoreboard objective.", "type": "string" }, "scale": { "title": "Scale", "description": "Scale to multiply the score before returning it.", "type": "number" } } } } ] } }, "description": "Configuration file defining an item modifier for a data pack for Minecraft.", "items": { "properties": { "function": { "title": "Function", "description": "Namespaced ID of the function to apply.", "type": "string", "enum": [ "minecraft:apply_bonus", "minecraft:copy_name", "minecraft:copy_nbt", "minecraft:copy_state", "minecraft:enchant_randomly", "minecraft:enchant_with_levels", "minecraft:exploration_map", "minecraft:explosion_decay", "minecraft:furnace_smelt", "minecraft:fill_player_head", "minecraft:limit_count", "minecraft:looting_enchant", "minecraft:set_attributes", "minecraft:set_banner_pattern", "minecraft:set_contents", "minecraft:set_count", "minecraft:set_damage", "minecraft:set_enchantments", "minecraft:set_loot_table", "minecraft:set_lore", "minecraft:set_name", "minecraft:set_nbt", "minecraft:set_stew_effect" ] } }, "allOf": [ { "if": { "properties": { "function": { "const": "minecraft:apply_bonus" } } }, "then": { "description": "Applies a predefined bonus formula.", "type": "object", "properties": { "enchantment": { "title": "Enchantment", "description": "Enchantment ID used for level calculation.", "type": "string" }, "formula": { "title": "Forumla", "type": "string", "enum": [ "binomial_with_bonus_count", "uniform_bonus_count", "ore_drops" ] }, "parameters": { "title": "Parameters", "description": "Values required for the formula.", "type": "object", "properties": { "extra": { "title": "Extra", "description": "For formula 'binomial_with_bonus_count', the extra value.", "type": "integer" }, "probability": { "title": "Probability", "description": "For formula 'binomial_with_bonus_count', the probability.", "type": "number" }, "bonusMultiplier": { "title": "Bonus Multiplier", "description": "For formula 'uniform_bonus_count', the bonus multiplier.", "type": "number" } } } } } }, { "if": { "properties": { "function": { "const": "minecraft:copy_name" } } }, "then": { "description": "For loot table type 'block', copies a block entity's CustomName tag into the item's display.", "type": "object", "properties": { "source": { "title": "Source", "type": "string", "enum": ["block_entity"], "default": "block_entity" } } } }, { "if": { "properties": { "function": { "const": "minecraft:copy_nbt" } } }, "then": { "description": "Copies NBT to the item.", "type": "object", "properties": { "source": { "title": "Source", "anyOf": [ { "type": "string", "enum": ["block_entity", "this", "killer", "killer_player"] }, { "type": "string" }, { "type": "object", "properties": { "type": { "title": "Type", "description": "NBT provider type.", "type": "string", "enum": ["minecraft:context", "minecraft:storage"] } }, "allOf": [ { "if": { "properties": { "type": { "const": "minecraft:context" } } }, "then": { "properties": { "target": { "title": "Target", "description": "Same as source above.", "type": "string" } } } }, { "if": { "properties": { "type": { "const": "minecraft:storage" } } }, "then": { "properties": { "target": { "title": "Source", "description": "A resource location specifying the storage ID.", "type": "string" } } } } ] } ] }, "ops": { "title": "Operations", "description": "A list of copy operations.", "type": "array", "items": { "type": "object", "properties": { "source": { "title": "Source", "description": "The NBT path to copy from.", "type": "string" }, "target": { "title": "Target", "description": "The NBT path to copy to, starting from the item's tag tag.", "type": "string" }, "op": { "title": "Operation", "description": "Can be replace to replace any existing contents of the target, append to append to a list, or merge to merge into a compound tag.", "type": "string" } } } } } } }, { "if": { "properties": { "function": { "const": "minecraft:copy_state" } } }, "then": { "description": "Copies state properties from dropped block to the item's BlockStateTag tag.", "properties": { "block": { "title": "Block", "description": "A block ID. Function fails if the block doesn't match.", "type": "string" }, "properties": { "title": "Properties", "description": "A list of property names to copy.", "type": "array", "items": { "title": "Property", "description": "A block state name to copy.", "type": "string" } } } } }, { "if": { "properties": { "function": { "const": "minecraft:enchant_randomly" } } }, "then": { "description": "Enchants the item with one randomly-selected enchantment. The level of the enchantment, if applicable, is random.", "properties": { "enchantments": { "title": "Enchantments", "description": "List of enchantment IDs to choose from.", "type": "array" } } } }, { "if": { "properties": { "function": { "const": "minecraft:enchant_with_levels" } } }, "then": { "description": "Enchants the item, with the specified enchantment level (roughly equivalent to using an enchantment table at that level).", "properties": { "treasure": { "title": "Treasure", "description": "Determines whether treasure enchantments are allowed on this item.", "type": "boolean" }, "levels": { "title": "Levels", "description": "Specifies the exact enchantment level to use.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" } } } }, { "if": { "properties": { "function": { "const": "minecraft:exploration_map" } } }, "then": { "description": "Converts an empty map into an explorer map leading to a nearby generated structure.", "properties": { "destination": { "title": "Destination", "description": "The type of generated structure to locate. Accepts any of the StructureTypes used by the /locate command (case insensitive).", "type": "string" }, "decoration": { "title": "Decoration", "description": "The icon used to mark the destination on the map. Accepts any of the map icon text IDs (case insensitive).", "type": "string" }, "zoom": { "title": "Zoom", "description": "The zoom level of the resulting map.", "type": "integer", "default": 2 }, "search_radius": { "title": "Search Radius", "description": "The size, in chunks, of the area to search for structures. The area checked is square, not circular.", "type": "integer", "default": 50 }, "skip_existing_chunks": { "title": "Skip Existing Chunks", "description": "Don't search in chunks that have already been generated.", "type": "boolean", "default": true } } } }, { "if": { "properties": { "function": { "const": "minecraft:explosion_decay" } } }, "then": { "description": "For loot tables of type 'block', removes some items from a stack, if there was an explosion. Each item has a chance of 1/explosion radius to be lost." } }, { "if": { "properties": { "function": { "const": "minecraft:furnace_smelt" } } }, "then": { "description": "Smelts the item as it would be in a furnace. Used in combination with the entity_properties condition to cook food from animals on death." } }, { "if": { "properties": { "function": { "const": "minecraft:fill_player_head" } } }, "then": { "description": "Adds required item tags of a player head.", "properties": { "entity": { "title": "Entity", "description": "Specifies an entity to be used for the player head.", "type": "string" } } } }, { "if": { "properties": { "function": { "const": "minecraft:limit_count" } } }, "then": { "description": "Limits the count of every item stack.", "properties": { "limit": { "title": "Limit", "description": "Specifies the exact limit to use.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider", "properties": { "min": { "title": "Minimum", "description": "Minimum limit to use.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" }, "max": { "title": "Max", "description": "Max limit to use.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" } } } } } }, { "if": { "properties": { "function": { "const": "minecraft:looting_enchant" } } }, "then": { "description": "Adjusts the stack size based on the level of the Looting enchantment on the killer entity.", "properties": { "count": { "title": "Count", "description": "Specifies the number of additional items per level of looting.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" }, "limit": { "title": "Limit", "description": "Specifies the maximum amount of items in the stack after the looting calculation. If the value is 0, no limit is applied.", "type": "integer" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_attributes" } } }, "then": { "description": "Add attribute modifiers to the item.", "properties": { "modifiers": { "title": "Modifiers", "type": "array", "items": { "type": "object", "additionalProperties": { "properties": { "name": { "title": "Name", "description": "Name of the modifer.", "type": "string" }, "attribute": { "title": "Attribute", "description": "The name of the attribute this modifer is to act upon.", "type": "string" }, "operation": { "title": "Operation", "type": "string", "enum": ["addition", "multiply_base", "multiply_total"] }, "amount": { "title": "Amount", "description": "Specifies the amount of the modifier.", "type": ["number", "object"], "$ref": "#/definitions/numberProvider" }, "id": { "title": "ID", "description": "UUID of the modifier following.", "type": "string" }, "slot": { "title": "Slot", "description": "Slots the item must be in for the modifier to take effect.", "type": ["string", "array"], "$ref": "#/definitions/slotEnum", "items": { "type": "string", "$ref": "#/definitions/slotEnum" } } } } } } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_banner_pattern" } } }, "then": { "description": "Sets tags needed for banner patterns.", "properties": { "patterns": { "title": "Patterns", "description": "List of patterns.", "type": "array", "items": { "type": "object", "additionalProperties": { "type": "object", "properties": { "pattern": { "title": "Pattern", "description": "The pattern type.", "type": "string" }, "color": { "title": "Color", "description": "The color for this pattern.", "type": "string", "enum": [ "white", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", "light_gray", "cyan", "purple", "blue", "brown", "green", "red", "black" ] } } } } }, "append": { "title": "Append", "description": "If true, new patterns will be appended to existing ones.", "type": "boolean" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_contents" } } }, "then": { "description": "For loot tables of type 'block', sets the contents of a container block item to a list of entries.", "properties": { "entries": { "title": "Entries", "description": "The entries to use as contents.", "type": "array" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_count" } } }, "then": { "description": "Sets the stack size.", "properties": { "count": { "title": "Count", "description": "Specifies the stack size to set.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" }, "add": { "title": "Add", "description": "If true, change will be relative to the current count.", "type": "boolean" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_damage" } } }, "then": { "description": "Sets the item's damage value (durability) for tools.", "properties": { "damage": { "title": "Damage", "description": "Specifies the damage fraction to set (1.0 is undamaged, 0.0 is zero durability left).", "type": ["number", "object"], "$ref": "#/definitions/numberProvider" }, "add": { "title": "Add", "description": "If true, change will be relative to current damage.", "type": "boolean" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_enchantments" } } }, "then": { "description": "Sets the item's enchantments.", "properties": { "enchantments": { "title": "Enchantments", "description": "Enchantments to add.", "type": "object", "additionalProperties": { "description": "Key name is the enchantment ID.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" } }, "add": { "title": "Add", "description": "If true, change will be relative to current level.", "type": "boolean" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_loot_table" } } }, "then": { "description": "Sets the loot table for a container (chest etc.).", "properties": { "name": { "title": "Name", "description": "Specifies the resource location of the loot table to be used.", "type": "string" }, "seed": { "title": "Seed", "description": "Specifies the loot table seed. If absent or set to 0, a random seed will be used.", "type": "integer" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_lore" } } }, "then": { "description": "Adds lore to the item.", "properties": { "lore": { "title": "Lore", "description": "List of JSON text components. Each list entry represents one line of the lore. Advanced components are resolved only if entity successfully targets an entity.", "type": "array", "items": { "type": "object" } }, "entity": { "title": "Entity", "description": "Specifies the entity to act as the source @s in the JSON text component.", "type": "string" }, "replace": { "title": "Replace", "description": "If true, replaces all existing lines of lore, if false appends the list.", "type": "boolean" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_name" } } }, "then": { "description": "Adds display name of the item.", "properties": { "name": { "title": "Name", "description": "A JSON text component name, allowing color, translations, etc. Advanced components are resolved only if entity successfully targets an entity.", "type": ["array", "object", "string"] }, "entity": { "title": "Entity", "description": "Specifies an entity to act as source @s in the JSON text component.", "type": "string" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_nbt" } } }, "then": { "description": "Adds NBT data to the item.", "properties": { "tag": { "title": "Tag", "description": "Tag string to add, similar to those used by commands. Note that the first bracket is required and quotation marks need to be escaped using a backslash (\\).", "type": "string" } } } }, { "if": { "properties": { "function": { "const": "minecraft:set_stew_effect" } } }, "then": { "description": "Sets the status effects for suspicious stew.", "properties": { "effects": { "title": "Effects", "description": "The effects to apply.", "type": "array", "items": { "type": "object", "additionalProperties": { "type": "object", "properties": { "type": { "title": "Type", "description": "The effect ID.", "type": "string" }, "duration": { "title": "Duration", "description": "The duration of the effect.", "type": ["integer", "object"], "$ref": "#/definitions/numberProvider" } } } } } } } } ] }, "title": "Minecraft Data Pack Item Modifier", "type": "array" }
minecraft-item-modifier
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The type of shape (e.g., square, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_5847a410
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/traits/trait_block_properties.json", "title": "Block properties", "description": "Block properties for style formatting content elements", "type": "object", "properties": { "dropcap": { "title": "Dropcap", "description": "Style the first letter of the first word with a dropcap", "type": "string", "enum": [ "letter" ] } } }
o85906
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Organization", "type": "object", "properties": { "type": { "type": "string", "enum": [ "organization" ] }, "division_id": { "type": "string", "pattern": "^ocd-division/country:[a-z]{2}$" }, "gid": { "type": "integer" }, "row": { "type": "integer" }, "id": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "parents": { "type": "array", "items": { "type": "object", "properties": { "id": { "$ref": "#/definitions/complex_string" }, "date_first_cited": { "$ref": "#/definitions/complex_date" }, "date_last_cited": { "$ref": "#/definitions/complex_date" }, "classification": { "type": "object", "properties": { "value": { "type": "string", "enum": [ "Administrative", "Command", "Informal", "Organization/Administrative" ] }, "sources": { "$ref": "#/definitions/sources" }, "confidence": { "$ref": "#/definitions/confidence" } }, "additionalProperties": false, "required": [ "value" ] } }, "additionalProperties": false, "required": [ "id" ] } }, "name": { "$ref": "#/definitions/complex_string" }, "root_name": { "$ref": "#/definitions/simple_string" }, "other_names": { "$ref": "#/definitions/complex_string_array" }, "classification": { "$ref": "#/definitions/complex_string_array" }, "sites": { "type": "array", "items": { "type": "object", "properties": { "id": { "$ref": "#/definitions/complex_string" }, "date_first_cited": { "$ref": "#/definitions/complex_date" }, "date_last_cited": { "$ref": "#/definitions/complex_date" } }, "additionalProperties": false, "required": [ "id" ] } }, "areas": { "type": "array", "items": { "type": "object", "properties": { "id": { "$ref": "#/definitions/complex_string" }, "date_first_cited": { "$ref": "#/definitions/complex_date" }, "date_last_cited": { "$ref": "#/definitions/complex_date" }, "open_ended": { "type": "object", "properties": { "value": { "type": "boolean" } }, "additionalProperties": false, "required": [ "value" ] } }, "additionalProperties": false, "required": [ "id" ] } }, "memberships": { "type": "array", "items": { "type": "object", "properties": { "organization_id": { "$ref": "#/definitions/complex_string" }, "date_first_cited": { "$ref": "#/definitions/complex_date" }, "date_last_cited": { "$ref": "#/definitions/complex_date" } }, "additionalProperties": false, "required": [ "organization_id" ] } }, "notes": { "$ref": "#/definitions/simple_string" } }, "additionalProperties": false, "required": [ "type", "division_id", "gid", "row", "id", "name" ], "definitions": { "simple_string": { "type": "object", "properties": { "value": { "type": "string" } }, "additionalProperties": false, "required": [ "value" ] }, "complex_date": { "type": "object", "properties": { "value": { "type": "string", "pattern": "^[0-9]{4}(-[0-9]{2}){0,2}$" }, "sources": { "$ref": "#/definitions/sources" }, "confidence": { "$ref": "#/definitions/confidence" } }, "additionalProperties": false, "required": [ "value" ] }, "complex_string": { "type": "object", "properties": { "value": { "type": "string" }, "sources": { "$ref": "#/definitions/sources" }, "confidence": { "$ref": "#/definitions/confidence" } }, "additionalProperties": false, "required": [ "value" ] }, "complex_string_array": { "type": "object", "properties": { "value": { "type": "array", "items": { "type": "string" } }, "sources": { "$ref": "#/definitions/sources" }, "confidence": { "$ref": "#/definitions/confidence" } }, "additionalProperties": false, "required": [ "value" ] }, "confidence": { "type": "string", "enum": [ "Low", "Medium", "High" ] }, "sources": { "type": "array", "items": { "type": "string" } } } }
o74445
{ "properties": { "keywords": { "description": "The keywords to search for", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location to search within", "type": "string" }, "salary_range": { "properties": { "max": { "description": "The maximum salary", "type": "number" }, "min": { "description": "The minimum salary", "type": "number" } }, "required": [ "min", "max" ], "type": "object" } }, "required": [ "keywords" ], "type": "object" }
search_jobs_ece2422b
{ "additionalProperties": true, "description": "Schema for an Optimizely experiment context (http://developers.optimizely.com/javascript/reference/#experiments)", "properties": { "code": { "type": [ "string", "null" ] }, "conditional": { "type": [ "boolean", "null" ] }, "id": { "type": [ "string", "null" ] }, "manual": { "type": [ "boolean", "null" ] }, "name": { "type": [ "string", "null" ] }, "variationIds": { "items": { "type": [ "string", "null" ] }, "type": "array" } }, "self": { "format": "jsonschema", "name": "experiment", "vendor": "com.optimizely", "version": "1-0-0" }, "type": "object" }
sp_154_Normalized
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius" ], "type": "object" }, "shape": { "description": "The geometric shape (circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_6d68167d
{ "additionalProperties": false, "description": "Zone", "properties": { "zone": { "additionalProperties": false, "oneOf": [ { "description": "Primary zone", "properties": { "masters": { "maxItems": 0, "type": [ "null", "array" ] }, "type": { "enum": [ "PRIMARY" ], "type": "string" } }, "required": [ "email" ] }, { "description": "Secondary zone", "properties": { "masters": { "description": "Masters for this Zone", "items": { "format": "ipandport", "type": "string" }, "minItems": 1, "type": "array", "_uniqueItems": true }, "type": { "enum": [ "SECONDARY" ], "type": "string" } }, "required": [ "type", "masters" ] } ], "properties": { "action": { "description": "Zone Action", "enum": [ "CREATE", "DELETE", "UPDATE", "NONE" ], "readOnly": true, "type": "string" }, "created_at": { "description": "Date and time of Zone creation", "format": "date-time", "readOnly": true, "type": "string" }, "description": { "description": "Description for the zone", "maxLength": 160, "type": [ "string", "null" ] }, "email": { "description": "Hostmaster email address", "format": "email", "maxLength": 255, "type": "string" }, "id": { "description": "Zone identifier", "format": "uuid", "readOnly": true, "type": "string" }, "links": { "additionalProperties": false, "properties": { "self": { "format": "url", "type": "string" } }, "type": "object" }, "masters": { "description": "Masters for this Zone", "items": { "type": "string" }, "type": [ "array", "null" ], "_uniqueItems": true }, "name": { "description": "Zone name", "format": "domainname", "immutable": true, "maxLength": 255, "type": "string" }, "pool_id": { "description": "Pool identifier", "format": "uuid", "immutable": true, "type": "string" }, "project_id": { "description": "Project identifier", "immutable": true, "maxLength": 36, "type": [ "string", "null" ] }, "serial": { "description": "Zone serial number", "maximum": 4294967295, "minimum": 0, "readOnly": true, "type": "integer" }, "status": { "description": "Zone Status", "enum": [ "ACTIVE", "PENDING", "ERROR" ], "readOnly": true, "type": "string" }, "transferred_at": { "description": "Date and time of last successful transfer", "format": "date-time", "readOnly": true, "type": [ "string", "null" ] }, "ttl": { "description": "Default time to live", "maximum": 2147483647, "minimum": 0, "type": "integer" }, "type": { "description": "Zone Type", "enum": [ "PRIMARY", "SECONDARY" ], "type": "string" }, "updated_at": { "description": "Date and time of last zone modification", "format": "date-time", "readOnly": true, "type": [ "string", "null" ] }, "version": { "description": "Zone version number", "readOnly": true, "type": "integer" } }, "required": [ "name" ], "type": "object" } }, "required": [ "zone" ], "title": "zone" }
o55361
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "description": "get crawl result response", "properties": { "id": { "minLength": 1, "type": "string" }, "links": { "properties": { "self": { "properties": { "href": { "_format": "uri", "type": "string" } }, "required": [ "href" ], "type": "object" } }, "required": [ "self" ], "type": "object" }, "results": { "additionalProperties": true, "properties": {}, "type": "object" } }, "required": [ "id", "results", "links" ], "title": "get crawl result response", "type": "object" }
o76471
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "stringOrStringArray": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "rule": { "oneOf": [ { "description": "ESLint rule\n\n0 - turns the rule off\n1 - turn the rule on as a warning (doesn't affect exit code)\n2 - turn the rule on as an error (exit code is 1 when triggered)\n", "type": "integer", "minimum": 0, "maximum": 2 }, { "description": "ESLint rule\n\n\"off\" - turns the rule off\n\"warn\" - turn the rule on as a warning (doesn't affect exit code)\n\"error\" - turn the rule on as an error (exit code is 1 when triggered)\n", "type": "string", "enum": ["off", "warn", "error"] }, { "type": "array" } ] }, "possibleErrors": { "type": "object", "properties": { "comma-dangle": { "$ref": "#/definitions/rule", "description": "Require or disallow trailing commas" }, "for-direction": { "$ref": "#/definitions/rule", "description": "Enforce \"for\" loop update clause moving the counter in the right direction" }, "getter-return": { "$ref": "#/definitions/rule", "description": "Enforce return statements in getters" }, "no-await-in-loop": { "$ref": "#/definitions/rule", "description": "Disallow await inside of loops" }, "no-compare-neg-zero": { "$ref": "#/definitions/rule", "description": "Disallow comparing against -0" }, "no-cond-assign": { "$ref": "#/definitions/rule", "description": "Disallow assignment operators in conditional expressions" }, "no-console": { "$ref": "#/definitions/rule", "description": "Disallow the use of console" }, "no-constant-condition": { "$ref": "#/definitions/rule", "description": "Disallow constant expressions in conditions" }, "no-control-regex": { "$ref": "#/definitions/rule", "description": "Disallow control characters in regular expressions" }, "no-debugger": { "$ref": "#/definitions/rule", "description": "Disallow the use of debugger" }, "no-dupe-args": { "$ref": "#/definitions/rule", "description": "Disallow duplicate arguments in function definitions" }, "no-dupe-keys": { "$ref": "#/definitions/rule", "description": "Disallow duplicate keys in object literals" }, "no-duplicate-case": { "$ref": "#/definitions/rule", "description": "Disallow duplicate case labels" }, "no-empty": { "$ref": "#/definitions/rule", "description": "Disallow empty block statements" }, "no-empty-character-class": { "$ref": "#/definitions/rule", "description": "Disallow empty character classes in regular expressions" }, "no-ex-assign": { "$ref": "#/definitions/rule", "description": "Disallow reassigning exceptions in catch clauses" }, "no-extra-boolean-cast": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary boolean casts" }, "no-extra-parens": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary parentheses" }, "no-extra-semi": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary semicolons" }, "no-func-assign": { "$ref": "#/definitions/rule", "description": "Disallow reassigning function declarations" }, "no-inner-declarations": { "$ref": "#/definitions/rule", "description": "Disallow function or var declarations in nested blocks" }, "no-invalid-regexp": { "$ref": "#/definitions/rule", "description": "Disallow invalid regular expression strings in RegExp constructors" }, "no-irregular-whitespace": { "$ref": "#/definitions/rule", "description": "Disallow irregular whitespace outside of strings and comments" }, "no-negated-in-lhs": { "$ref": "#/definitions/rule", "description": "Disallow negating the left operand in in expressions (deprecated)" }, "no-obj-calls": { "$ref": "#/definitions/rule", "description": "Disallow calling global object properties as functions" }, "no-prototype-builtins": { "$ref": "#/definitions/rule", "description": "Disallow calling some Object.prototype methods directly on objects" }, "no-regex-spaces": { "$ref": "#/definitions/rule", "description": "Disallow multiple spaces in regular expressions" }, "no-sparse-arrays": { "$ref": "#/definitions/rule", "description": "Disallow sparse arrays" }, "no-template-curly-in-string": { "$ref": "#/definitions/rule", "description": "Disallow template literal placeholder syntax in regular strings" }, "no-unexpected-multiline": { "$ref": "#/definitions/rule", "description": "Disallow confusing multiline expressions" }, "no-unreachable": { "$ref": "#/definitions/rule", "description": "Disallow unreachable code after return, throw, continue, and break statements" }, "no-unsafe-finally": { "$ref": "#/definitions/rule", "description": "Disallow control flow statements in finally blocks" }, "no-unsafe-negation": { "$ref": "#/definitions/rule", "description": "Disallow negating the left operand of relational operators" }, "use-isnan": { "$ref": "#/definitions/rule", "description": "Require calls to isNaN() when checking for NaN" }, "valid-jsdoc": { "$ref": "#/definitions/rule", "description": "Enforce valid JSDoc comments" }, "valid-typeof": { "$ref": "#/definitions/rule", "description": "Enforce comparing typeof expressions against valid strings" } } }, "bestPractices": { "type": "object", "properties": { "accessor-pairs": { "$ref": "#/definitions/rule", "description": "Enforce getter and setter pairs in objects" }, "array-callback-return": { "$ref": "#/definitions/rule", "description": "Enforce return statements in callbacks of array methods" }, "block-scoped-var": { "$ref": "#/definitions/rule", "description": "Enforce the use of variables within the scope they are defined" }, "class-methods-use-this": { "$ref": "#/definitions/rule", "description": "Enforce that class methods utilize this" }, "complexity": { "$ref": "#/definitions/rule", "description": "Enforce a maximum cyclomatic complexity allowed in a program" }, "consistent-return": { "$ref": "#/definitions/rule", "description": "Require return statements to either always or never specify values" }, "curly": { "$ref": "#/definitions/rule", "description": "Enforce consistent brace style for all control statements" }, "default-case": { "$ref": "#/definitions/rule", "description": "Require default cases in switch statements" }, "dot-location": { "$ref": "#/definitions/rule", "description": "Enforce consistent newlines before and after dots" }, "dot-notation": { "$ref": "#/definitions/rule", "description": "Enforce dot notation whenever possible" }, "eqeqeq": { "$ref": "#/definitions/rule", "description": "Require the use of === and !==" }, "guard-for-in": { "$ref": "#/definitions/rule", "description": "Require for-in loops to include an if statement" }, "no-alert": { "$ref": "#/definitions/rule", "description": "Disallow the use of alert, confirm, and prompt" }, "no-caller": { "$ref": "#/definitions/rule", "description": "Disallow the use of arguments.caller or arguments.callee" }, "no-case-declarations": { "$ref": "#/definitions/rule", "description": "Disallow lexical declarations in case clauses" }, "no-div-regex": { "$ref": "#/definitions/rule", "description": "Disallow division operators explicitly at the beginning of regular expressions" }, "no-else-return": { "$ref": "#/definitions/rule", "description": "Disallow else blocks after return statements in if statements" }, "no-empty-function": { "$ref": "#/definitions/rule", "description": "Disallow empty functions" }, "no-empty-pattern": { "$ref": "#/definitions/rule", "description": "Disallow empty destructuring patterns" }, "no-eq-null": { "$ref": "#/definitions/rule", "description": "Disallow null comparisons without type-checking operators" }, "no-eval": { "$ref": "#/definitions/rule", "description": "Disallow the use of eval()" }, "no-extend-native": { "$ref": "#/definitions/rule", "description": "Disallow extending native types" }, "no-extra-bind": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary calls to .bind()" }, "no-extra-label": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary labels" }, "no-fallthrough": { "$ref": "#/definitions/rule", "description": "Disallow fallthrough of case statements" }, "no-floating-decimal": { "$ref": "#/definitions/rule", "description": "Disallow leading or trailing decimal points in numeric literals" }, "no-global-assign": { "$ref": "#/definitions/rule", "description": "Disallow assignments to native objects or read-only global variables" }, "no-implicit-coercion": { "$ref": "#/definitions/rule", "description": "Disallow shorthand type conversions" }, "no-implicit-globals": { "$ref": "#/definitions/rule", "description": "Disallow var and named function declarations in the global scope" }, "no-implied-eval": { "$ref": "#/definitions/rule", "description": "Disallow the use of eval()-like methods" }, "no-invalid-this": { "$ref": "#/definitions/rule", "description": "Disallow this keywords outside of classes or class-like objects" }, "no-iterator": { "$ref": "#/definitions/rule", "description": "Disallow the use of the __iterator__ property" }, "no-labels": { "$ref": "#/definitions/rule", "description": "Disallow labeled statements" }, "no-lone-blocks": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary nested blocks" }, "no-loop-func": { "$ref": "#/definitions/rule", "description": "Disallow function declarations and expressions inside loop statements" }, "no-magic-numbers": { "$ref": "#/definitions/rule", "description": "Disallow magic numbers" }, "no-multi-spaces": { "$ref": "#/definitions/rule", "description": "Disallow multiple spaces" }, "no-multi-str": { "$ref": "#/definitions/rule", "description": "Disallow multiline strings" }, "no-native-reassign": { "$ref": "#/definitions/rule" }, "no-new": { "$ref": "#/definitions/rule", "description": "Disallow new operators outside of assignments or comparisons" }, "no-new-func": { "$ref": "#/definitions/rule", "description": "Disallow new operators with the Function object" }, "no-new-wrappers": { "$ref": "#/definitions/rule", "description": "Disallow new operators with the String, Number, and Boolean objects" }, "no-octal": { "$ref": "#/definitions/rule", "description": "Disallow octal literals" }, "no-octal-escape": { "$ref": "#/definitions/rule", "description": "Disallow octal escape sequences in string literals" }, "no-param-reassign": { "$ref": "#/definitions/rule", "description": "Disallow reassigning function parameters" }, "no-proto": { "$ref": "#/definitions/rule", "description": "Disallow the use of the __proto__ property" }, "no-redeclare": { "$ref": "#/definitions/rule", "description": "Disallow var redeclaration" }, "no-restricted-properties": { "$ref": "#/definitions/rule", "description": "Disallow certain properties on certain objects" }, "no-return-assign": { "$ref": "#/definitions/rule", "description": "Disallow assignment operators in return statements" }, "no-return-await": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary return await" }, "no-script-url": { "$ref": "#/definitions/rule", "description": "Disallow javascript: urls" }, "no-self-assign": { "$ref": "#/definitions/rule", "description": "Disallow assignments where both sides are exactly the same" }, "no-self-compare": { "$ref": "#/definitions/rule", "description": "Disallow comparisons where both sides are exactly the same" }, "no-sequences": { "$ref": "#/definitions/rule", "description": "Disallow comma operators" }, "no-throw-literal": { "$ref": "#/definitions/rule", "description": "Disallow throwing literals as exceptions" }, "no-unmodified-loop-condition": { "$ref": "#/definitions/rule", "description": "Disallow unmodified loop conditions" }, "no-unused-expressions": { "$ref": "#/definitions/rule", "description": "Disallow unused expressions" }, "no-unused-labels": { "$ref": "#/definitions/rule", "description": "Disallow unused labels" }, "no-useless-call": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary calls to .call() and .apply()" }, "no-useless-concat": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary concatenation of literals or template literals" }, "no-useless-escape": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary escape characters" }, "no-useless-return": { "$ref": "#/definitions/rule", "description": "Disallow redundant return statements" }, "no-void": { "$ref": "#/definitions/rule", "description": "Disallow void operators" }, "no-warning-comments": { "$ref": "#/definitions/rule", "description": "Disallow specified warning terms in comments" }, "no-with": { "$ref": "#/definitions/rule", "description": "Disallow with statements" }, "prefer-promise-reject-errors": { "$ref": "#/definitions/rule", "description": "Require using Error objects as Promise rejection reasons" }, "radix": { "$ref": "#/definitions/rule", "description": "Enforce the consistent use of the radix argument when using parseInt()" }, "require-await": { "$ref": "#/definitions/rule", "description": "Disallow async functions which have no await expression" }, "vars-on-top": { "$ref": "#/definitions/rule", "description": "Require var declarations be placed at the top of their containing scope" }, "wrap-iife": { "$ref": "#/definitions/rule", "description": "Require parentheses around immediate function invocations" }, "yoda": { "$ref": "#/definitions/rule", "description": "Require or Disallow \"Yoda\" conditions" } } }, "strictMode": { "type": "object", "properties": { "strict": { "$ref": "#/definitions/rule", "description": "require or disallow strict mode directives" } } }, "variables": { "type": "object", "properties": { "init-declarations": { "$ref": "#/definitions/rule", "description": "Require or disallow initialization in var declarations" }, "no-catch-shadow": { "$ref": "#/definitions/rule", "description": "Disallow catch clause parameters from shadowing variables in the outer scope" }, "no-delete-var": { "$ref": "#/definitions/rule", "description": "Disallow deleting variables" }, "no-label-var": { "$ref": "#/definitions/rule", "description": "Disallow labels that share a name with a variable" }, "no-restricted-globals": { "$ref": "#/definitions/rule", "description": "Disallow specified global variables" }, "no-shadow": { "$ref": "#/definitions/rule", "description": "Disallow var declarations from shadowing variables in the outer scope" }, "no-shadow-restricted-names": { "$ref": "#/definitions/rule", "description": "Disallow identifiers from shadowing restricted names" }, "no-undef": { "$ref": "#/definitions/rule", "description": "Disallow the use of undeclared variables unless mentioned in /*global */ comments" }, "no-undefined": { "$ref": "#/definitions/rule", "description": "Disallow the use of undefined as an identifier" }, "no-undef-init": { "$ref": "#/definitions/rule", "description": "Disallow initializing variables to undefined" }, "no-unused-vars": { "$ref": "#/definitions/rule", "description": "Disallow unused variables" }, "no-use-before-define": { "$ref": "#/definitions/rule", "description": "Disallow the use of variables before they are defined" } } }, "nodeAndCommonJs": { "type": "object", "properties": { "callback-return": { "$ref": "#/definitions/rule", "description": "Require return statements after callbacks" }, "global-require": { "$ref": "#/definitions/rule", "description": "Require require() calls to be placed at top-level module scope" }, "handle-callback-err": { "$ref": "#/definitions/rule", "description": "Require error handling in callbacks" }, "no-buffer-constructor": { "$ref": "#/definitions/rule", "description": "Disallow use of the Buffer() constructor" }, "no-mixed-requires": { "$ref": "#/definitions/rule", "description": "Disallow require calls to be mixed with regular var declarations" }, "no-new-require": { "$ref": "#/definitions/rule", "description": "Disallow new operators with calls to require" }, "no-path-concat": { "$ref": "#/definitions/rule", "description": "Disallow string concatenation with __dirname and __filename" }, "no-process-env": { "$ref": "#/definitions/rule", "description": "Disallow the use of process.env" }, "no-process-exit": { "$ref": "#/definitions/rule", "description": "Disallow the use of process.exit()" }, "no-restricted-modules": { "$ref": "#/definitions/rule", "description": "Disallow specified modules when loaded by require" }, "no-sync": { "$ref": "#/definitions/rule", "description": "Disallow synchronous methods" } } }, "stylisticIssues": { "type": "object", "properties": { "array-bracket-newline": { "$ref": "#/definitions/rule", "description": "Enforce line breaks after opening and before closing array brackets" }, "array-bracket-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing inside array brackets" }, "array-element-newline": { "$ref": "#/definitions/rule", "description": "Enforce line breaks after each array element" }, "block-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing inside single-line blocks" }, "brace-style": { "$ref": "#/definitions/rule", "description": "Enforce consistent brace style for blocks" }, "camelcase": { "$ref": "#/definitions/rule", "description": "Enforce camelcase naming convention" }, "capitalized-comments": { "$ref": "#/definitions/rule", "description": "Enforce or disallow capitalization of the first letter of a comment" }, "comma-dangle": { "$ref": "#/definitions/rule", "description": "Require or disallow trailing commas" }, "comma-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before and after commas" }, "comma-style": { "$ref": "#/definitions/rule", "description": "Enforce consistent comma style" }, "computed-property-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing inside computed property brackets" }, "consistent-this": { "$ref": "#/definitions/rule", "description": "Enforce consistent naming when capturing the current execution context" }, "eol-last": { "$ref": "#/definitions/rule", "description": "Enforce at least one newline at the end of files" }, "func-call-spacing": { "$ref": "#/definitions/rule", "description": "Require or disallow spacing between function identifiers and their invocations" }, "func-name-matching": { "$ref": "#/definitions/rule", "description": "Require function names to match the name of the variable or property to which they are assigned" }, "func-names": { "$ref": "#/definitions/rule", "description": "Require or disallow named function expressions" }, "func-style": { "$ref": "#/definitions/rule", "description": "Enforce the consistent use of either function declarations or expressions" }, "function-call-argument-newline": { "$ref": "#/definitions/rule", "description": "Enforce line breaks between arguments of a function call" }, "function-paren-newline": { "$ref": "#/definitions/rule", "description": "Enforce consistent line breaks inside function parentheses" }, "id-blacklist": { "$ref": "#/definitions/rule", "description": "Disallow specified identifiers" }, "id-length": { "$ref": "#/definitions/rule", "description": "Enforce minimum and maximum identifier lengths" }, "id-match": { "$ref": "#/definitions/rule", "description": "Require identifiers to match a specified regular expression" }, "implicit-arrow-linebreak": { "$ref": "#/definitions/rule", "description": "Enforce the location of arrow function bodies" }, "indent": { "$ref": "#/definitions/rule", "description": "Enforce consistent indentation" }, "indent-legacy": { "$ref": "#/definitions/rule", "description": "Enforce consistent indentation (legacy, deprecated)" }, "jsx-quotes": { "$ref": "#/definitions/rule", "description": "Enforce the consistent use of either double or single quotes in JSX attributes" }, "key-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing between keys and values in object literal properties" }, "keyword-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before and after keywords" }, "line-comment-position": { "$ref": "#/definitions/rule", "description": "Enforce position of line comments" }, "lines-between-class-members": { "$ref": "#/definitions/rule", "description": "Require or disallow an empty line between class members" }, "linebreak-style": { "$ref": "#/definitions/rule", "description": "Enforce consistent linebreak style" }, "lines-around-comment": { "$ref": "#/definitions/rule", "description": "Require empty lines around comments" }, "lines-around-directive": { "$ref": "#/definitions/rule", "description": "Require or disallow newlines around directives" }, "max-depth": { "$ref": "#/definitions/rule", "description": "Enforce a maximum depth that blocks can be nested" }, "max-len": { "$ref": "#/definitions/rule", "description": "Enforce a maximum line length" }, "max-lines": { "$ref": "#/definitions/rule", "description": "Enforce a maximum number of lines per file" }, "max-nested-callbacks": { "$ref": "#/definitions/rule", "description": "Enforce a maximum depth that callbacks can be nested" }, "max-params": { "$ref": "#/definitions/rule", "description": "Enforce a maximum number of parameters in function definitions" }, "max-statements": { "$ref": "#/definitions/rule", "description": "Enforce a maximum number of statements allowed in function blocks" }, "max-statements-per-line": { "$ref": "#/definitions/rule", "description": "Enforce a maximum number of statements allowed per line" }, "multiline-comment-style": { "$ref": "#/definitions/rule", "description": "Enforce a particular style for multiline comments" }, "multiline-ternary": { "$ref": "#/definitions/rule", "description": "Enforce newlines between operands of ternary expressions" }, "new-cap": { "$ref": "#/definitions/rule", "description": "Require constructor function names to begin with a capital letter" }, "newline-after-var": { "$ref": "#/definitions/rule", "description": "Require or disallow an empty line after var declarations" }, "newline-before-return": { "$ref": "#/definitions/rule", "description": "Require an empty line before return statements" }, "newline-per-chained-call": { "$ref": "#/definitions/rule", "description": "Require a newline after each call in a method chain" }, "new-parens": { "$ref": "#/definitions/rule", "description": "Require parentheses when invoking a constructor with no arguments" }, "no-array-constructor": { "$ref": "#/definitions/rule", "description": "Disallow Array constructors" }, "no-bitwise": { "$ref": "#/definitions/rule", "description": "Disallow bitwise operators" }, "no-continue": { "$ref": "#/definitions/rule", "description": "Disallow continue statements" }, "no-inline-comments": { "$ref": "#/definitions/rule", "description": "Disallow inline comments after code" }, "no-lonely-if": { "$ref": "#/definitions/rule", "description": "Disallow if statements as the only statement in else blocks" }, "no-mixed-operators": { "$ref": "#/definitions/rule", "description": "Disallow mixed binary operators" }, "no-mixed-spaces-and-tabs": { "$ref": "#/definitions/rule", "description": "Disallow mixed spaces and tabs for indentation" }, "no-multi-assign": { "$ref": "#/definitions/rule", "description": "Disallow use of chained assignment expressions" }, "no-multiple-empty-lines": { "$ref": "#/definitions/rule", "description": "Disallow multiple empty lines" }, "no-negated-condition": { "$ref": "#/definitions/rule", "description": "Disallow negated conditions" }, "no-nested-ternary": { "$ref": "#/definitions/rule", "description": "Disallow nested ternary expressions" }, "no-new-object": { "$ref": "#/definitions/rule", "description": "Disallow Object constructors" }, "no-plusplus": { "$ref": "#/definitions/rule", "description": "Disallow the unary operators ++ and --" }, "no-restricted-syntax": { "$ref": "#/definitions/rule", "description": "Disallow specified syntax" }, "no-spaced-func": { "$ref": "#/definitions/rule" }, "no-tabs": { "$ref": "#/definitions/rule", "description": "Disallow tabs in file" }, "no-ternary": { "$ref": "#/definitions/rule", "description": "Disallow ternary operators" }, "no-trailing-spaces": { "$ref": "#/definitions/rule", "description": "Disallow trailing whitespace at the end of lines" }, "no-underscore-dangle": { "$ref": "#/definitions/rule", "description": "Disallow dangling underscores in identifiers" }, "no-unneeded-ternary": { "$ref": "#/definitions/rule", "description": "Disallow ternary operators when simpler alternatives exist" }, "no-whitespace-before-property": { "$ref": "#/definitions/rule", "description": "Disallow whitespace before properties" }, "nonblock-statement-body-position": { "$ref": "#/definitions/rule", "description": "Enforce the location of single-line statements" }, "object-curly-newline": { "$ref": "#/definitions/rule", "description": "Enforce consistent line breaks inside braces" }, "object-curly-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing inside braces" }, "object-property-newline": { "$ref": "#/definitions/rule", "description": "Enforce placing object properties on separate lines" }, "object-shorthand": { "$ref": "#/definitions/rule" }, "one-var": { "$ref": "#/definitions/rule", "description": "Enforce variables to be declared either together or separately in functions" }, "one-var-declaration-per-line": { "$ref": "#/definitions/rule", "description": "Require or disallow newlines around var declarations" }, "operator-assignment": { "$ref": "#/definitions/rule", "description": "Require or disallow assignment operator shorthand where possible" }, "operator-linebreak": { "$ref": "#/definitions/rule", "description": "Enforce consistent linebreak style for operators" }, "padded-blocks": { "$ref": "#/definitions/rule", "description": "Require or disallow padding within blocks" }, "padding-line-between-statements": { "$ref": "#/definitions/rule", "description": "Require or disallow padding lines between statements" }, "quote-props": { "$ref": "#/definitions/rule", "description": "Require quotes around object literal property names" }, "quotes": { "$ref": "#/definitions/rule", "description": "Enforce the consistent use of either backticks, double, or single quotes" }, "require-jsdoc": { "$ref": "#/definitions/rule", "description": "Require JSDoc comments" }, "semi": { "$ref": "#/definitions/rule", "description": "Require or disallow semicolons instead of ASI" }, "semi-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before and after semicolons" }, "semi-style": { "$ref": "#/definitions/rule", "description": "Enforce location of semicolons" }, "sort-keys": { "$ref": "#/definitions/rule", "description": "Requires object keys to be sorted" }, "sort-vars": { "$ref": "#/definitions/rule", "description": "Require variables within the same declaration block to be sorted" }, "space-before-blocks": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before blocks" }, "space-before-function-paren": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before function definition opening parenthesis" }, "spaced-comment": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing after the // or /* in a comment" }, "space-infix-ops": { "$ref": "#/definitions/rule", "description": "Require spacing around operators" }, "space-in-parens": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing inside parentheses" }, "space-unary-ops": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before or after unary operators" }, "switch-colon-spacing": { "$ref": "#/definitions/rule", "description": "Enforce spacing around colons of switch statements" }, "template-tag-spacing": { "$ref": "#/definitions/rule", "description": "Require or disallow spacing between template tags and their literals" }, "unicode-bom": { "$ref": "#/definitions/rule", "description": "Require or disallow Unicode byte order mark (BOM)" }, "wrap-regex": { "$ref": "#/definitions/rule", "description": "Require parenthesis around regex literals" } } }, "ecmaScript6": { "type": "object", "properties": { "arrow-body-style": { "$ref": "#/definitions/rule", "description": "Require braces around arrow function bodies" }, "arrow-parens": { "$ref": "#/definitions/rule", "description": "Require parentheses around arrow function arguments" }, "arrow-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing before and after the arrow in arrow functions" }, "constructor-super": { "$ref": "#/definitions/rule", "description": "Require super() calls in constructors" }, "generator-star-spacing": { "$ref": "#/definitions/rule", "description": "Enforce consistent spacing around * operators in generator functions" }, "no-class-assign": { "$ref": "#/definitions/rule", "description": "Disallow reassigning class members" }, "no-confusing-arrow": { "$ref": "#/definitions/rule", "description": "Disallow arrow functions where they could be confused with comparisons" }, "no-const-assign": { "$ref": "#/definitions/rule", "description": "Disallow reassigning const variables" }, "no-dupe-class-members": { "$ref": "#/definitions/rule", "description": "Disallow duplicate class members" }, "no-duplicate-imports": { "$ref": "#/definitions/rule", "description": "Disallow duplicate module imports" }, "no-new-symbol": { "$ref": "#/definitions/rule", "description": "Disallow new operators with the Symbol object" }, "no-restricted-imports": { "$ref": "#/definitions/rule", "description": "Disallow specified modules when loaded by import" }, "no-this-before-super": { "$ref": "#/definitions/rule", "description": "Disallow this/super before calling super() in constructors" }, "no-useless-computed-key": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary computed property keys in object literals" }, "no-useless-constructor": { "$ref": "#/definitions/rule", "description": "Disallow unnecessary constructors" }, "no-useless-rename": { "$ref": "#/definitions/rule", "description": "Disallow renaming import, export, and destructured assignments to the same name" }, "no-var": { "$ref": "#/definitions/rule", "description": "Require let or const instead of var" }, "object-shorthand": { "$ref": "#/definitions/rule", "description": "Require or disallow method and property shorthand syntax for object literals" }, "prefer-arrow-callback": { "$ref": "#/definitions/rule", "description": "Require arrow functions as callbacks" }, "prefer-const": { "$ref": "#/definitions/rule", "description": "Require const declarations for variables that are never reassigned after declared" }, "prefer-destructuring": { "$ref": "#/definitions/rule", "description": "Require destructuring from arrays and/or objects" }, "prefer-numeric-literals": { "$ref": "#/definitions/rule", "description": "Disallow parseInt() in favor of binary, octal, and hexadecimal literals" }, "prefer-reflect": { "$ref": "#/definitions/rule", "description": "Require Reflect methods where applicable" }, "prefer-rest-params": { "$ref": "#/definitions/rule", "description": "Require rest parameters instead of arguments" }, "prefer-spread": { "$ref": "#/definitions/rule", "description": "Require spread operators instead of .apply()" }, "prefer-template": { "$ref": "#/definitions/rule", "description": "Require template literals instead of string concatenation" }, "require-yield": { "$ref": "#/definitions/rule", "description": "Require generator functions to contain yield" }, "rest-spread-spacing": { "$ref": "#/definitions/rule", "description": "Enforce spacing between rest and spread operators and their expressions" }, "sort-imports": { "$ref": "#/definitions/rule", "description": "Enforce sorted import declarations within modules" }, "symbol-description": { "$ref": "#/definitions/rule", "description": "Require symbol descriptions" }, "template-curly-spacing": { "$ref": "#/definitions/rule", "description": "Require or disallow spacing around embedded expressions of template strings" }, "yield-star-spacing": { "$ref": "#/definitions/rule", "description": "Require or disallow spacing around the * in yield* expressions" } } }, "legacy": { "type": "object", "properties": { "max-depth": { "$ref": "#/definitions/rule" }, "max-len": { "$ref": "#/definitions/rule" }, "max-params": { "$ref": "#/definitions/rule" }, "max-statements": { "$ref": "#/definitions/rule" }, "no-bitwise": { "$ref": "#/definitions/rule" }, "no-plusplus": { "$ref": "#/definitions/rule" } } } }, "id": "https://json.schemastore.org/eslintrc.json", "properties": { "ecmaFeatures": { "description": "By default, ESLint supports only ECMAScript 5 syntax. You can override that setting to enable support for ECMAScript 6 as well as JSX by using configuration settings.", "type": "object", "properties": { "arrowFunctions": { "type": "boolean" }, "binaryLiterals": { "type": "boolean" }, "blockBindings": { "type": "boolean" }, "classes": { "type": "boolean" }, "defaultParams": { "type": "boolean" }, "destructuring": { "type": "boolean" }, "experimentalObjectRestSpread": { "type": "boolean", "description": "Enables support for the experimental object rest/spread properties (IMPORTANT: This is an experimental feature that may change significantly in the future. It's recommended that you do not write rules relying on this functionality unless you are willing to incur maintenance cost when it changes.)" }, "forOf": { "type": "boolean" }, "generators": { "type": "boolean" }, "globalReturn": { "type": "boolean", "description": "allow return statements in the global scope" }, "impliedStrict": { "type": "boolean", "description": "enable global strict mode (if ecmaVersion is 5 or greater)" }, "jsx": { "type": "boolean", "description": "enable JSX" }, "modules": { "type": "boolean" }, "objectLiteralComputedProperties": { "type": "boolean" }, "objectLiteralDuplicateProperties": { "type": "boolean" }, "objectLiteralShorthandMethods": { "type": "boolean" }, "objectLiteralShorthandProperties": { "type": "boolean" }, "octalLiterals": { "type": "boolean" }, "regexUFlag": { "type": "boolean" }, "regexYFlag": { "type": "boolean" }, "restParams": { "type": "boolean" }, "spread": { "type": "boolean" }, "superInFunctions": { "type": "boolean" }, "templateStrings": { "type": "boolean" }, "unicodeCodePointEscapes": { "type": "boolean" } } }, "env": { "description": "An environment defines global variables that are predefined.", "type": "object", "properties": { "amd": { "type": "boolean", "description": "defines require() and define() as global variables as per the amd spec" }, "applescript": { "type": "boolean", "description": "AppleScript global variables" }, "atomtest": { "type": "boolean", "description": "Atom test helper globals" }, "browser": { "type": "boolean", "description": "browser global variables" }, "commonjs": { "type": "boolean", "description": "CommonJS global variables and CommonJS scoping (use this for browser-only code that uses Browserify/WebPack)" }, "shared-node-browser": { "type": "boolean", "description": "Globals common to both Node and Browser" }, "embertest": { "type": "boolean", "description": "Ember test helper globals" }, "es6": { "type": "boolean", "description": "enable all ECMAScript 6 features except for modules" }, "greasemonkey": { "type": "boolean", "description": "GreaseMonkey globals" }, "jasmine": { "type": "boolean", "description": "adds all of the Jasmine testing global variables for version 1.3 and 2.0" }, "jest": { "type": "boolean", "description": "Jest global variables" }, "jquery": { "type": "boolean", "description": "jQuery global variables" }, "meteor": { "type": "boolean", "description": "Meteor global variables" }, "mocha": { "type": "boolean", "description": "adds all of the Mocha test global variables" }, "mongo": { "type": "boolean", "description": "MongoDB global variables" }, "nashorn": { "type": "boolean", "description": "Java 8 Nashorn global variables" }, "node": { "type": "boolean", "description": "Node.js global variables and Node.js scoping" }, "phantomjs": { "type": "boolean", "description": "PhantomJS global variables" }, "prototypejs": { "type": "boolean", "description": "Prototype.js global variables" }, "protractor": { "type": "boolean", "description": "Protractor global variables" }, "qunit": { "type": "boolean", "description": "QUnit global variables" }, "serviceworker": { "type": "boolean", "description": "Service Worker global variables" }, "shelljs": { "type": "boolean", "description": "ShellJS global variables" }, "webextensions": { "type": "boolean", "description": "WebExtensions globals" }, "worker": { "type": "boolean", "description": "web workers global variables" } } }, "extends": { "description": "If you want to extend a specific configuration file, you can use the extends property and specify the path to the file. The path can be either relative or absolute.", "$ref": "#/definitions/stringOrStringArray" }, "globals": { "description": "Set each global variable name equal to true to allow the variable to be overwritten or false to disallow overwriting.", "type": "object", "additionalProperties": { "oneOf": [ { "type": "string", "enum": ["readonly", "writable", "off"] }, { "description": "The values false|\"readable\" and true|\"writeable\" are deprecated, they are equivalent to \"readonly\" and \"writable\", respectively.", "type": "boolean" } ] } }, "noInlineConfig": { "description": "Prevent comments from changing config or rules", "type": "boolean" }, "parser": { "type": "string" }, "parserOptions": { "description": "The JavaScript language options to be supported", "type": "object", "properties": { "ecmaFeatures": { "$ref": "#/properties/ecmaFeatures" }, "ecmaVersion": { "enum": [ 3, 5, 6, 2015, 7, 2016, 8, 2017, 9, 2018, 10, 2019, 11, 2020, 12, 2021, 13, 2022, 14, 2023, "latest" ], "default": 11, "description": "Set to 3, 5, 6, 7, 8, 9, 10, 11 (default), 12, 13, 14 or \"latest\" to specify the version of ECMAScript syntax you want to use. You can also set to 2015 (same as 6), 2016 (same as 7), 2017 (same as 8), 2018 (same as 9), 2019 (same as 10), 2020 (same as 11), 2021 (same as 12), 2022 (same as 13) or 2023 (same as 14) to use the year-based naming. \"latest\" always enables the latest supported ECMAScript version." }, "sourceType": { "enum": ["script", "module"], "default": "script", "description": "set to \"script\" (default) or \"module\" if your code is in ECMAScript modules" } } }, "plugins": { "description": "ESLint supports the use of third-party plugins. Before using the plugin, you have to install it using npm.", "type": "array", "items": { "type": "string" } }, "root": { "description": "By default, ESLint will look for configuration files in all parent folders up to the root directory. This can be useful if you want all of your projects to follow a certain convention, but can sometimes lead to unexpected results. To limit ESLint to a specific project, set this to `true` in a configuration in the root of your project.", "type": "boolean" }, "ignorePatterns": { "description": "Tell ESLint to ignore specific files and directories. Each value uses the same pattern as the `.eslintignore` file.", "$ref": "#/definitions/stringOrStringArray" }, "rules": { "description": "ESLint comes with a large number of rules. You can modify which rules your project uses either using configuration comments or configuration files.", "type": "object", "allOf": [ { "$ref": "#/definitions/possibleErrors" }, { "$ref": "#/definitions/bestPractices" }, { "$ref": "#/definitions/strictMode" }, { "$ref": "#/definitions/variables" }, { "$ref": "#/definitions/nodeAndCommonJs" }, { "$ref": "#/definitions/stylisticIssues" }, { "$ref": "#/definitions/ecmaScript6" }, { "$ref": "#/definitions/legacy" } ] }, "settings": { "description": "ESLint supports adding shared settings into configuration file. You can add settings object to ESLint configuration file and it will be supplied to every rule that will be executed. This may be useful if you are adding custom rules and want them to have access to the same information and be easily configurable.", "type": "object" }, "overrides": { "type": "array", "description": "Allows to override configuration for files and folders, specified by glob patterns", "items": { "type": "object", "properties": { "files": { "description": "Glob pattern for files to apply 'overrides' configuration, relative to the directory of the config file", "oneOf": [ { "type": "string" }, { "minItems": 1, "type": "array", "items": { "type": "string" } } ] }, "extends": { "description": "If you want to extend a specific configuration file, you can use the extends property and specify the path to the file. The path can be either relative or absolute.", "$ref": "#/definitions/stringOrStringArray" }, "excludedFiles": { "description": "If a file matches any of the 'excludedFiles' glob patterns, the 'overrides' configuration won't apply", "$ref": "#/definitions/stringOrStringArray" }, "ecmaFeatures": { "$ref": "#/properties/ecmaFeatures" }, "env": { "$ref": "#/properties/env" }, "globals": { "$ref": "#/properties/globals" }, "parser": { "$ref": "#/properties/parser" }, "parserOptions": { "$ref": "#/properties/parserOptions" }, "plugins": { "$ref": "#/properties/plugins" }, "processor": { "description": "To specify a processor, specify the plugin name and processor name joined by a forward slash", "type": "string" }, "rules": { "$ref": "#/properties/rules" }, "settings": { "$ref": "#/properties/settings" }, "overrides": { "$ref": "#/properties/overrides" } }, "additionalProperties": false, "required": ["files"] } } }, "title": "JSON schema for ESLint configuration files", "type": "object" }
eslintrc
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition": { "description": "APIServiceCondition describes the state of an APIService at a particular point", "properties": { "lastTransitionTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown.", "type": "string" }, "type": { "description": "Type is the type of the condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" } }, "description": "APIServiceStatus contains derived information about an API server", "properties": { "conditions": { "description": "Current service state of apiService.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition" }, "type": [ "array", "null" ], "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }
kb_36_Normalized
{ "definitions": {}, "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "$id": "http://www.pucomex.serpro.gov.br/lpco/detalhar_prorrogacao.schema.json", "properties": { "situacao": { "type": "object", "properties": { "id": { "type": "string" }, "descricao": { "type": "string" } } }, "novaDataFimVigencia": { "type": [ "string", "null" ] }, "dataInicioVigencia": { "type": [ "string", "null" ] }, "dataFimVigencia": { "type": [ "string", "null" ] }, "dataCadastroSolicitacao": { "type": [ "string", "null" ] }, "dataUltimaAlteracao": { "type": [ "string", "null" ] }, "justificativa": { "type": "string" } } }
o73038
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "tenant": { "type": "string", "description": "shortcode of a tenant" } }, "type": "array", "items": { "$ref": "#/definitions/tenant" } }
o79494
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.10.5/utils/video_subtitle.json", "title": "Video Subtitle Configuration Schema.", "description": "Data about different subtitle encodings and confidences of auto-transcribed content.", "type": "object", "properties": { "confidence": { "type": "number", "description": "How confident the transcriber (human or automated) is of the accuracy of the subtitles." }, "urls": { "type": "array", "items": { "$ref": "#/definitions/subtitle_url" }, "description": "The locations of any subtitle transcriptions of the video." } }, "definitions": { "subtitle_url": { "properties": { "format": { "type": "string", "description": "The format of the subtitles (e.g. SRT, DFXP, WEB_VTT, etc)" }, "url": { "type": "string", "description": "The url of the subtitle stream." } } } } }
o85985