json_schema
stringlengths 43
1.28M
| unique_id
stringlengths 2
41
|
---|---|
{
"description": "A generic related package.",
"properties": {
"name": {
"description": "Name of the package.",
"title": "name",
"type": "string"
},
"payload_type": {
"oneOf": [
{
"description": "The type of payload for this package. One of: source, binary, doc",
"enum": [
"source",
"binary",
"doc"
],
"title": "Payload type",
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"description": "Descriptive name of the type of package: RubyGem, Python Wheel, Java Jar, Debian package, etc.",
"title": "type",
"type": "string"
},
"version": {
"oneOf": [
{
"description": "Version of the package",
"title": "version",
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"type",
"name"
],
"title": "related package",
"type": "object"
} | o89988 |
{
"maximum": 1,
"minimum": 0,
"type": "integer"
} | o27830 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"title": "glTF Id",
"type": "integer",
"minimum": 0
} | o63500 |
{
"id": "https://raw.githubusercontent.com/rolfvreijdenberger/jsend-json-schema/master/jsend-extend-fail-error-json-schema.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "jsend-extend-fail-error json schema",
"description": "This is a json-schema that extends the jsend format for json responses for applications. It provides structured information about the 'status':'fail|error' reason(s) by specifying the structure of the 'data' key. Since the returned data for 'status':'success' depends on the API, the JSend spec is enough. The returned data for 'status':'fail|error' should be in a format that is consumable by API consumers in a generic way. The JSend specification leaves this too open for interpretation. To provide a uniform way of consuming data for failures and errors, this schema defines an array of objects in the 'data' key. Each item in that array has at least the key 'message' with a human readable description of the failure. For an error, this will most likely be a single object specifying the error. In case it is possible to map it to an input field, an optional 'field' key can be used with a string representation of the map to the field. Even input in complex datastructures can be mapped this way. see https://labs.omniti.com/labs/jsend/wiki",
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/success"
},
{
"$ref": "#/definitions/fail"
},
{
"$ref": "#/definitions/error"
}
],
"definitions": {
"success": {
"description": "All went well, and (usually) some data was returned.",
"required": [
"status",
"data"
],
"properties": {
"status": {
"type": "string",
"pattern": "^success$",
"description": "the status for a succesful handling"
},
"data": {
"description": "Acts as the wrapper for any data returned by the API call. If the call returns no data (as in the last example), data should be set to null.",
"$ref": "#/definitions/data"
}
}
},
"fail": {
"description": "There was a problem with the data submitted, or some pre-condition of the API call wasn't satisfied. this is a '400' http status type error (recoverable by client)",
"required": [
"status",
"data"
],
"properties": {
"status": {
"type": "string",
"pattern": "^fail$",
"description": "the status for a failure handling"
},
"data": {
"description": "provides the wrapper for the details of why the request failed.",
"$ref": "#/definitions/data-fail-error"
}
}
},
"error": {
"description": "An error occurred in processing the request, i.e. an exception was thrown. this is a '500' http status type error (unrecoverable by client)",
"required": [
"status",
"data"
],
"properties": {
"status": {
"type": "string",
"pattern": "^error$",
"description": "the status for a failure handling"
},
"data": {
"description": "provides the wrapper for the details of why the request failed.",
"$ref": "#/definitions/data-fail-error"
}
}
},
"code": {
"description": "A numeric code providing info about a failure or error in a result, if applicable",
"type": [
"string",
"integer"
]
},
"data-fail-error": {
"description": "a container for information about failures or errors",
"type": [
"array"
],
"minItems": 0,
"items": {
"$ref": "#/definitions/data-fail-error-item"
}
},
"data-fail-error-item": {
"description": "an object that contains fields related to a failure",
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"description": "a human readable failure or error message",
"$ref": "#/definitions/message"
},
"code": {
"description": "an optional numeric code, could be used for translations (incl gettext .po strings)",
"$ref": "#/definitions/code"
},
"field": {
"description": "an optional string representation that maps to input. POST keys, a query parameter, a header key etc. For complex datastructures you could use different solutions like a dot seperated tree representation, an xpath expression etc.",
"type": "string"
}
}
},
"data": {
"description": "a generic container for data returned for success, fail or error",
"type": [
"string",
"null",
"array",
"object",
"integer",
"boolean"
]
},
"message": {
"description": "A meaningful, end-user-readable (or at the least log-worthy) message, explaining what happened.",
"type": "string"
}
}
} | o71265 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"required": [
"config",
"inputs"
],
"type": "object",
"properties": {
"inputs": {
"required": [
"bids_dataset"
],
"type": "object",
"properties": {
"bids_dataset": {
"type": "object",
"properties": {
"type": {
"enum": [
"archive"
]
}
}
}
}
},
"config": {
"type": "object",
"properties": {}
}
},
"title": "Invocation manifest for fMRIPREP: A Robust Preprocessing Pipeline for fMRI Data (1.0.0-rc1)"
} | o41241 |
{
"$schema": "http://json-schema.org/draft-04/schema",
"description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.",
"title": "Website",
"type": "string"
} | wp_99_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema",
"additionalProperties": false,
"definitions": {
"___traits_trait_additional_properties_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": {},
"description": "A grab-bag object for non-validatable data.",
"title": "Has additional properties",
"type": "object"
},
"___traits_trait_alignment_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.",
"enum": [
"left",
"right",
"center"
],
"title": "Alignment",
"type": "string"
},
"___traits_trait_channel_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "An optional list of output types for which this element should be visible",
"items": {
"type": "string"
},
"title": "Channel trait",
"type": "array"
},
"___traits_trait_id_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A globally unique identifier of the content in the ANS repository.",
"title": "Globally Unique ID trait",
"type": "string"
},
"___traits_trait_subtype_json": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.",
"title": "Subtype or Template",
"type": "string"
}
},
"description": "(Deprecated.) Equivalent to an HTML blockquote element. Consider the new `quote` element instead.",
"properties": {
"_id": {
"$ref": "#/definitions/___traits_trait_id_json"
},
"additional_properties": {
"$ref": "#/definitions/___traits_trait_additional_properties_json"
},
"alignment": {
"$ref": "#/definitions/___traits_trait_alignment_json"
},
"channels": {
"$ref": "#/definitions/___traits_trait_channel_json"
},
"content": {
"description": "A blockquote",
"type": "string"
},
"subtype": {
"$ref": "#/definitions/___traits_trait_subtype_json"
},
"type": {
"enum": [
"blockquote"
]
}
},
"required": [
"type",
"content"
],
"title": "Blockquote",
"type": "object"
} | wp_18_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"number": {
"type": "integer",
"minimum": 0
},
"stuff": {
"type": "array",
"_uniqueItems": true,
"minItems": 1,
"items": {
"type": "string"
}
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": [
"name"
]
} | o60660 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": true,
"definitions": {
"acl": {
"oneOf": [
{
"$ref": "#/definitions/aclSimple"
},
{
"properties": {
"create": {
"$ref": "#/definitions/aclSimple"
},
"delete": {
"$ref": "#/definitions/aclSimple"
},
"read": {
"$ref": "#/definitions/aclSimple"
},
"update": {
"$ref": "#/definitions/aclSimple"
}
},
"type": "object"
}
]
},
"aclSimple": {
"items": {
"$ref": "#/definitions/basicName"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
},
"basicName": {
"pattern": "^[a-zA-Z_$][a-zA-Z_$0-9]*$",
"type": "string"
},
"check": {
"type": "string"
},
"field": {
"properties": {
"autoIncrement": {
"type": "boolean"
},
"default": {},
"description": {
"type": "string"
},
"encrypted": {
"type": "boolean"
},
"enum": {
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"filterable": {
"type": "boolean"
},
"max": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"min": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"name": {
"$ref": "#/definitions/basicName"
},
"onUpdate": {
"type": "string"
},
"pattern": {
"type": "string"
},
"patternOptions": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"precision": {
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 2,
"type": "array",
"_uniqueItems": false
},
"readOnly": {
"type": "boolean"
},
"required": {
"type": "boolean"
},
"sortable": {
"type": "boolean"
},
"type": {
"enum": [
"int",
"float",
"decimal",
"string",
"bool",
"date",
"time",
"datetime",
"file"
],
"type": "string"
},
"unique": {
"type": "boolean"
},
"writeOnly": {
"type": "boolean"
}
},
"required": [
"name",
"type"
],
"type": "object"
},
"index": {
"items": {
"type": "string"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
},
"relation": {
"properties": {
"check": {
"$ref": "#/definitions/check"
},
"description": {
"type": "string"
},
"embed": {
"type": "boolean"
},
"fields": {
"items": {
"$ref": "#/definitions/field"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
},
"index": {
"$ref": "#/definitions/index"
},
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"onDelete": {
"type": "string"
},
"onUpdate": {
"type": "string"
},
"type": {
"enum": [
"hasOne",
"hasMany"
],
"type": "string"
},
"with": {
"$ref": "#/definitions/basicName"
}
},
"required": [
"with",
"type"
],
"type": "object"
},
"resource": {
"properties": {
"abstract": {
"type": "boolean"
},
"acceptExtraFields": {
"type": "boolean"
},
"acl": {
"$ref": "#/definitions/acl"
},
"base": {
"$ref": "#/definitions/basicName"
},
"check": {
"$ref": "#/definitions/check"
},
"description": {
"type": "string"
},
"fields": {
"items": {
"$ref": "#/definitions/field"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"idInjection": {
"type": "boolean"
},
"index": {
"$ref": "#/definitions/index"
},
"inheritanceStrategy": {
"type": "string"
},
"isUser": {
"type": "boolean"
},
"name": {
"$ref": "#/definitions/basicName"
},
"paginable": {
"type": "boolean"
},
"plural": {
"$ref": "#/definitions/basicName"
},
"relations": {
"items": {
"$ref": "#/definitions/relation"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
}
},
"required": [
"name",
"fields"
],
"type": "object"
},
"role": {
"properties": {
"isA": {
"type": "string"
},
"isAdmin": {
"type": "boolean"
},
"isGuest": {
"type": "boolean"
},
"name": {
"$ref": "#/definitions/basicName"
},
"rateLimit": {
"properties": {
"numOfRequests": {
"minimum": 0,
"type": "integer"
},
"refreshTime": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"numOfRequests",
"refreshTime"
],
"type": "object"
}
},
"required": [
"name"
],
"type": "object"
}
},
"properties": {
"authenticationMechanism": {
"type": "string"
},
"baseUrl": {
"pattern": "^(http(s)?\\:\\/\\/(([a-zA-Z0-9]+((\\.|\\-)[a-zA-Z0-9]+)+)|(localhost))(\\:\\d+)?(\\/[\\w\\-]+)*(\\/?|\\/\\w+\\.[a-zA-Z]{2,4}(\\?[\\w]+\\=[\\w\\-]+)?)?(\\&[\\w]+\\=[\\w\\-]+)*)$",
"type": "string"
},
"dataFormats": {
"items": {
"pattern": "^([\\w.+-]+/[\\w.+-]+)$",
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"database": {
"properties": {
"admin": {
"properties": {
"name": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
"name",
"password"
],
"type": "object"
},
"dbms": {
"type": "string"
},
"host": {
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"prefix": {
"type": "string"
}
},
"type": "object"
},
"dateFormat": {
"type": "string"
},
"description": {
"type": "string"
},
"encoding": {
"type": "string"
},
"resources": {
"items": {
"$ref": "#/definitions/resource"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"roles": {
"items": {
"$ref": "#/definitions/role"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
},
"timeZone": {
"type": "string"
},
"title": {
"type": "string"
},
"types": {
"items": {
"$ref": "#/definitions/field"
},
"minItems": 0,
"type": "array",
"_uniqueItems": true
},
"version": {
"type": "string"
}
},
"required": [
"baseUrl",
"dataFormats",
"database",
"resources"
],
"type": "object"
} | o47658 |
{
"id": "http://schemas.wbeme.com/json-schema/eme/solicits/edge/submissions/1-0-0.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"_schema": {
"type": "string",
"pattern": "^pbj:([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+):([0-9]+-[0-9]+-[0-9]+)$",
"default": "pbj:eme:solicits:edge:submissions:1-0-0"
},
"from_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single"
}
},
"to_ref": {
"type": "string",
"pattern": "^[\\w\\/\\.:-]+$",
"pbj": {
"type": "identifier",
"rule": "single"
}
},
"multiplicity": {
"type": "string",
"default": "one2many",
"enum": [
"unknown",
"multi",
"simple",
"many2one",
"one2many",
"one2one"
],
"pbj": {
"type": "string-enum",
"rule": "single"
}
},
"created_at": {
"type": "string",
"pattern": "^[1-9]{1}[0-9]{12,15}$",
"pbj": {
"type": "microtime",
"rule": "single"
}
}
},
"required": [
"_schema",
"from_ref",
"to_ref"
],
"additionalProperties": false
} | o88160 |
{
"properties": {
"date_range": {
"description": "The date range of the news articles",
"properties": {
"end_date": {
"description": "The end date of the news articles",
"format": "date",
"type": "string"
},
"start_date": {
"description": "The start date of the news articles",
"format": "date",
"type": "string"
}
},
"type": "object"
},
"keyword": {
"description": "The keyword to search for",
"type": "string"
},
"language": {
"description": "The language of the news articles",
"type": "string"
},
"source": {
"description": "The source of the news articles",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
} | search_news_b7491119 |
{
"properties": {
"date": {
"description": "The date of the event",
"format": "date",
"type": "string"
},
"description": {
"description": "The description of the event",
"type": "string"
},
"end_time": {
"description": "The end time of the event",
"format": "time",
"type": "string"
},
"location": {
"description": "The location of the event",
"type": "string"
},
"start_time": {
"description": "The start time of the event",
"format": "time",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"date",
"start_time",
"end_time"
],
"type": "object"
} | create_calendar_event_b9654f16 |
{
"properties": {
"attachments": {
"description": "The file attachments to be included in the email",
"items": {
"type": "string"
},
"type": "array"
},
"message": {
"description": "The content of the email",
"type": "string"
},
"recipient_email": {
"description": "The email address of the recipient",
"type": "string"
},
"subject": {
"description": "The subject of the email",
"type": "string"
}
},
"required": [
"recipient_email",
"subject",
"message"
],
"type": "object"
} | send_email_8f13fa2e |
{
"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",
"null"
]
},
"readOnly": {
"description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.",
"type": [
"boolean",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"user": {
"description": "User to map volume access to Defaults to serivceaccount user",
"type": [
"string",
"null"
]
},
"volume": {
"description": "Volume is a string that references an already created Quobyte volume by name.",
"type": [
"string",
"null"
]
}
},
"required": [
"registry",
"volume"
],
"type": "object"
} | kb_786_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"version": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "string",
"maxLength": 32767
},
"domainIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
},
"slugIds": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"maxItems": 1000
}
},
"additionalProperties": false,
"required": [
"version"
]
} | o9893 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Codex Instance Schema",
"description": "Codex Instance Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"description": "the ID of the original record within its own database: since these come from various sources they may take different forms, e.g. integer, UUID"
},
"title": {
"type": "string",
"description": "the primary title (or label) associated with the resource"
},
"altTitle": {
"type": "string",
"description": "an alternative title for the resource. (e.g. original language version title of a movie)"
},
"series": {
"type": "string",
"description": "a series title associated with the resource (e.g. Harry Potter)"
},
"contributor": {
"type": "array",
"description": "list of contributors to the resource",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"description": "type of contributor to the resource"
},
"name": {
"type": "string",
"description": "name of contributor to the resource"
}
}
},
"additionalItems": true,
"_uniqueItems": true
},
"subject": {
"type": "array",
"description": "list of subjects this resource belongs to",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"description": "type of subject"
},
"name": {
"type": "string",
"description": "name of subject"
}
}
},
"additionalItems": true,
"_uniqueItems": true
},
"publisher": {
"type": "string",
"description": "name of publisher of the resource"
},
"date": {
"type": "string",
"description": "the date of publication of the resource"
},
"type": {
"type": "string",
"description": "content type of the resource",
"enum": [
"audio",
"audiobooks",
"books",
"bookseries",
"databases",
"ebooks",
"kits",
"maps",
"music",
"newspapers",
"newsletters",
"periodicals",
"posters",
"reports",
"proceedings",
"thesisanddissertation",
"unspecified",
"video",
"webresources"
]
},
"format": {
"type": "string",
"description": "format of the resource"
},
"identifier": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"value": {
"type": "string",
"description": "identifier type : e.g. ISSN"
},
"type": {
"type": "string",
"description": "identifier value"
}
}
},
"additionalItems": true,
"_uniqueItems": true,
"description": "an extensible set of name-value pairs of identifiers associated with the resource"
},
"source": {
"type": "string",
"description": "a label indicating the source of the recent, e.g. kb, local"
},
"language": {
"type": "array",
"description": "the set of languages used by the resource",
"items": {
"type": "string"
}
},
"rights": {
"type": "string",
"description": "access rights associated with the resource"
},
"version": {
"type": "string",
"description": "version of the resource"
},
"lastModified": {
"type": "string",
"description": "date/time when this resource was last modified"
}
},
"required": [
"id",
"title",
"type",
"source"
]
} | o24180 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Site",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"site"
]
},
"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}$"
},
"name": {
"$ref": "#/definitions/simple_string"
},
"geonames_name": {
"$ref": "#/definitions/complex_string"
},
"geonames_id": {
"$ref": "#/definitions/simple_integer"
},
"admin_level_1_geonames_name": {
"$ref": "#/definitions/complex_string"
},
"admin_level_1_geonames_id": {
"$ref": "#/definitions/simple_integer"
}
},
"additionalProperties": false,
"required": [
"type",
"division_id",
"gid",
"row",
"id",
"name"
],
"definitions": {
"simple_integer": {
"type": "object",
"properties": {
"value": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"simple_string": {
"type": "object",
"properties": {
"value": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"complex_string": {
"type": "object",
"properties": {
"value": {
"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"
}
}
}
} | o74447 |
{
"additionalProperties": false,
"description": "Schema for a social event",
"properties": {
"action": {
"type": "string"
},
"network": {
"type": "string"
},
"target": {
"type": "string"
}
},
"required": [
"network",
"action"
],
"self": {
"format": "jsonschema",
"name": "social_event",
"vendor": "com.mparticle.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_148_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"define": {
"name": {
"title": "Nested name",
"type": "string"
}
},
"properties": {
"define.name": {
"$ref": "#/define/name"
}
},
"required": [
"define.name"
]
} | o80334 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"defaultSearchEngine": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"locale": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"os": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"appUpdateChannel": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"profileCreationDate": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"appVersion": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"systemMemoryMb": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"systemCpuCores": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"systemCpuSpeedMhz": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"osVersion": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"systemGfxMonitors1ScreenWidth": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"systemGfxMonitors1ScreenWidthZeroIndexed": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"uptime": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"totalTime": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"profileSubsessionCounter": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"subsessionStartDate": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"timezoneOffest": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"searchCounts": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeWindowOpenEventCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeTotalUriCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeNavigationUrlbar": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeNavigationContextmenu": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeTabOpenEventCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeNavigationSearchbar": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeNavigationAboutNewtab": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeUniqueDomainsCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeMaxConcurrentWindowCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeMaxConcurrentTabCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"spbeUnfilteredUriCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"placesBookmarksCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"placesPagesCount": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"pioneerAddonMetadata": {
"properties": {
"packetVersion": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"studyName": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"branch": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"addonId": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"addonVersion": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"pioneerUtilsVersion": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"type": {
"description": "",
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"testing": {
"description": "",
"type": "boolean"
}
},
"required": [
"packetVersion",
"studyName",
"branch",
"addonId",
"addonVersion",
"pioneerUtilsVersion",
"type",
"testing"
],
"type": "object"
}
},
"required": [
"defaultSearchEngine",
"locale",
"os",
"appUpdateChannel",
"profileCreationDate",
"appVersion",
"systemMemoryMb",
"systemCpuCores",
"systemCpuSpeedMhz",
"osVersion",
"systemGfxMonitors1ScreenWidth",
"systemGfxMonitors1ScreenWidthZeroIndexed",
"uptime",
"totalTime",
"profileSubsessionCounter",
"subsessionStartDate",
"timezoneOffest",
"searchCounts",
"spbeWindowOpenEventCount",
"spbeTotalUriCount",
"spbeNavigationUrlbar",
"spbeNavigationContextmenu",
"spbeTabOpenEventCount",
"spbeNavigationSearchbar",
"spbeNavigationAboutNewtab",
"spbeUniqueDomainsCount",
"spbeMaxConcurrentWindowCount",
"spbeMaxConcurrentTabCount",
"spbeUnfilteredUriCount",
"placesBookmarksCount",
"placesPagesCount",
"pioneerAddonMetadata"
],
"title": "esper-study-telemetry",
"type": "object"
} | o61653 |
{
"additionalProperties": false,
"description": "Schema for a client-generated user session",
"properties": {
"previousSessionId": {
"_format": "uuid",
"type": [
"null",
"string"
]
},
"sessionId": {
"_format": "uuid",
"type": "string"
},
"sessionIndex": {
"maximum": 2147483647,
"minimum": 0,
"type": "integer"
},
"storageMechanism": {
"enum": [
"SQLITE",
"COOKIE_1",
"COOKIE_3",
"LOCAL_STORAGE",
"FLASH_LSO"
]
},
"userId": {
"pattern": "^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$|^[0-9a-f]{16}$",
"type": "string"
}
},
"required": [
"userId",
"sessionId",
"sessionIndex",
"previousSessionId",
"storageMechanism"
],
"self": {
"format": "jsonschema",
"name": "client_session",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_266_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"oneOf": [
{
"type": [
"string",
"null"
],
"minLength": 2
},
{
"name": "Address",
"description": "An address object",
"type": "object",
"properties": {
"street_address": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country": {
"type": "string"
},
"country_code": {
"description": "ISO 3166-2 code for country",
"type": "string"
}
},
"anyOf": [
{
"required": [
"street_address"
]
},
{
"required": [
"postal_code"
]
},
{
"required": [
"locality",
"country"
]
}
]
}
]
} | o65442 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Transaction Split",
"type": "object",
"additionalProperties": false,
"properties": {
"parentId": {
"type": "integer"
},
"rowId": {
"type": "integer"
},
"transaction": {
"$ref": "#/definitions/Transaction"
}
},
"definitions": {
"Transaction": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Transaction"
},
"account": {
"$ref": "#/definitions/AccountLink"
},
"amount": {
"type": "number"
},
"category": {
"$ref": "#/definitions/CategoryLink"
},
"classification1": {
"$ref": "#/definitions/Classification1Link"
},
"cleared": {
"type": "boolean"
},
"clearedState": {
"type": "integer"
},
"date": {
"type": "string",
"format": "date-time"
},
"fiTransactionId": {
"type": "string"
},
"frequency": {
"$ref": "#/definitions/Frequency"
},
"investment": {
"type": "boolean"
},
"investmentInfo": {
"$ref": "#/definitions/InvestmentInfo"
},
"memo": {
"type": "string"
},
"number": {
"type": "string"
},
"payee": {
"$ref": "#/definitions/PayeeLink"
},
"reconciled": {
"type": "boolean"
},
"recurring": {
"type": "boolean"
},
"splits": {
"type": "array",
"items": {
"$ref": "#/definitions/TransactionSplit"
}
},
"state": {
"type": "string",
"enum": [
"UNRECONCILED",
"RECONCILED",
"CLEARED",
"VOID"
]
},
"statusFlag": {
"type": "integer"
},
"transactionInfo": {
"$ref": "#/definitions/TransactionInfo"
},
"transfer": {
"type": "boolean"
},
"unaccepted": {
"type": "boolean"
},
"void": {
"type": "boolean"
},
"xferInfo": {
"$ref": "#/definitions/XferInfo"
}
},
"required": [
"cleared",
"investment",
"reconciled",
"recurring",
"transfer",
"unaccepted",
"void"
]
},
"AccountLink": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Account"
},
"name": {
"type": "string"
}
}
},
"CategoryLink": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Category"
},
"fullName": {
"type": "string"
},
"name": {
"type": "string"
},
"parentId": {
"type": "integer"
},
"parentName": {
"type": "string"
}
}
},
"Classification1Link": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Classification1"
},
"name": {
"type": "string"
}
}
},
"Frequency": {
"type": "object",
"additionalProperties": false,
"properties": {
"label": {
"type": "string"
},
"recurring": {
"type": "boolean"
},
"type": {
"type": "integer"
}
},
"required": [
"recurring"
]
},
"InvestmentInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"activity": {
"$ref": "#/definitions/InvestmentActivity"
},
"security": {
"$ref": "#/definitions/Security"
},
"transaction": {
"$ref": "#/definitions/InvestmentTransaction"
}
}
},
"InvestmentActivity": {
"type": "object",
"additionalProperties": false,
"properties": {
"label": {
"type": "string"
},
"type": {
"type": "integer"
}
}
},
"Security": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Security"
},
"name": {
"type": "string"
},
"symbol": {
"type": "string"
}
}
},
"InvestmentTransaction": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for InvestmentTransaction"
},
"price": {
"type": "number"
},
"quantity": {
"type": "number"
}
}
},
"PayeeLink": {
"type": "object",
"additionalProperties": false,
"properties": {
"_id": {
"type": "integer",
"description": "A unique ID for Payee"
},
"name": {
"type": "string"
}
}
},
"TransactionSplit": {
"type": "object",
"additionalProperties": false,
"properties": {
"parentId": {
"type": "integer"
},
"rowId": {
"type": "integer"
},
"transaction": {
"$ref": "#/definitions/Transaction"
}
}
},
"TransactionInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"flag": {
"type": "integer"
},
"investment": {
"type": "boolean"
},
"splitChild": {
"type": "boolean"
},
"splitParent": {
"type": "boolean"
},
"transfer": {
"type": "boolean"
},
"transferTo": {
"type": "boolean"
},
"void": {
"type": "boolean"
}
},
"required": [
"investment",
"splitChild",
"splitParent",
"transfer",
"transferTo",
"void"
]
},
"XferInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"xferAccountId": {
"type": "integer"
},
"xferTransactionId": {
"type": "integer"
}
}
}
}
} | o46265 |
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://specsie.org/schema/foundation",
"required": [
"constraints",
"description",
"includes",
"inherits",
"specdoc"
],
"properties": {
"constraints": {
"type": "array",
"id": "http://specsie.org/schema/foundation/constraints",
"items": {
"type": "object",
"id": "http://specsie.org/schema/foundation/constraints/0",
"properties": {
"constraint": {
"type": [
"string"
],
"id": "http://specsie.org/schema/foundation/constraints/0/constraint"
},
"qualifiers": {
"type": "array",
"id": "http://specsie.org/schema/foundation/includes",
"items": {
"id": "http://specsie.org/schema/foundation/constraints/0/constraint"
}
}
}
}
},
"description": {
"type": "array",
"id": "http://specsie.org/schema/foundation/description",
"items": {
"type": "string",
"id": "http://specsie.org/schema/foundation/description/0"
}
},
"includes": {
"type": "array",
"id": "http://specsie.org/schema/foundation/includes",
"items": {
"type": "string",
"id": "http://specsie.org/schema/foundation/includes/0"
}
},
"inherits": {
"type": "array",
"id": "http://specsie.org/schema/foundation/inherits",
"items": {
"type": "object",
"id": "http://specsie.org/schema/foundation/inherits0",
"required": [
"spec"
],
"properties": {
"spec": {
"type": "string",
"id": "http://specsie.org/schema/foundation/inherits0/spec"
},
"baseline": {
"type": "string",
"id": "http://specsie.org/schema/foundation/inherits0/baseline"
}
}
}
},
"json-schema": {
"type": "array",
"id": "http://specsie.org/schema/foundation/json-schema",
"items": {
"type": "string",
"id": "http://specsie.org/schema/foundation/json-schema/0"
}
},
"specdoc": {
"type": "object",
"id": "http://specsie.org/schema/foundation/specdoc",
"required": [
"spec"
],
"properties": {
"spec": {
"type": "string",
"id": "http://specsie.org/schema/foundation/specdoc/spec"
},
"baseline": {
"type": "string",
"id": "http://specsie.org/schema/foundation/specdoc/baseline"
}
}
}
}
}
| o77402 |
{
"$id": "https://cdn.earthdata.nasa.gov/umm/granule/v1.5",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"AccessConstraintsType": {
"additionalProperties": false,
"description": "Information about any physical constraints for accessing the data set.",
"properties": {
"Description": {
"description": "Free-text description of the constraint. In ECHO 10, this field is called RestrictionComment. Additional detailed instructions on how to access the granule data may be entered in this field.",
"maxLength": 4000,
"minLength": 1,
"type": "string"
},
"Value": {
"description": "Numeric value that is used with Access Control Language (ACLs) to restrict access to this granule. For example, a provider might specify a granule level ACL that hides all granules with a value element set to 15. In ECHO, this field is called RestrictionFlag.",
"type": "number"
}
},
"required": [
"Value"
],
"type": "object"
},
"AdditionalAttributeType": {
"additionalProperties": false,
"description": "A reference to an additional attribute in the parent collection. The attribute reference may contain a granule specific value that will override the value in the parent collection for this granule. An attribute with the same name must exist in the parent collection.",
"properties": {
"Name": {
"description": "The additional attribute's name.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"Values": {
"description": "Values of the additional attribute.",
"items": {
"maxLength": 500,
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"Name",
"Values"
],
"type": "object"
},
"ArchiveAndDistributionInformationType": {
"anyOf": [
{
"$ref": "#/definitions/FilePackageType"
},
{
"$ref": "#/definitions/FileType"
}
],
"description": "This set of elements describes a file package or a file that contains other files. Normally this is either a tar or a zip file."
},
"BoundaryType": {
"additionalProperties": false,
"description": "A boundary is set of points connected by straight lines representing a polygon on the earth. It takes a minimum of three points to make a boundary. Points must be specified in counter-clockwise order and closed (the first and last vertices are the same).",
"properties": {
"Points": {
"items": {
"$ref": "#/definitions/PointType"
},
"minItems": 3,
"type": "array"
}
},
"required": [
"Points"
],
"type": "object"
},
"BoundingRectangleType": {
"additionalProperties": false,
"description": "This entity holds the horizontal spatial coverage of a bounding box.",
"properties": {
"EastBoundingCoordinate": {
"$ref": "#/definitions/LongitudeType"
},
"NorthBoundingCoordinate": {
"$ref": "#/definitions/LatitudeType"
},
"SouthBoundingCoordinate": {
"$ref": "#/definitions/LatitudeType"
},
"WestBoundingCoordinate": {
"$ref": "#/definitions/LongitudeType"
}
},
"required": [
"WestBoundingCoordinate",
"NorthBoundingCoordinate",
"EastBoundingCoordinate",
"SouthBoundingCoordinate"
],
"type": "object"
},
"CampaignType": {
"description": "Information describing campaign names with which the granule is associated.",
"maxLength": 40,
"minLength": 1,
"type": "string"
},
"CharacteristicType": {
"additionalProperties": false,
"description": "This entity is used to reference characteristics defined in the parent collection.",
"properties": {
"Name": {
"description": "The name of the characteristic attribute.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"Value": {
"description": "The value of the Characteristic attribute.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"required": [
"Name",
"Value"
],
"type": "object"
},
"ChecksumType": {
"additionalProperties": false,
"description": "Allows the provider to provide a checksum value and checksum algorithm name to allow the user to calculate the checksum.",
"properties": {
"Algorithm": {
"description": "The algorithm name by which the checksum was calulated. This allows the user to re-calculate the checksum to verify the integrity of the downloaded data.",
"enum": [
"Adler-32",
"BSD checksum",
"Fletcher-32",
"Fletcher-64",
"MD5",
"POSIX",
"SHA-1",
"SHA-2",
"SHA-256",
"SHA-384",
"SHA-512",
"SM3",
"SYSV"
],
"type": "string"
},
"Value": {
"description": "Describes the checksum value for a file.",
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"Value",
"Algorithm"
],
"type": "object"
},
"CollectionReferenceType": {
"description": "A reference to a collection metadata record's short name and version, or entry title to which this granule metadata record belongs.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"ShortName": {
"description": "The collection's short name as per the UMM-C.",
"maxLength": 85,
"minLength": 1,
"type": "string"
},
"Version": {
"description": "The collection's version as per the UMM-C.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"required": [
"ShortName",
"Version"
]
},
{
"additionalProperties": false,
"properties": {
"EntryTitle": {
"description": "The collections entry title as per the UMM-C.",
"maxLength": 1030,
"minLength": 1,
"type": "string"
}
},
"required": [
"EntryTitle"
]
}
],
"type": "object"
},
"DataFormatEnum": {
"enum": [
"ASCII",
"BINARY",
"BMP",
"BUFR",
"CSV",
"GEOTIFF",
"GIF",
"GEOTIFFINT16",
"GEOTIFFFLOAT32",
"GRIB",
"GZIP",
"HDF4",
"HDF5",
"HDF-EOS2",
"HDF-EOS5",
"HTML",
"ICARTT",
"JPEG",
"JSON",
"KML",
"NETCDF-3",
"NETCDF-4",
"NETCDF-CF",
"PNG",
"PNG24",
"TAR",
"TIFF",
"XLSX",
"XML",
"ZIP",
"Not provided"
],
"type": "string"
},
"DataGranuleType": {
"additionalProperties": false,
"description": "This entity stores the basic descriptive characteristics associated with a granule.",
"properties": {
"ArchiveAndDistributionInformation": {
"description": "A list of the file(s) or file package(s) that make up the granule. A file package is something like a tar or zip file.",
"items": {
"$ref": "#/definitions/ArchiveAndDistributionInformationType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"DayNightFlag": {
"description": "This attribute is used to identify if a granule was collected during the day, night (between sunset and sunrise) or both.",
"enum": [
"Day",
"Night",
"Both",
"Unspecified"
],
"type": "string"
},
"Identifiers": {
"description": "This holds any granule identifiers the provider wishes to provide.",
"items": {
"$ref": "#/definitions/IdentifierType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"ProductionDateTime": {
"_format": "date-time",
"description": "The date and time a specific granule was produced by a PGE.",
"type": "string"
},
"ReprocessingActual": {
"description": "Granule level, stating what reprocessing has been performed on this granule.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"ReprocessingPlanned": {
"description": "Granule level, stating what reprocessing may be performed on this granule.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"required": [
"DayNightFlag",
"ProductionDateTime"
],
"type": "object"
},
"DistributionMediaType": {
"description": "This element defines the media by which the end user can obtain the distributable item. Each media type is listed separately. Examples of media include: CD-ROM, 9 track tape, diskettes, hard drives, online, transparencies, hardcopy, etc.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"ExclusiveZoneType": {
"additionalProperties": false,
"description": "Contains the excluded boundaries from the GPolygon.",
"properties": {
"Boundaries": {
"items": {
"$ref": "#/definitions/BoundaryType"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"Boundaries"
],
"type": "object"
},
"FileNameType": {
"description": "This field describes the name of the actual file.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"FilePackageType": {
"additionalProperties": false,
"dependencies": {
"Size": [
"SizeUnit"
]
},
"description": "This set of elements describes a file package or a file that contains other files. Normally this is either a tar or a zip file.",
"properties": {
"Checksum": {
"$ref": "#/definitions/ChecksumType",
"description": "Allows the provider to provide the checksum value for the file."
},
"Files": {
"description": "Allows the provider to add the list of the files that are included in this one.",
"items": {
"$ref": "#/definitions/FileType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"Format": {
"$ref": "#/definitions/DataFormatEnum",
"description": "This element defines a single format for a distributable artifact."
},
"MimeType": {
"$ref": "#/definitions/MimeTypeEnum",
"description": "The mime type of the resource."
},
"Name": {
"$ref": "#/definitions/FileNameType",
"description": "This field describes the name of the actual file."
},
"Size": {
"description": "The size of the file.",
"type": "number"
},
"SizeUnit": {
"$ref": "#/definitions/FileSizeUnitEnum",
"description": "The unit of the file size."
}
},
"required": [
"Name"
],
"type": "object"
},
"FileSizeUnitEnum": {
"description": "The unit of the file size.",
"enum": [
"KB",
"MB",
"GB",
"TB",
"PB",
"NA"
],
"type": "string"
},
"FileType": {
"additionalProperties": false,
"dependencies": {
"Size": [
"SizeUnit"
]
},
"description": "This set of elements describes a file. The file can be a part of the entire granule or is the granule.",
"properties": {
"Checksum": {
"$ref": "#/definitions/ChecksumType",
"description": "Allows the provider to provide the checksum value for the file."
},
"Format": {
"$ref": "#/definitions/DataFormatEnum",
"description": "This element defines a single format for a distributable artifact."
},
"FormatType": {
"description": "Allows the provider to state whether the distributable item's format is its native format or another supported format.",
"enum": [
"Native",
"Supported",
"NA"
],
"type": "string"
},
"MimeType": {
"$ref": "#/definitions/MimeTypeEnum",
"description": "The mime type of the resource."
},
"Name": {
"$ref": "#/definitions/FileNameType",
"description": "This field describes the name of the actual file."
},
"Size": {
"description": "The size of the file.",
"type": "number"
},
"SizeUnit": {
"$ref": "#/definitions/FileSizeUnitEnum",
"description": "The unit of the file size."
}
},
"required": [
"Name"
],
"type": "object"
},
"GPolygonType": {
"additionalProperties": false,
"description": "A GPolygon specifies an area on the earth represented by a main boundary with optional boundaries for regions excluded from the main boundary.",
"properties": {
"Boundary": {
"$ref": "#/definitions/BoundaryType"
},
"ExclusiveZone": {
"$ref": "#/definitions/ExclusiveZoneType"
}
},
"required": [
"Boundary"
],
"type": "object"
},
"GeometryType": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"Points"
]
},
{
"required": [
"BoundingRectangles"
]
},
{
"required": [
"GPolygons"
]
},
{
"required": [
"Lines"
]
}
],
"description": "This entity holds the geometry representing the spatial coverage information of a granule.",
"properties": {
"BoundingRectangles": {
"description": "This entity holds the horizontal spatial coverage of a bounding box.",
"items": {
"$ref": "#/definitions/BoundingRectangleType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"GPolygons": {
"description": "A GPolygon specifies an area on the earth represented by a main boundary with optional boundaries for regions excluded from the main boundary.",
"items": {
"$ref": "#/definitions/GPolygonType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"Lines": {
"description": "This entity holds the horizontal spatial coverage of a line. A line area contains at least two points.",
"items": {
"$ref": "#/definitions/LineType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"Points": {
"description": "The horizontal spatial coverage of a point.",
"items": {
"$ref": "#/definitions/PointType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"GranuleLocalityType": {
"description": "Provides name which spatial/temporal entity is known. This could change on a granule by granule basis. This attribute is paralleled by the AggregationType which applies at the collection level although locality has a more restricted usage. Several locality measures could be included in each granule.",
"maxLength": 1024,
"minLength": 1,
"type": "string"
},
"GridMappingNameType": {
"description": "Represents the native grid mapping of the granule, if the granule is gridded. The grid name must match a grid that has been defined in the parent collection.",
"maxLength": 1024,
"minLength": 1,
"type": "string"
},
"HorizontalSpatialDomainType": {
"additionalProperties": false,
"description": "Information about a granule with horizontal spatial coverage.",
"oneOf": [
{
"required": [
"Geometry"
]
},
{
"required": [
"Orbit"
]
}
],
"properties": {
"Geometry": {
"$ref": "#/definitions/GeometryType",
"description": "This entity holds the geometry representing the spatial coverage information of a granule."
},
"Orbit": {
"$ref": "#/definitions/OrbitType",
"description": "This entity stores orbital coverage information of the granule. This coverage is an alternative way of expressing granule spatial coverage. This information supports orbital backtrack searching on a granule."
},
"Track": {
"$ref": "#/definitions/TrackType",
"description": "This element stores track information of the granule. Track information is used to allow a user to search for granules whose spatial extent is based on an orbital cycle, pass, and tile mapping. Though it is derived from the SWOT mission requirements, it is intended that this element type be generic enough so that other missions can make use of it. While track information is a type of spatial domain, it is expected that the metadata provider will provide geometry information that matches the spatial extent of the track information."
},
"ZoneIdentifier": {
"$ref": "#/definitions/ZoneIdentifierType",
"description": "The appropriate numeric or alpha code used to identify the various zones in the granule's grid coordinate system."
}
},
"type": "object"
},
"IdentifierType": {
"description": "This entity stores an identifier. If the identifier is part of the enumeration then use it. If the enumeration is 'Other', the provider must specify the identifier's name.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"Identifier": {
"description": "The identifier value.",
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"IdentifierName": {
"description": "The name of the identifier.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"IdentifierType": {
"description": "The enumeration of known identifier types.",
"enum": [
"ProducerGranuleId",
"LocalVersionId",
"FeatureId",
"CRID"
],
"type": "string"
}
},
"required": [
"Identifier",
"IdentifierType"
]
},
{
"additionalProperties": false,
"properties": {
"Identifier": {
"description": "The identifier value.",
"maxLength": 128,
"minLength": 1,
"type": "string"
},
"IdentifierName": {
"description": "The Name of identifier.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"IdentifierType": {
"description": "The enumeration of known identifier types.",
"enum": [
"Other"
],
"type": "string"
}
},
"required": [
"Identifier",
"IdentifierType",
"IdentifierName"
]
}
],
"type": "object"
},
"InstrumentType": {
"additionalProperties": false,
"description": "A reference to the device in the parent collection that was used to measure or record data, including direct human observation. In cases where instruments have a single composed of child instrument (sensor) or the instrument and composed of child instrument (sensor) are used synonymously (e.g. AVHRR) the both Instrument and composed of child instrument should be recorded. The child instrument information is represented by child entities. The instrument reference may contain granule specific characteristics and operation modes. These characteristics and modes are not checked against the referenced instrument.",
"properties": {
"Characteristics": {
"description": "This entity is used to define item additional attributes (unprocessed, custom data).",
"items": {
"$ref": "#/definitions/CharacteristicType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"ComposedOf": {
"description": "References to instrument subcomponents in the parent collection's instrument used by various sources in the granule. An instrument subcomponent reference may contain characteristics specific to the granule.",
"items": {
"$ref": "#/definitions/InstrumentType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"OperationalModes": {
"description": "This entity identifies the instrument's operational modes for a specific collection associated with the channel, wavelength, and FOV (e.g., launch, survival, initialization, safe, diagnostic, standby, crosstrack, biaxial, solar calibration).",
"items": {
"maxLength": 20,
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"ShortName": {
"$ref": "#/definitions/ShortNameType"
}
},
"required": [
"ShortName"
],
"type": "object"
},
"LatitudeType": {
"description": "The latitude value of a spatially referenced point, in degrees. Latitude values range from -90 to 90.",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"LineType": {
"additionalProperties": false,
"description": "This entity holds the horizontal spatial coverage of a line. A line area contains at lease two points.",
"properties": {
"Points": {
"items": {
"$ref": "#/definitions/PointType"
},
"minItems": 2,
"type": "array"
}
},
"required": [
"Points"
],
"type": "object"
},
"LongitudeType": {
"description": "The longitude value of a spatially referenced point, in degrees. Longitude values range from -180 to 180.",
"maximum": 180,
"minimum": -180,
"type": "number"
},
"MeasuredParameterType": {
"additionalProperties": false,
"description": "This entity contains the name of the geophysical parameter expressed in the data as well as associated quality flags and quality statistics. The quality statistics element contains measures of quality for the granule. The parameters used to set these measures are not preset and will be determined by the data producer. Each set of measures can occur many times either for the granule as a whole or for individual parameters. The quality flags contain the science, operational and automatic quality flags which indicate the overall quality assurance levels of specific parameter values within a granule.",
"properties": {
"ParameterName": {
"description": "The measured science parameter expressed in the data granule.",
"maxLength": 250,
"minLength": 1,
"type": "string"
},
"QAFlags": {
"$ref": "#/definitions/QAFlagsType",
"description": "The associated quality flags."
},
"QAStats": {
"$ref": "#/definitions/QAStatsType",
"description": "The associated quality statistics."
}
},
"required": [
"ParameterName"
],
"type": "object"
},
"MetadataSpecificationType": {
"additionalProperties": false,
"description": "This object requires any metadata record that is validated by this schema to provide information about the schema.",
"properties": {
"Name": {
"description": "This element represents the name of the schema.",
"enum": [
"UMM-G"
],
"type": "string"
},
"URL": {
"description": "This element represents the URL where the schema lives. The schema can be downloaded.",
"enum": [
"https://cdn.earthdata.nasa.gov/umm/granule/v1.5"
],
"type": "string"
},
"Version": {
"description": "This element represents the version of the schema.",
"enum": [
"1.5"
],
"type": "string"
}
},
"required": [
"URL",
"Name",
"Version"
],
"type": "object"
},
"MimeTypeEnum": {
"enum": [
"application/json",
"application/xml",
"application/x-netcdf",
"application/x-hdfeos",
"application/gml+xml",
"application/vnd.google-earth.kml+xml",
"image/gif",
"image/tiff",
"image/bmp",
"text/csv",
"text/xml",
"application/pdf",
"application/x-hdf",
"application/x-hdf5",
"application/octet-stream",
"application/vnd.google-earth.kmz",
"image/jpeg",
"image/png",
"image/vnd.collada+xml",
"text/html",
"text/plain",
"application/zip",
"application/gzip",
"application/tar",
"application/tar+gzip",
"application/tar+zip",
"Not provided"
],
"type": "string"
},
"OrbitCalculatedSpatialDomainType": {
"additionalProperties": false,
"allOf": [
{
"not": {
"required": [
"OrbitNumber",
"BeginOrbitNumber"
]
}
},
{
"not": {
"required": [
"OrbitNumber",
"EndOrbitNumber"
]
}
}
],
"anyOf": [
{
"required": [
"OrbitalModelName"
]
},
{
"required": [
"EquatorCrossingLongitude"
]
},
{
"required": [
"EquatorCrossingDateTime"
]
},
{
"required": [
"OrbitNumber"
]
},
{
"required": [
"BeginOrbitNumber",
"EndOrbitNumber"
]
}
],
"description": "This entity is used to store the characteristics of the orbit calculated spatial domain to include the model name, orbit number, start and stop orbit number, equator crossing date and time, and equator crossing longitude.",
"properties": {
"BeginOrbitNumber": {
"description": "Orbit number at the start of the data granule.",
"type": "integer"
},
"EndOrbitNumber": {
"description": "Orbit number at the end of the data granule.",
"type": "integer"
},
"EquatorCrossingDateTime": {
"_format": "date-time",
"description": "This attribute represents the date and time of the descending equator crossing.",
"type": "string"
},
"EquatorCrossingLongitude": {
"$ref": "#/definitions/LongitudeType",
"description": "This attribute represents the terrestrial longitude of the descending equator crossing."
},
"OrbitNumber": {
"description": "The orbit number to be used in calculating the spatial extent of this data.",
"type": "integer"
},
"OrbitalModelName": {
"description": "The reference to the orbital model to be used to calculate the geo-location of this data in order to determine global spatial extent.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"OrbitDirectionTypeEnum": {
"description": "Orbit start and end direction. A for ascending orbit and D for descending.",
"enum": [
"A",
"D"
],
"type": "string"
},
"OrbitType": {
"additionalProperties": false,
"description": "This entity stores orbital coverage information of the granule. This coverage is an alternative way of expressing granule spatial coverage. This information supports orbital backtrack searching on a granule.",
"properties": {
"AscendingCrossing": {
"$ref": "#/definitions/LongitudeType",
"description": "Equatorial crossing on the ascending pass in decimal degrees longitude. The convention we've been using is it's the first included ascending crossing if one is included, and the prior ascending crossing if none is included (e.g. descending half orbits)."
},
"EndDirection": {
"$ref": "#/definitions/OrbitDirectionTypeEnum",
"description": "Ascending or descending. Valid input: 'A' or 'D'"
},
"EndLatitude": {
"$ref": "#/definitions/LatitudeType",
"description": "Granule's ending latitude."
},
"StartDirection": {
"$ref": "#/definitions/OrbitDirectionTypeEnum",
"description": "Ascending or descending. Valid input: 'A' or 'D'"
},
"StartLatitude": {
"$ref": "#/definitions/LatitudeType",
"description": "Granule's starting latitude."
}
},
"required": [
"AscendingCrossing",
"StartLatitude",
"StartDirection",
"EndLatitude",
"EndDirection"
],
"type": "object"
},
"PGEVersionClassType": {
"additionalProperties": false,
"description": "This entity stores basic descriptive characteristics related to the Product Generation Executable associated with a granule.",
"properties": {
"PGEName": {
"description": "Name of product generation executable.",
"maxLength": 1024,
"minLength": 1,
"type": "string"
},
"PGEVersion": {
"description": "Version of the product generation executable that produced the granule.",
"maxLength": 10,
"minLength": 1,
"type": "string"
}
},
"required": [
"PGEVersion"
],
"type": "object"
},
"PlatformType": {
"additionalProperties": false,
"description": "A reference to a platform in the parent collection that is associated with the acquisition of the granule. The platform must exist in the parent collection. For example, Platform types may include (but are not limited to): ADEOS-II, AEM-2, Terra, Aqua, Aura, BALLOONS, BUOYS, C-130, DEM, DMSP-F1,etc.",
"properties": {
"Instruments": {
"description": "References to the devices in the parent collection that were used to measure or record data, including direct human observation.",
"items": {
"$ref": "#/definitions/InstrumentType"
},
"minItems": 1,
"type": "array"
},
"ShortName": {
"$ref": "#/definitions/ShortNameType"
}
},
"required": [
"ShortName"
],
"type": "object"
},
"PointType": {
"additionalProperties": false,
"description": "The longitude and latitude values of a spatially referenced point in degrees.",
"properties": {
"Latitude": {
"$ref": "#/definitions/LatitudeType"
},
"Longitude": {
"$ref": "#/definitions/LongitudeType"
}
},
"required": [
"Longitude",
"Latitude"
],
"type": "object"
},
"ProjectType": {
"additionalProperties": false,
"description": "Information describing the scientific endeavor with which the granule is associated.",
"properties": {
"Campaigns": {
"description": "The name of the campaign/experiment (e.g. Global climate observing system).",
"items": {
"$ref": "#/definitions/CampaignType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"ShortName": {
"description": "The unique identifier by which a project is known. The project is the scientific endeavor associated with the acquisition of the collection.",
"maxLength": 40,
"minLength": 1,
"type": "string"
}
},
"required": [
"ShortName"
],
"type": "object"
},
"ProjectionNameType": {
"description": "Represents the native projection of the granule if the granule has a native projection. The projection name must match the projection that has been defined in the parent collection.",
"enum": [
"Geographic",
"Mercator",
"Spherical Mercator",
"Space Oblique Mercator",
"Universal Transverse Mercator",
"Military Grid Reference",
"MODIS Sinusoidal System",
"Sinusoidal",
"Lambert Equal Area",
"NSIDC EASE Grid North and South (Lambert EA)",
"NSIDC EASE Grid Global",
"EASE Grid 2.0 N. Polar",
"Plate Carree",
"Polar Stereographic",
"WELD Albers Equal Area",
"Canadian Albers Equal Area Conic",
"Lambert Conformal Conic",
"State Plane Coordinates",
"Albers Equal Area Conic",
"Transverse Mercator",
"Lambert Azimuthal Equal Area",
"UTM Northern Hemisphere",
"NAD83 / UTM zone 17N",
"UTM Southern Hemisphere",
"Cylindrical"
],
"type": "string"
},
"ProviderDateType": {
"additionalProperties": false,
"description": "Specifies the date and its type that the provider uses for the granule. For Create, Update, and Insert the date is the date that the granule file is created, updated, or inserted into the provider database by the provider. Delete is the date that the CMR should delete the granule metadata record from its repository.",
"properties": {
"Date": {
"_format": "date-time",
"description": "This is the date that an event associated with the granule occurred.",
"type": "string"
},
"Type": {
"$ref": "#/definitions/ProviderDateTypeEnum",
"description": "This is the type of event associated with the date. For example, Creation or Upate."
}
},
"required": [
"Date",
"Type"
],
"type": "object"
},
"ProviderDateTypeEnum": {
"description": "The types of dates that a metadata record can have.",
"enum": [
"Create",
"Insert",
"Update",
"Delete"
],
"type": "string"
},
"QAFlagsType": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"AutomaticQualityFlag"
]
},
{
"required": [
"OperationalQualityFlag"
]
},
{
"required": [
"ScienceQualityFlag"
]
}
],
"description": "The quality flags contain the science, operational and automatic quality flags which indicate the overall quality assurance levels of specific parameter values within a granule.",
"properties": {
"AutomaticQualityFlag": {
"description": "The granule level flag applying generally to the granule and specifically to parameters the granule level. When applied to parameter, the flag refers to the quality of that parameter for the granule (as applicable). The parameters determining whether the flag is set are defined by the developer and documented in the Quality Flag Explanation.",
"enum": [
"Passed",
"Failed",
"Suspect",
"Undetermined"
],
"type": "string"
},
"AutomaticQualityFlagExplanation": {
"description": "A text explanation of the criteria used to set automatic quality flag; including thresholds or other criteria.",
"maxLength": 2048,
"minLength": 1,
"type": "string"
},
"OperationalQualityFlag": {
"description": "The granule level flag applying both generally to a granule and specifically to parameters at the granule level. When applied to parameter, the flag refers to the quality of that parameter for the granule (as applicable). The parameters determining whether the flag is set are defined by the developers and documented in the QualityFlagExplanation.",
"enum": [
"Passed",
"Failed",
"Being Investigated",
"Not Investigated",
"Inferred Passed",
"Inferred Failed",
"Suspect",
"Undetermined"
],
"type": "string"
},
"OperationalQualityFlagExplanation": {
"description": "A text explanation of the criteria used to set operational quality flag; including thresholds or other criteria.",
"maxLength": 2048,
"minLength": 1,
"type": "string"
},
"ScienceQualityFlag": {
"description": "Granule level flag applying to a granule, and specifically to parameters. When applied to parameter, the flag refers to the quality of that parameter for the granule (as applicable). The parameters determining whether the flag is set are defined by the developers and documented in the Quality Flag Explanation.",
"enum": [
"Passed",
"Failed",
"Being Investigated",
"Not Investigated",
"Inferred Passed",
"Inferred Failed",
"Suspect",
"Hold",
"Undetermined"
],
"type": "string"
},
"ScienceQualityFlagExplanation": {
"description": "A text explanation of the criteria used to set science quality flag; including thresholds or other criteria.",
"maxLength": 2048,
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"QAStatsType": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"QAPercentMissingData"
]
},
{
"required": [
"QAPercentOutOfBoundsData"
]
},
{
"required": [
"QAPercentInterpolatedData"
]
},
{
"required": [
"QAPercentCloudCover"
]
}
],
"description": "The quality statistics element contains measures of quality for the granule. The parameters used to set these measures are not preset and will be determined by the data producer. Each set of measures can occur many times either for the granule as a whole or for individual parameters.",
"properties": {
"QAPercentCloudCover": {
"description": "This attribute is used to characterize the cloud cover amount of a granule. This attribute may be repeated for individual parameters within a granule. (Note - there may be more than one way to define a cloud or it's effects within a product containing several parameters; i.e. this attribute may be parameter specific).",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"QAPercentInterpolatedData": {
"description": "Granule level % interpolated data. This attribute can be repeated for individual parameters within a granule.",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"QAPercentMissingData": {
"description": "Granule level % missing data. This attribute can be repeated for individual parameters within a granule.",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"QAPercentOutOfBoundsData": {
"description": "Granule level % out of bounds data. This attribute can be repeated for individual parameters within a granule.",
"maximum": 100,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"RangeDateTimeType": {
"additionalProperties": false,
"description": "Stores the data acquisition start and end date/time for a granule.",
"properties": {
"BeginningDateTime": {
"_format": "date-time",
"description": "The time when the temporal coverage period being described began.",
"type": "string"
},
"EndingDateTime": {
"_format": "date-time",
"description": "The time when the temporal coverage period being described ended.",
"type": "string"
}
},
"required": [
"BeginningDateTime"
],
"type": "object"
},
"RelatedUrlSubTypeEnum": {
"enum": [
"MOBILE APP",
"APPEARS",
"DATA COLLECTION BUNDLE",
"DATA TREE",
"DATACAST URL",
"DIRECT DOWNLOAD",
"EOSDIS DATA POOL",
"Earthdata Search",
"GIOVANNI",
"GoLIVE Portal",
"IceBridge Portal",
"LAADS",
"LANCE",
"MIRADOR",
"MODAPS",
"NOAA CLASS",
"NOMADS",
"Order",
"PORTAL",
"Subscribe",
"USGS EARTH EXPLORER",
"VERTEX",
"VIRTUAL COLLECTION",
"MAP",
"WORLDVIEW",
"LIVE ACCESS SERVER (LAS)",
"MAP VIEWER",
"SIMPLE SUBSET WIZARD (SSW)",
"SUBSETTER",
"GRADS DATA SERVER (GDS)",
"MAP SERVICE",
"OPENDAP DATA",
"OpenSearch",
"SERVICE CHAINING",
"TABULAR DATA STREAM (TDS)",
"THREDDS DATA",
"WEB COVERAGE SERVICE (WCS)",
"WEB FEATURE SERVICE (WFS)",
"WEB MAP SERVICE (WMS)",
"WEB MAP TILE SERVICE (WMTS)",
"ALGORITHM DOCUMENTATION",
"ALGORITHM THEORETICAL BASIS DOCUMENT (ATBD)",
"ANOMALIES",
"CASE STUDY",
"DATA CITATION POLICY",
"DATA QUALITY",
"DATA RECIPE",
"DELIVERABLES CHECKLIST",
"GENERAL DOCUMENTATION",
"HOW-TO",
"IMPORTANT NOTICE",
"INSTRUMENT/SENSOR CALIBRATION DOCUMENTATION",
"MICRO ARTICLE",
"PI DOCUMENTATION",
"PROCESSING HISTORY",
"PRODUCT HISTORY",
"PRODUCT QUALITY ASSESSMENT",
"PRODUCT USAGE",
"PRODUCTION HISTORY",
"PUBLICATIONS",
"READ-ME",
"REQUIREMENTS AND DESIGN",
"SCIENCE DATA PRODUCT SOFTWARE DOCUMENTATION",
"SCIENCE DATA PRODUCT VALIDATION",
"USER FEEDBACK PAGE",
"USER'S GUIDE"
],
"type": "string"
},
"RelatedUrlType": {
"additionalProperties": false,
"dependencies": {
"Size": [
"SizeUnit"
]
},
"description": "This entity holds all types of online URL associated with the granule such as guide document or ordering site etc.",
"properties": {
"Description": {
"description": "Description of the web page at this URL.",
"maxLength": 4000,
"minLength": 1,
"type": "string"
},
"Format": {
"$ref": "#/definitions/DataFormatEnum",
"description": "The format of the resource."
},
"MimeType": {
"$ref": "#/definitions/MimeTypeEnum",
"description": "The mime type of the resource."
},
"Size": {
"description": "The size of the resource.",
"type": "number"
},
"SizeUnit": {
"$ref": "#/definitions/FileSizeUnitEnum",
"description": "Unit of information, together with Size determines total size in bytes of the resource."
},
"Subtype": {
"$ref": "#/definitions/RelatedUrlSubTypeEnum",
"description": "A keyword that provides more detailed information than Type of the online resource to this resource. For example if the Type=VIEW RELATED INFORMATION then the Subtype can be USER'S GUIDE or GENERAL DOCUMENTATION"
},
"Type": {
"$ref": "#/definitions/RelatedUrlTypeEnum",
"description": "A keyword describing the type of the online resource to this resource."
},
"URL": {
"description": "The URL for the relevant resource.",
"maxLength": 1024,
"minLength": 1,
"type": "string"
}
},
"required": [
"URL",
"Type"
],
"type": "object"
},
"RelatedUrlTypeEnum": {
"enum": [
"DOWNLOAD SOFTWARE",
"EXTENDED METADATA",
"GET DATA",
"GET RELATED VISUALIZATION",
"GOTO WEB TOOL",
"PROJECT HOME PAGE",
"USE SERVICE API",
"VIEW RELATED INFORMATION"
],
"type": "string"
},
"ShortNameType": {
"description": "The unique name of the platform or instrument.",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"SpatialExtentType": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"GranuleLocalities"
]
},
{
"required": [
"HorizontalSpatialDomain"
]
},
{
"required": [
"VerticalSpatialDomains"
]
}
],
"description": "This class contains attributes which describe the spatial extent of a granule. Spatial Extent includes any or all of Granule Localities, Horizontal Spatial Domain, and Vertical Spatial Domain.",
"properties": {
"GranuleLocalities": {
"description": "This entity stores information used at the granule level to describe the labeling of granules with compounded time/space text values and which are subsequently used to define more phenomenological-based granules, thus the locality type and description are contained.",
"items": {
"$ref": "#/definitions/GranuleLocalityType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"HorizontalSpatialDomain": {
"$ref": "#/definitions/HorizontalSpatialDomainType",
"description": "This represents the granule horizontal spatial domain information."
},
"VerticalSpatialDomains": {
"description": "This represents the domain value and type for the granule's vertical spatial domain.",
"items": {
"$ref": "#/definitions/VerticalSpatialDomainType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
}
},
"type": "object"
},
"TemporalExtentType": {
"description": "Information which describes the temporal extent of a specific granule.",
"oneOf": [
{
"additionalProperties": false,
"properties": {
"RangeDateTime": {
"$ref": "#/definitions/RangeDateTimeType",
"description": "Stores the data acquisition start and end date/time for a granule."
}
},
"required": [
"RangeDateTime"
]
},
{
"additionalProperties": false,
"properties": {
"SingleDateTime": {
"_format": "date-time",
"description": "Stores the data acquisition date/time for a granule.",
"type": "string"
}
},
"required": [
"SingleDateTime"
]
}
],
"type": "object"
},
"TilingCoordinateType": {
"additionalProperties": false,
"description": "Defines the minimum and maximum value for one dimension of a two dimensional coordinate system.",
"properties": {
"MaximumValue": {
"type": "number"
},
"MinimumValue": {
"type": "number"
}
},
"required": [
"MinimumValue"
],
"type": "object"
},
"TilingIdentificationSystemNameEnum": {
"enum": [
"CALIPSO",
"MISR",
"MODIS Tile EASE",
"MODIS Tile SIN",
"SMAP Tile EASE",
"WELD Alaska Tile",
"WELD CONUS Tile",
"WRS-1",
"WRS-2"
],
"type": "string"
},
"TilingIdentificationSystemType": {
"additionalProperties": false,
"description": "This entity stores the tiling identification system for the granule. The tiling identification system information is an alternative way to express granule's spatial coverage based on a certain two dimensional coordinate system defined by the providers. The name must match the name in the parent collection.",
"properties": {
"Coordinate1": {
"$ref": "#/definitions/TilingCoordinateType"
},
"Coordinate2": {
"$ref": "#/definitions/TilingCoordinateType"
},
"TilingIdentificationSystemName": {
"$ref": "#/definitions/TilingIdentificationSystemNameEnum"
}
},
"required": [
"TilingIdentificationSystemName",
"Coordinate1",
"Coordinate2"
],
"type": "object"
},
"TrackPassTileType": {
"additionalProperties": false,
"description": "This element stores a track pass and its tile information. It will allow a user to search by pass number and their tiles that are contained with in a cycle number. While trying to keep this generic for all to use, this comes from a SWOT requirement where a pass represents a 1/2 orbit. This element will then hold a list of 1/2 orbits and their tiles that together represent the granules spatial extent.",
"properties": {
"Pass": {
"description": "A pass number identifies a subset of a granule's spatial extent. This element holds a pass number that exists in the granule and will allow a user to search by pass number that is contained within a cycle number. While trying to keep this generic for all to use, this comes from a SWOT requirement where a pass represents a 1/2 orbit.",
"type": "integer"
},
"Tiles": {
"description": "A tile is a subset of a pass' spatial extent. This element holds a list of tile identifiers that exist in the granule and will allow a user to search by tile identifier that is contained within a pass number within a cycle number. Though intended to be generic, this comes from a SWOT mission requirement where a tile is a spatial extent that encompasses either a square scanning swath to the left or right of the ground track or a rectangle that includes a full scanning swath both to the left and right of the ground track.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"Pass"
],
"type": "object"
},
"TrackType": {
"additionalProperties": false,
"description": "This element stores track information of the granule. Track information is used to allow a user to search for granules whose spatial extent is based on an orbital cycle, pass, and tile mapping. Though it is derived from the SWOT mission requirements, it is intended that this element type be generic enough so that other missions can make use of it. While track information is a type of spatial domain, it is expected that the metadata provider will provide geometry information that matches the spatial extent of the track information.",
"properties": {
"Cycle": {
"description": "An integer that represents a specific set of orbital spatial extents defined by passes and tiles. Though intended to be generic, this comes from a SWOT mission requirement where each cycle represents a set of 1/2 orbits. Each 1/2 orbit is called a 'pass'. During science mode, a cycle represents 21 days of 14 full orbits or 588 passes.",
"type": "integer"
},
"Passes": {
"description": "A pass number identifies a subset of a granule's spatial extent. This element holds a list of pass numbers and their tiles that exist in the granule. It will allow a user to search by pass number and its tiles that are contained with in a cycle number. While trying to keep this generic for all to use, this comes from a SWOT requirement where a pass represents a 1/2 orbit. This element will then hold a list of 1/2 orbits and their tiles that together represent the granule's spatial extent.",
"items": {
"$ref": "#/definitions/TrackPassTileType"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"Cycle",
"Passes"
],
"type": "object"
},
"VerticalSpatialDomainType": {
"additionalProperties": false,
"allOf": [
{
"not": {
"required": [
"Value",
"MinimumValue"
]
}
},
{
"not": {
"required": [
"Value",
"MaximumValue"
]
}
}
],
"description": "This entity contains the type and value for the granule's vertical spatial domain.",
"oneOf": [
{
"required": [
"Type",
"Value"
]
},
{
"required": [
"Type",
"MinimumValue",
"MaximumValue"
]
}
],
"properties": {
"MaximumValue": {
"description": "Describes the extent of the area of vertical space covered by the granule. Use this and MinimumValue to represent a range of values (Min and Max).",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"MinimumValue": {
"description": "Describes the extent of the area of vertical space covered by the granule. Use this and MaximumValue to represent a range of values (Min and Max).",
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"Type": {
"$ref": "#/definitions/VerticalSpatialDomainTypeEnum",
"description": "Describes the type of the area of vertical space covered by the granule locality."
},
"Unit": {
"description": "Describes the unit of the vertical extent value.",
"enum": [
"Fathoms",
"Feet",
"HectoPascals",
"Kilometers",
"Meters",
"Millibars",
"PoundsPerSquareInch",
"Atmosphere",
"InchesOfMercury",
"InchesOfWater"
],
"type": "string"
},
"Value": {
"description": "Describes the extent of the area of vertical space covered by the granule. Use this for Atmosphere profiles or for a specific value.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"VerticalSpatialDomainTypeEnum": {
"enum": [
"Atmosphere Layer",
"Pressure",
"Altitude",
"Depth"
],
"type": "string"
},
"ZoneIdentifierType": {
"description": "The appropriate numeric or alpha code used to identify the various zones in the granule's grid coordinate system.",
"maxLength": 80,
"minLength": 1,
"type": "string"
}
},
"properties": {
"AccessConstraints": {
"$ref": "#/definitions/AccessConstraintsType",
"description": "Allows the author to constrain access to the granule. Some words that may be used in this element's value include: Public, In-house, Limited, None. The value field is used for special ACL rules (Access Control Lists (http://en.wikipedia.org/wiki/Access_control_list)). For example it can be used to hide metadata when it isn't ready for public consumption."
},
"AdditionalAttributes": {
"description": "Reference to an additional attribute in the parent collection. The attribute reference may contain a granule specific value that will override the value in the parent collection for this granule. An attribute with the same name must exist in the parent collection.",
"items": {
"$ref": "#/definitions/AdditionalAttributeType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"CloudCover": {
"description": "A percentage value indicating how much of the area of a granule (the EOSDIS data unit) has been obscured by clouds. It is worth noting that there are many different measures of cloud cover within the EOSDIS data holdings and that the cloud cover parameter that is represented in the archive is dataset-specific.",
"type": "number"
},
"CollectionReference": {
"$ref": "#/definitions/CollectionReferenceType",
"description": "The collection metadata record's short name and version, or entry title to which this granule metadata record belongs."
},
"DataGranule": {
"$ref": "#/definitions/DataGranuleType",
"description": "This entity stores basic descriptive characteristics associated with a granule."
},
"GranuleUR": {
"description": "The Universal Reference ID of the granule referred by the data provider. This ID is unique per data provider.",
"maxLength": 250,
"minLength": 1,
"type": "string"
},
"GridMappingNames": {
"description": "Represents the native grid mapping of the granule, if the granule is gridded.",
"items": {
"$ref": "#/definitions/GridMappingNameType"
},
"type": "array"
},
"InputGranules": {
"description": "This entity contains the identification of the input granule(s) for a specific granule.",
"items": {
"maxLength": 500,
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"MeasuredParameters": {
"description": "This entity contains the name of the geophysical parameter expressed in the data as well as associated quality flags and quality statistics. The quality statistics element contains measures of quality for the granule. The parameters used to set these measures are not preset and will be determined by the data producer. Each set of measures can occur many times either for the granule as a whole or for individual parameters. The quality flags contain the science, operational and automatic quality flags which indicate the overall quality assurance levels of specific parameter values within a granule.",
"items": {
"$ref": "#/definitions/MeasuredParameterType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"MetadataSpecification": {
"$ref": "#/definitions/MetadataSpecificationType",
"description": "Requires the user to add in schema information into every granule record. It includes the schema's name, version, and URL location. The information is controlled through enumerations at the end of this schema."
},
"NativeProjectionNames": {
"description": "Represents the native projection of the granule if the granule has a native projection.",
"items": {
"$ref": "#/definitions/ProjectionNameType"
},
"type": "array"
},
"OrbitCalculatedSpatialDomains": {
"description": "This entity is used to store the characteristics of the orbit calculated spatial domain to include the model name, orbit number, start and stop orbit number, equator crossing date and time, and equator crossing longitude.",
"items": {
"$ref": "#/definitions/OrbitCalculatedSpatialDomainType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"PGEVersionClass": {
"$ref": "#/definitions/PGEVersionClassType",
"description": "This entity stores basic descriptive characteristics related to the Product Generation Executable associated with a granule."
},
"Platforms": {
"description": "A reference to a platform in the parent collection that is associated with the acquisition of the granule. The platform must exist in the parent collection. For example, Platform types may include (but are not limited to): ADEOS-II, AEM-2, Terra, Aqua, Aura, BALLOONS, BUOYS, C-130, DEM, DMSP-F1,etc.",
"items": {
"$ref": "#/definitions/PlatformType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"Projects": {
"description": "The name of the scientific program, field campaign, or project from which the data were collected. This element is intended for the non-space assets such as aircraft, ground systems, balloons, sondes, ships, etc. associated with campaigns. This element may also cover a long term project that continuously creates new data sets \u2014 like MEaSUREs from ISCCP and NVAP or CMARES from MISR. Project also includes the Campaign sub-element to support multiple campaigns under the same project.",
"items": {
"$ref": "#/definitions/ProjectType"
},
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"ProviderDates": {
"description": "Dates related to activities involving the the granule and the data provider database with the exception for Delete. For Create, Update, and Insert the date is the date that the granule file is created, updated, or inserted into the provider database by the provider. Delete is the date that the CMR should delete the granule metadata record from its repository.",
"items": {
"$ref": "#/definitions/ProviderDateType"
},
"maxItems": 4,
"minItems": 1,
"type": "array",
"_uniqueItems": true
},
"RelatedUrls": {
"description": "This element describes any data/service related URLs that include project home pages, services, related data archives/servers, metadata extensions, direct links to online software packages, web mapping services, links to images, or other data.",
"items": {
"$ref": "#/definitions/RelatedUrlType"
},
"minItems": 1,
"type": "array"
},
"SpatialExtent": {
"$ref": "#/definitions/SpatialExtentType",
"description": "This class contains attributes which describe the spatial extent of a granule. Spatial Extent includes any or all of Granule Localities, Horizontal Spatial Domain, and Vertical Spatial Domain."
},
"TemporalExtent": {
"$ref": "#/definitions/TemporalExtentType",
"description": "This class contains attributes which describe the temporal extent of a granule. Temporal Extent includes either a Range Date Time, or a Single Date Time"
},
"TilingIdentificationSystem": {
"$ref": "#/definitions/TilingIdentificationSystemType",
"description": "This entity stores the tiling identification system for the granule. The tiling identification system information is an alternative way to express granule's spatial coverage based on a certain two dimensional coordinate system defined by the providers. The name must match the name in the parent collection."
}
},
"required": [
"GranuleUR",
"ProviderDates",
"CollectionReference",
"MetadataSpecification"
],
"title": "UMM-G",
"type": "object"
} | o62897 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"allOf": [
{
"required": [
"bodyTemplate",
"subjectTemplate",
"fromTemplate",
"sendgridApiKey"
]
},
{
"anyOf": [
{
"required": [
"toAddresses"
]
},
{
"required": [
"ccAddresses"
]
},
{
"required": [
"bccAddresses"
]
}
]
}
],
"properties": {
"bccAddresses": {
"items": {
"_format": "email",
"minLength": 1,
"title": "Email Address",
"type": "string"
},
"minItems": 1,
"title": "BCC Addresses",
"type": "array"
},
"bodyTemplate": {
"minLength": 1,
"title": "Body Template",
"type": "string"
},
"ccAddresses": {
"items": {
"_format": "email",
"minLength": 1,
"title": "Email Address",
"type": "string"
},
"minItems": 1,
"title": "CC Addresses",
"type": "array"
},
"fromTemplate": {
"minLength": 1,
"title": "From Template",
"type": "string"
},
"replyToTemplate": {
"minLength": 1,
"title": "Reply-To Template",
"type": "string"
},
"resultPath": {
"description": "JSON path to store SendGrid response",
"minLength": 1,
"title": "Result Path",
"type": "string"
},
"sendgridApiKey": {
"minLength": 1,
"title": "SendGrid API Key",
"type": "string"
},
"subjectTemplate": {
"minLength": 1,
"title": "Subject Template",
"type": "string"
},
"toAddresses": {
"items": {
"_format": "email",
"minLength": 1,
"title": "Email Address",
"type": "string"
},
"minItems": 1,
"title": "To Addresses",
"type": "array"
}
},
"type": "object"
} | o6247 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Playas",
"description": "Playas de Euskadi",
"type": "array",
"properties": {
"LaginketadataFechamuestreo": {
"description": "Fecha de muestreo",
"type": "string"
},
"LurraldeaTerritorio": {
"description": "Territorio",
"type": "string"
},
"UdalerriaMunicipio": {
"description": "Udalerria",
"type": "string"
},
"BainueremuaZonadebano": {
"description": "Zona de banyo",
"type": "string"
},
"LaginketapuntuaPuntodemuestreo": {
"description": "Zona de muestreo",
"type": "string"
},
"Codigodelpuntodemuestreo": {
"description": "Codigo del punto de muestreo",
"type": "string"
},
"UrtekosailkapenaClasificacionanual1": {
"description": "Clasificacion anual",
"type": "string"
},
"UrarenegoeraCalidaddelagua": {
"description": "Calidad del agua",
"type": "string"
},
"HondartzarenegoeraCalidaddelaplaya": {
"description": "Calidad de la playa ",
"type": "string"
},
"InformaziogehiagoMasinformacion": {
"description": "Mas informacion",
"type": "string"
},
"X_UTM": {
"description": "UTM-X",
"type": "string"
},
"Y_UTM": {
"description": "UTM-Y",
"type": "string"
}
},
"required": [
"LaginketadataFechamuestreo",
"LurraldeaTerritorio",
"UdalerriaMunicipio",
"BainueremuaZonadebano",
"LaginketapuntuaPuntodemuestreo",
"Codigodelpuntodemuestreo",
"UrtekosailkapenaClasificacionanual1",
"UrarenegoeraCalidaddelagua",
"HondartzarenegoeraCalidaddelaplaya",
"X_UTM",
"Y_UTM"
]
} | o60227 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/Highlight.args.scheme.json",
"title": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b Highlight",
"description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043a \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u044b\u0437\u043e\u0432\u0443 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b Highlight",
"type": "object",
"definitions": {
"MatrixIndex": {
"description": "\u0418\u043d\u0434\u0435\u043a\u0441 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u043c\u0430\u0442\u0440\u0438\u0446\u044b",
"type": [
"integer",
"null"
],
"minimum": 0
},
"Color": {
"description": "\u0426\u0432\u0435\u0442 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 RGB",
"type": [
"integer",
"null"
]
}
},
"properties": {
"t_id": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 t_id",
"type": "number"
},
"row": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 row",
"$ref": "#/definitions/MatrixIndex"
},
"col": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 col",
"$ref": "#/definitions/MatrixIndex"
},
"b_color": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 b_color",
"$ref": "#/definitions/Color"
},
"f_color": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 f_color",
"$ref": "#/definitions/Color"
},
"timeout": {
"description": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 timeout",
"type": "number"
}
},
"additionalProperties": false,
"required": [
"t_id",
"timeout"
]
} | o5147 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"webhookId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"applicationId": {
"type": "string",
"pattern": "^[A-Fa-f\\d]{24}$"
},
"creationDate": {
"type": "string",
"format": "date-time"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"token": {
"type": "string"
}
}
} | o6268 |
{
"properties": {
"alertonly": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"as_scan_location_xss": {
"enum": [
"FORMFIELD",
"HEADER",
"COOKIE"
],
"type": "string"
},
"as_value_expr_xss": {
"type": "string"
},
"as_value_type_xss": {
"enum": [
"Tag",
"Attribute",
"Pattern"
],
"type": "string"
},
"comment": {
"type": "string"
},
"crosssitescripting": {
"type": "string"
},
"formactionurl_xss": {
"type": "string"
},
"isautodeployed": {
"enum": [
"AUTODEPLOYED",
"NOTAUTODEPLOYED"
],
"type": "string"
},
"isregex_xss": {
"enum": [
"REGEX",
"NOTREGEX"
],
"type": "string"
},
"isvalueregex_xss": {
"enum": [
"REGEX",
"NOTREGEX"
],
"type": "string"
},
"name": {
"type": "string"
},
"state": {
"enum": [
"ENABLED",
"DISABLED"
],
"type": "string"
}
},
"title": "appfwprofile_crosssitescripting_binding",
"type": "object"
} | o30006 |
{
"properties": {
"assertionconsumerserviceurl": {
"type": "string"
},
"attribute1": {
"type": "string"
},
"attribute10": {
"type": "string"
},
"attribute10expr": {
"type": "string"
},
"attribute10format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute10friendlyname": {
"type": "string"
},
"attribute11": {
"type": "string"
},
"attribute11expr": {
"type": "string"
},
"attribute11format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute11friendlyname": {
"type": "string"
},
"attribute12": {
"type": "string"
},
"attribute12expr": {
"type": "string"
},
"attribute12format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute12friendlyname": {
"type": "string"
},
"attribute13": {
"type": "string"
},
"attribute13expr": {
"type": "string"
},
"attribute13format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute13friendlyname": {
"type": "string"
},
"attribute14": {
"type": "string"
},
"attribute14expr": {
"type": "string"
},
"attribute14format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute14friendlyname": {
"type": "string"
},
"attribute15": {
"type": "string"
},
"attribute15expr": {
"type": "string"
},
"attribute15format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute15friendlyname": {
"type": "string"
},
"attribute16": {
"type": "string"
},
"attribute16expr": {
"type": "string"
},
"attribute16format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute16friendlyname": {
"type": "string"
},
"attribute1expr": {
"type": "string"
},
"attribute1format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute1friendlyname": {
"type": "string"
},
"attribute2": {
"type": "string"
},
"attribute2expr": {
"type": "string"
},
"attribute2format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute2friendlyname": {
"type": "string"
},
"attribute3": {
"type": "string"
},
"attribute3expr": {
"type": "string"
},
"attribute3format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute3friendlyname": {
"type": "string"
},
"attribute4": {
"type": "string"
},
"attribute4expr": {
"type": "string"
},
"attribute4format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute4friendlyname": {
"type": "string"
},
"attribute5": {
"type": "string"
},
"attribute5expr": {
"type": "string"
},
"attribute5format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute5friendlyname": {
"type": "string"
},
"attribute6": {
"type": "string"
},
"attribute6expr": {
"type": "string"
},
"attribute6format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute6friendlyname": {
"type": "string"
},
"attribute7": {
"type": "string"
},
"attribute7expr": {
"type": "string"
},
"attribute7format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute7friendlyname": {
"type": "string"
},
"attribute8": {
"type": "string"
},
"attribute8expr": {
"type": "string"
},
"attribute8format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute8friendlyname": {
"type": "string"
},
"attribute9": {
"type": "string"
},
"attribute9expr": {
"type": "string"
},
"attribute9format": {
"enum": [
"URI",
"Basic"
],
"type": "string"
},
"attribute9friendlyname": {
"type": "string"
},
"audience": {
"type": "string"
},
"digestmethod": {
"enum": [
"SHA1",
"SHA256"
],
"type": "string"
},
"encryptassertion": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"encryptionalgorithm": {
"enum": [
"DES3",
"AES128",
"AES192",
"AES256"
],
"type": "string"
},
"name": {
"type": "string"
},
"nameidexpr": {
"type": "string"
},
"nameidformat": {
"enum": [
"Unspecified",
"emailAddress",
"X509SubjectName",
"WindowsDomainQualifiedName",
"kerberos",
"entity",
"persistent",
"transient"
],
"type": "string"
},
"relaystaterule": {
"type": "string"
},
"samlissuername": {
"type": "string"
},
"samlsigningcertname": {
"type": "string"
},
"samlspcertname": {
"type": "string"
},
"sendpassword": {
"enum": [
"ON",
"OFF"
],
"type": "string"
},
"signassertion": {
"enum": [
"NONE",
"ASSERTION",
"RESPONSE",
"BOTH"
],
"type": "string"
},
"signaturealg": {
"enum": [
"RSA-SHA1",
"RSA-SHA256"
],
"type": "string"
},
"signatureservice": {
"type": "string"
},
"skewtime": {
"type": "integer"
}
},
"title": "vpnsamlssoprofile",
"type": "object"
} | o31176 |
{
"$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"
},
"title": {
"type": "string"
},
"options": {
"type": "array",
"items": {
"properties": {
"title": {
"type": "string"
},
"category": {
"type": "string"
}
}
}
}
},
"if": {
"properties": {
"type": {
"const": "action"
}
}
},
"then": {
"anyOf": [
{
"required": [
"title"
]
},
{
"required": [
"options"
],
"properties": {
"options": {
"minItems": 1,
"items": {
"required": [
"title"
]
}
}
}
}
],
"required": [
"category"
]
}
}
},
"dependencies": {
"type": "array",
"items": {
"type": "string"
}
},
"scripts": {
"type": "array",
"items": {
"type": "string"
}
},
"modules": {
"type": "array",
"items": {
"type": "string"
}
},
"resources": {
"type": "array",
"items": {
"type": "string"
}
},
"skip_compilation": {
"type": "array",
"items": {
"type": "string"
}
},
"experiment": {
"type": "string"
}
},
"definitions": {}
} | o39097 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "openrtb-v2_0-schema-bid_request",
"description": "json schema for an openrtb v2.0 bid request (http://www.iab.net/media/file/OpenRTB_API_Specification_Version2.0_FINAL.PDF)",
"type": "object",
"required": [
"id",
"imp"
],
"not": {
"allOf": [
{
"required": [
"site"
]
},
{
"required": [
"app"
]
}
]
},
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"imp": {
"type": "array",
"items": {
"$ref": "#/definitions/imp"
}
},
"site": {
"$ref": "#/definitions/site"
},
"app": {
"$ref": "#/definitions/app"
},
"device": {
"$ref": "#/definitions/device"
},
"user": {
"$ref": "#/definitions/user"
},
"at": {
"type": "integer"
},
"tmax": {
"$ref": "#/definitions/positive_int"
},
"wseat": {
"type": "array",
"items": {
"type": "string"
}
},
"allimps": {
"$ref": "#/definitions/boolean_int"
},
"cur": {
"type": "array",
"items": {
"$ref": "#/definitions/currency"
}
},
"bcat": {
"type": "array",
"items": {
"type": "string"
}
},
"badv": {
"type": "array",
"items": {
"type": "string"
}
},
"ext": {
"type": "object"
}
},
"definitions": {
"imp": {
"type": "object",
"required": [
"id"
],
"anyOf": [
{
"required": [
"banner"
]
},
{
"required": [
"video"
]
}
],
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"banner": {
"$ref": "#/definitions/banner"
},
"video": {
"$ref": "#/definitions/video"
},
"displaymanager": {
"type": "string"
},
"displaymanagerver": {
"type": "string"
},
"instl": {
"$ref": "#/definitions/boolean_int"
},
"tagid": {
"type": "string"
},
"bidfloor": {
"type": "number",
"minimum": 0
},
"bidfloorcur": {
"$ref": "#/definitions/currency"
},
"iframebuster": {
"type": "array",
"items": {
"type": "string"
}
},
"ext": {
"type": "object"
}
}
},
"banner": {
"type": "object",
"additionalProperties": false,
"properties": {
"w": {
"$ref": "#/definitions/positive_int"
},
"h": {
"$ref": "#/definitions/positive_int"
},
"id": {
"type": "string"
},
"pos": {
"$ref": "#/definitions/ad_position"
},
"btype": {
"type": "array",
"items": {
"$ref": "#/definitions/banner_ad_type"
}
},
"battr": {
"type": "array",
"items": {
"$ref": "#/definitions/creative_attribute"
}
},
"mimes": {
"type": "array",
"items": {
"type": "string"
}
},
"topframe": {
"$ref": "#/definitions/boolean_int"
},
"expdir": {
"type": "array",
"items": {
"$ref": "#/definitions/expandable_direction"
}
},
"api": {
"type": "array",
"items": {
"$ref": "#/definitions/api_framework"
}
}
}
},
"video": {
"type": "object",
"required": [
"mimes",
"linearity",
"minduration",
"maxduration",
"protocol"
],
"additionalProperties": false,
"properties": {
"mimes": {
"type": "array",
"items": {
"type": "string"
}
},
"linearity": {
"$ref": "#/definitions/video_linearity"
},
"minduration": {
"$ref": "#/definitions/positive_int"
},
"maxduration": {
"$ref": "#/definitions/positive_int"
},
"protocol": {
"$ref": "#/definitions/video_bid_response_protocol"
},
"w": {
"$ref": "#/definitions/positive_int"
},
"h": {
"$ref": "#/definitions/positive_int"
},
"startdelay": {
"$ref": "#/definitions/video_start_delay"
},
"sequence": {
"type": "integer"
},
"battr": {
"type": "array",
"items": {
"$ref": "#/definitions/creative_attribute"
}
},
"maxextended": {
"type": "integer",
"minimum": -1
},
"minbitrate": {
"$ref": "#/definitions/positive_int"
},
"maxbitrate": {
"$ref": "#/definitions/positive_int"
},
"boxingallowed": {
"$ref": "#/definitions/boolean_int"
},
"playbackmethod": {
"type": "array",
"items": {
"$ref": "#/definitions/video_playback_method"
}
},
"delivery": {
"type": "array",
"items": {
"$ref": "#/definitions/content_delivery_method"
}
},
"pos": {
"$ref": "#/definitions/ad_position"
},
"companionad": {
"type": "array",
"items": {
"$ref": "#/definitions/banner"
}
},
"api": {
"type": "array",
"items": {
"$ref": "#/definitions/api_framework"
}
}
}
},
"site": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"domain": {
"type": "string"
},
"cat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"sectioncat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"pagecat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"page": {
"type": "string"
},
"privacypolicy": {
"$ref": "#/definitions/boolean_int"
},
"ref": {
"type": "string"
},
"search": {
"type": "string"
},
"publisher": {
"$ref": "#/definitions/publisher"
},
"content": {
"$ref": "#/definitions/content"
},
"keywords": {
"type": "string"
}
}
},
"app": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"domain": {
"type": "string"
},
"cat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"sectioncat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"pagecat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"ver": {
"type": "string"
},
"bundle": {
"type": "string"
},
"privacypolicy": {
"$ref": "#/definitions/boolean_int"
},
"paid": {
"$ref": "#/definitions/boolean_int"
},
"publisher": {
"$ref": "#/definitions/publisher"
},
"content": {
"$ref": "#/definitions/content"
},
"keywords": {
"type": "string"
}
}
},
"content": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"episode": {
"type": "integer"
},
"title": {
"type": "string"
},
"series": {
"type": "string"
},
"season": {
"type": "string"
},
"url": {
"type": "string"
},
"cat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"videoquality": {
"$ref": "#/definitions/video_quality"
},
"keywords": {
"type": "string"
},
"contentrating": {
"type": "string"
},
"userrating": {
"type": "string"
},
"context": {
"$ref": "#/definitions/content_context"
},
"livestream": {
"$ref": "#/definitions/boolean_int"
},
"sourcerelationship": {
"$ref": "#/definitions/boolean_int"
},
"producer": {
"$ref": "#/definitions/producer"
},
"len": {
"$ref": "#/definitions/positive_int"
}
}
},
"publisher": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"cat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"domain": {
"type": "string"
}
}
},
"producer": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"cat": {
"type": "array",
"items": {
"$ref": "#/definitions/content_category"
}
},
"domain": {
"type": "string"
}
}
},
"device": {
"type": "object",
"additionalProperties": false,
"properties": {
"dnt": {
"$ref": "#/definitions/boolean_int"
},
"ua": {
"type": "string"
},
"ip": {
"type": "string",
"format": "ipv4"
},
"geo": {
"$ref": "#/definitions/geo"
},
"didsha1": {
"type": "string"
},
"didmd5": {
"type": "string"
},
"dpidsha1": {
"type": "string"
},
"dpidmd5": {
"type": "string"
},
"ipv6": {
"type": "string",
"format": "ipv6"
},
"carrier": {
"type": "string"
},
"language": {
"$ref": "#/definitions/language"
},
"make": {
"type": "string"
},
"model": {
"type": "string"
},
"os": {
"type": "string"
},
"osv": {
"type": "string"
},
"js": {
"$ref": "#/definitions/boolean_int"
},
"connectiontype": {
"$ref": "#/definitions/connection_type"
},
"devicetype": {
"$ref": "#/definitions/device_type"
},
"flashver": {
"type": "string"
}
}
},
"geo": {
"type": "object",
"additionalProperties": false,
"properties": {
"lat": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"lon": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"country": {
"type": "string",
"minLength": 3,
"maxLength": 3
},
"region": {
"type": "string"
},
"regionfips104": {
"type": "string"
},
"metro": {
"type": "string"
},
"city": {
"type": "string"
},
"zip": {
"type": "string"
},
"type": {
"$ref": "#/definitions/location_type"
}
}
},
"user": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"buyeruid": {
"type": "string"
},
"yob": {
"type": "integer",
"minimum": 1000,
"maximum": 9999
},
"gender": {
"type": "string",
"enum": [
"M",
"F",
"O"
]
},
"keywords": {
"type": "string"
},
"customdata": {
"type": "string"
},
"geo": {
"$ref": "#/definitions/geo"
},
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/data"
}
}
}
},
"data": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"segment": {
"type": "array",
"items": {
"$ref": "#/definitions/segment"
}
}
}
},
"segment": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"content_category": {
"type": "string",
"enum": [
"IAB1",
"IAB1-1",
"IAB1-2",
"IAB1-3",
"IAB1-4",
"IAB1-5",
"IAB1-6",
"IAB1-7",
"IAB2",
"IAB2-1",
"IAB2-2",
"IAB2-3",
"IAB2-4",
"IAB2-5",
"IAB2-6",
"IAB2-7",
"IAB2-8",
"IAB2-9",
"IAB2-10",
"IAB2-11",
"IAB2-12",
"IAB2-13",
"IAB2-14",
"IAB2-15",
"IAB2-16",
"IAB2-17",
"IAB2-18",
"IAB2-19",
"IAB2-20",
"IAB2-21",
"IAB2-22",
"IAB2-23",
"IAB3",
"IAB3-1",
"IAB3-2",
"IAB3-3",
"IAB3-4",
"IAB3-5",
"IAB3-6",
"IAB3-7",
"IAB3-8",
"IAB3-9",
"IAB3-10",
"IAB3-11",
"IAB3-12",
"IAB4",
"IAB4-1",
"IAB4-2",
"IAB4-3",
"IAB4-4",
"IAB4-5",
"IAB4-6",
"IAB4-7",
"IAB4-8",
"IAB4-9",
"IAB4-10",
"IAB4-11",
"IAB5",
"IAB5-1",
"IAB5-2",
"IAB5-3",
"IAB5-4",
"IAB5-5",
"IAB5-6",
"IAB5-7",
"IAB5-8",
"IAB5-9",
"IAB5-10",
"IAB5-11",
"IAB5-12",
"IAB5-13",
"IAB5-14",
"IAB5-15",
"IAB6",
"IAB6-1",
"IAB6-2",
"IAB6-3",
"IAB6-4",
"IAB6-5",
"IAB6-6",
"IAB6-7",
"IAB6-8",
"IAB6-9",
"IAB7",
"IAB7-1",
"IAB7-2",
"IAB7-3",
"IAB7-4",
"IAB7-5",
"IAB7-6",
"IAB7-7",
"IAB7-8",
"IAB7-9",
"IAB7-10",
"IAB7-11",
"IAB7-12",
"IAB7-13",
"IAB7-14",
"IAB7-15",
"IAB7-16",
"IAB7-17",
"IAB7-18",
"IAB7-19",
"IAB7-20",
"IAB7-21",
"IAB7-22",
"IAB7-23",
"IAB7-24",
"IAB7-25",
"IAB7-26",
"IAB7-27",
"IAB7-28",
"IAB7-29",
"IAB7-30",
"IAB7-31",
"IAB7-32",
"IAB7-33",
"IAB7-34",
"IAB7-35",
"IAB7-36",
"IAB7-37",
"IAB7-38",
"IAB7-39",
"IAB7-40",
"IAB7-41",
"IAB7-42",
"IAB7-43",
"IAB7-44",
"IAB7-45",
"IAB8",
"IAB8-1",
"IAB8-2",
"IAB8-3",
"IAB8-4",
"IAB8-5",
"IAB8-6",
"IAB8-7",
"IAB8-8",
"IAB8-9",
"IAB8-10",
"IAB8-11",
"IAB8-12",
"IAB8-13",
"IAB8-14",
"IAB8-15",
"IAB8-16",
"IAB8-17",
"IAB8-18",
"IAB9",
"IAB9-1",
"IAB9-2",
"IAB9-3",
"IAB9-4",
"IAB9-5",
"IAB9-6",
"IAB9-7",
"IAB9-8",
"IAB9-9",
"IAB9-10",
"IAB9-11",
"IAB9-12",
"IAB9-13",
"IAB9-14",
"IAB9-15",
"IAB9-16",
"IAB9-17",
"IAB9-18",
"IAB9-19",
"IAB9-20",
"IAB9-21",
"IAB9-22",
"IAB9-23",
"IAB9-24",
"IAB9-25",
"IAB9-26",
"IAB9-27",
"IAB9-28",
"IAB9-29",
"IAB9-30",
"IAB9-31",
"IAB10",
"IAB10-1",
"IAB10-2",
"IAB10-3",
"IAB10-4",
"IAB10-5",
"IAB10-6",
"IAB10-7",
"IAB10-8",
"IAB10-9",
"IAB11",
"IAB11-1",
"IAB11-2",
"IAB11-3",
"IAB11-4",
"IAB11-5",
"IAB12",
"IAB12-1",
"IAB12-2",
"IAB12-3",
"IAB13",
"IAB13-1",
"IAB13-2",
"IAB13-3",
"IAB13-4",
"IAB13-5",
"IAB13-6",
"IAB13-7",
"IAB13-8",
"IAB13-9",
"IAB13-10",
"IAB13-11",
"IAB13-12",
"IAB14",
"IAB14-1",
"IAB14-2",
"IAB14-3",
"IAB14-4",
"IAB14-5",
"IAB14-6",
"IAB14-7",
"IAB14-8",
"IAB15",
"IAB15-1",
"IAB15-2",
"IAB15-3",
"IAB15-4",
"IAB15-5",
"IAB15-6",
"IAB15-7",
"IAB15-8",
"IAB15-9",
"IAB15-10",
"IAB16",
"IAB16-1",
"IAB16-2",
"IAB16-3",
"IAB16-4",
"IAB16-5",
"IAB16-6",
"IAB16-7",
"IAB17",
"IAB17-1",
"IAB17-2",
"IAB17-3",
"IAB17-4",
"IAB17-5",
"IAB17-6",
"IAB17-7",
"IAB17-8",
"IAB17-9",
"IAB17-10",
"IAB17-11",
"IAB17-12",
"IAB17-13",
"IAB17-14",
"IAB17-15",
"IAB17-16",
"IAB17-17",
"IAB17-18",
"IAB17-19",
"IAB17-20",
"IAB17-21",
"IAB17-22",
"IAB17-23",
"IAB17-24",
"IAB17-25",
"IAB17-26",
"IAB17-27",
"IAB17-28",
"IAB17-29",
"IAB17-30",
"IAB17-31",
"IAB17-32",
"IAB17-33",
"IAB17-34",
"IAB17-35",
"IAB17-36",
"IAB17-37",
"IAB17-38",
"IAB17-39",
"IAB17-40",
"IAB17-41",
"IAB17-42",
"IAB17-43",
"IAB17-44",
"IAB18",
"IAB18-1",
"IAB18-2",
"IAB18-3",
"IAB18-4",
"IAB18-5",
"IAB18-6",
"IAB19",
"IAB19-1",
"IAB19-2",
"IAB19-3",
"IAB19-4",
"IAB19-5",
"IAB19-6",
"IAB19-7",
"IAB19-8",
"IAB19-9",
"IAB19-10",
"IAB19-11",
"IAB19-12",
"IAB19-13",
"IAB19-14",
"IAB19-15",
"IAB19-16",
"IAB19-17",
"IAB19-18",
"IAB19-19",
"IAB19-20",
"IAB19-21",
"IAB19-22",
"IAB19-23",
"IAB19-24",
"IAB19-25",
"IAB19-26",
"IAB19-27",
"IAB19-28",
"IAB19-29",
"IAB19-30",
"IAB19-31",
"IAB19-32",
"IAB19-33",
"IAB19-34",
"IAB19-35",
"IAB19-36",
"IAB20",
"IAB20-1",
"IAB20-2",
"IAB20-3",
"IAB20-4",
"IAB20-5",
"IAB20-6",
"IAB20-7",
"IAB20-8",
"IAB20-9",
"IAB20-10",
"IAB20-11",
"IAB20-12",
"IAB20-13",
"IAB20-14",
"IAB20-15",
"IAB20-16",
"IAB20-17",
"IAB20-18",
"IAB20-19",
"IAB20-20",
"IAB20-21",
"IAB20-22",
"IAB20-23",
"IAB20-24",
"IAB20-25",
"IAB20-26",
"IAB20-27",
"IAB21",
"IAB21-1",
"IAB21-2",
"IAB21-3",
"IAB22",
"IAB22-1",
"IAB22-2",
"IAB22-3",
"IAB22-4",
"IAB23",
"IAB23-1",
"IAB23-2",
"IAB23-3",
"IAB23-4",
"IAB23-5",
"IAB23-6",
"IAB23-7",
"IAB23-8",
"IAB23-9",
"IAB23-10",
"IAB24",
"IAB25",
"IAB25-1",
"IAB25-2",
"IAB25-3",
"IAB25-4",
"IAB25-5",
"IAB25-6",
"IAB25-7",
"IAB26",
"IAB26-1",
"IAB26-2",
"IAB26-3",
"IAB26-4"
]
},
"banner_ad_type": {
"type": "integer",
"minimum": 1,
"maximum": 4
},
"creative_attribute": {
"type": "integer",
"minimum": 1,
"maximum": 16
},
"api_framework": {
"type": "integer",
"minimum": 1,
"maximum": 4
},
"ad_position": {
"type": "integer",
"minimum": 0,
"maximum": 3
},
"video_linearity": {
"type": "integer",
"minimum": 1,
"maximum": 2
},
"video_bid_response_protocol": {
"type": "integer",
"minimum": 1,
"maximum": 6
},
"video_playback_method": {
"type": "integer",
"minimum": 1,
"maximum": 4
},
"video_start_delay": {
"type": "integer",
"minimum": -2,
"maximum": 0
},
"connection_type": {
"type": "integer",
"minimum": 0,
"maximum": 6
},
"expandable_direction": {
"type": "integer",
"minimum": 1,
"maximum": 4
},
"content_delivery_method": {
"type": "integer",
"minimum": 1,
"maximum": 2
},
"content_context": {
"type": "string",
"enum": [
"1",
"2",
"3",
"4",
"5",
"6",
"7"
]
},
"video_quality": {
"type": "integer",
"minimum": 0,
"maximum": 3
},
"location_type": {
"type": "integer",
"minimum": 1,
"maximum": 3
},
"device_type": {
"type": "integer",
"minimum": 1,
"maximum": 3
},
"boolean_int": {
"type": "integer",
"minimum": 0,
"maximum": 1
},
"positive_int": {
"type": "integer",
"minimum": 0
},
"currency": {
"type": "string",
"minLength": 3,
"maxLength": 3,
"pattern": "[a-zA-Z]{3}"
},
"language": {
"type": "string",
"minLength": 2,
"maxLength": 2
}
}
} | o65671 |
{
"additionalProperties": true,
"properties": {
"error": {
"type": "string"
},
"info": {
"type": "object"
},
"success": {
"type": "boolean"
},
"target": {
"properties": {
"configuration": {
"type": "string"
},
"project": {
"type": "string"
},
"target": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"success"
],
"title": "Output schema for builders.",
"type": "object"
} | o64858 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "ModuleGroup schema",
"description": "Specifies a group of libnoise and Wangscape modules with output and possible inputs.",
"properties": {
"defaultoutputmodule": {
"type": "string",
"title": "ModuleGroup defaultoutputmodule schema",
"description": "Specifies which of the keys in 'modules' contains the module which should be used for the module group's output."
},
"inputmodules": {
"type": "array",
"title": "ModuleGroup inputmodules schema",
"description": "Specifies which of the keys in Modules, if any, contain modules which should be used to relay the module group's external input modules.",
"items": {
"type": "string",
"title": "Specifies a key in Modules which contains a module that should be used to relay one of the module group's external input modules. The module referred to must be of a type with at least one source module, and only the first will be used."
}
},
"modules": {
"type": "object",
"title": "ModuleGroup modules schema",
"description": "Specifies the names, types, and attributes of a group of libnoise and Wangscape modules.",
"additionalProperties": {
"oneOf": [
{
"$ref": "#/definitions/abs"
},
{
"$ref": "#/definitions/add"
},
{
"$ref": "#/definitions/billow"
},
{
"$ref": "#/definitions/bitmap"
},
{
"$ref": "#/definitions/blend"
},
{
"$ref": "#/definitions/cache"
},
{
"$ref": "#/definitions/checkerboard"
},
{
"$ref": "#/definitions/clamp"
},
{
"$ref": "#/definitions/const"
},
{
"$ref": "#/definitions/corner_combiner_base"
},
{
"$ref": "#/definitions/curve"
},
{
"$ref": "#/definitions/cylinders"
},
{
"$ref": "#/definitions/displace"
},
{
"$ref": "#/definitions/divide"
},
{
"$ref": "#/definitions/exponent"
},
{
"$ref": "#/definitions/exp"
},
{
"$ref": "#/definitions/forward"
},
{
"$ref": "#/definitions/gradient_x"
},
{
"$ref": "#/definitions/gradient_y"
},
{
"$ref": "#/definitions/gradient_z"
},
{
"$ref": "#/definitions/invert"
},
{
"$ref": "#/definitions/logarithm"
},
{
"$ref": "#/definitions/max"
},
{
"$ref": "#/definitions/min"
},
{
"$ref": "#/definitions/multiply"
},
{
"$ref": "#/definitions/norm_lp_q"
},
{
"$ref": "#/definitions/perlin"
},
{
"$ref": "#/definitions/power"
},
{
"$ref": "#/definitions/pow"
},
{
"$ref": "#/definitions/quadrant_selector"
},
{
"$ref": "#/definitions/reciprocal"
},
{
"$ref": "#/definitions/ridged_multi"
},
{
"$ref": "#/definitions/rotate_point"
},
{
"$ref": "#/definitions/scale_bias"
},
{
"$ref": "#/definitions/scale_point"
},
{
"$ref": "#/definitions/select"
},
{
"$ref": "#/definitions/spheres"
},
{
"$ref": "#/definitions/terrace"
},
{
"$ref": "#/definitions/translate_point"
},
{
"$ref": "#/definitions/turbulence"
},
{
"$ref": "#/definitions/voronoi"
}
]
}
}
},
"required": [
"defaultoutputmodule",
"modules"
],
"definitions": {
"source_module_1": {
"oneOf": [
{
"type": "string",
"title": "Module SourceModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's source module."
},
{
"type": "array",
"title": "Module SourceModules schema",
"description": "Specifies an array of keys in this module group which contain the modules that should be used as this module's source modules.",
"minLength": 1,
"maxLength": 1,
"items": {
"type": "string",
"title": "Module SourceModules item schema",
"description": "Specifies a key in this module group which contains a module that should be used as one of this module's source modules."
}
}
]
},
"source_module_2": {
"type": "array",
"title": "Module SourceModules schema",
"description": "Specifies an array of keys in this module group which contain the modules that should be used as this module's source modules.",
"minLength": 2,
"maxLength": 2,
"items": {
"type": "string",
"title": "Module SourceModules item schema",
"description": "Specifies a key in this module group which contains a module that should be used as one of this module's source modules."
}
},
"noise_quality": {
"oneOf": [
{
"type": "string",
"enum": [
"Fast",
"Standard",
"Best"
]
},
{
"type": "number",
"enum": [
0,
1,
2
]
}
]
},
"comment": {
"type": "string",
"title": "Module comment schema",
"description": "Specifies a comment in a module for documentation purposes."
},
"abs": {
"type": "object",
"title": "Abs module schema",
"description": "Specifies an Abs module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Abs.",
"pattern": "^Abs$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"add": {
"type": "object",
"title": "Add module schema",
"description": "Specifies an Add module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Add.",
"pattern": "^Add$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"billow": {
"type": "object",
"title": "Billow module schema",
"description": "Specifies a Billow module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Billow.",
"pattern": "^Billow$"
},
"Frequency": {
"type": "number",
"title": "Billow module Frequency schema",
"description": "Specifies the value of Frequency used in this Billow module."
},
"Lacunarity": {
"type": "number",
"title": "Billow module Lacunarity schema",
"description": "Specifies the value of Lacunarity used in this Billow module."
},
"Persistence": {
"type": "number",
"title": "Billow module Persistence schema",
"description": "Specifies the value of Persistence used in this Billow module."
},
"OctaveCount": {
"type": "number",
"title": "Billow module OctaveCount schema",
"description": "Specifies the value of OctaveCount used in this Billow module.",
"multipleOf": 1,
"minValue": 1
},
"NoiseQuality": {
"$ref": "#/definitions/noise_quality"
},
"Seed": {
"type": "number",
"title": "Billow module Seed schema",
"description": "Specifies the value of Seed used in this Billow module.",
"multipleOf": 1
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"bitmap": {
"type": "object",
"title": "Bitmap module schema",
"description": "Specifies a Bitmap module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Bitmap.",
"pattern": "^Bitmap$"
},
"Filename": {
"type": "string",
"title": "Bitmap module Filename schema",
"description": "Specifies the filename of the image used in this Bitmap module."
},
"MaxScale": {
"type": "boolean",
"title": "Bitmap module MaxScale schema",
"description": "Specifies the value of MaxScale used in this Bitmap module."
},
"Region": {
"type": "array",
"title": "Bitmap module Region schema",
"description": "Specifies the rectangular region of noise coordinates where the image data will be used. The first pair of coordinates is the top left, and the second pair is the size.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "number"
}
}
},
"DefaultValue": {
"type": "number",
"title": "Bitmap module DefaultValue schema",
"description": "Specifies the value returned by the Bitmap module when the requested coordinates are outside the image region"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"Filename"
]
},
"blend": {
"type": "object",
"title": "Blend module schema",
"description": "Specifies a Blend module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Blend.",
"pattern": "^Blend$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"ControlModule": {
"type": "string",
"title": "Blend Module ControlModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's control module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule",
"ControlModule"
]
},
"cache": {
"type": "object",
"title": "Cache module schema",
"description": "Specifies a Cache module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Cache.",
"pattern": "^Cache$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"checkerboard": {
"type": "object",
"title": "Checkerboard module schema",
"description": "Specifies a Checkerboard module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Checkerboard.",
"pattern": "^Checkerboard$"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"clamp": {
"type": "object",
"title": "Clamp module schema",
"description": "Specifies a Clamp module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Clamp.",
"pattern": "^Clamp$"
},
"Bounds": {
"type": "array",
"title": "Clamp module Bounds schema",
"description": "Specifies the value of Bounds used in this Clamp module.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "number"
}
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"const": {
"type": "object",
"title": "Const module schema",
"description": "Specifies a Const module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Const.",
"pattern": "^Const$"
},
"ConstValue": {
"type": "number",
"title": "Const module ConstValue schema",
"description": "Specifies the value of ConstValue used in this Const module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"corner_combiner_base": {
"type": "object",
"title": "CornerCombinerBase module schema",
"description": "Specifies a CornerCombinerBase module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type CornerCombinerBase.",
"pattern": "^CornerCombinerBase$"
},
"Power": {
"type": "number",
"title": "CornerCombinerBase module Power schema",
"description": "Specifies the value of Power used in this CornerCombinerBase module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"curve": {
"type": "object",
"title": "Curve module schema",
"description": "Specifies a Curve module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Curve.",
"pattern": "^Curve$"
},
"ControlPoints": {
"type": "array",
"title": "Curve module ControlPoints schema",
"description": "Specifies the value of ControlPoints used in this Curve module.",
"minItems": 4,
"_uniqueItems": true,
"items": {
"type": "array",
"title": "Curve Module ControlPoint schema",
"description": "Specifies one of the ControlPoints used in this Curve Module.",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "number"
}
}
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"cylinders": {
"type": "object",
"title": "Cylinders module schema",
"description": "Specifies a Cylinders module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Cylinders.",
"pattern": "^Cylinders$"
},
"Frequency": {
"type": "number",
"title": "Cylinders module Frequency schema",
"description": "Specifies the value of Frequency used in this Cylinders module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"displace": {
"type": "object",
"title": "Displace module schema",
"description": "Specifies a Displace module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Displace.",
"pattern": "^Displace$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"DisplaceModules": {
"type": "array",
"title": "Module DisplaceModules schema",
"description": "Specifies an array of keys in this module group which contain the modules that should be used as this module's displacement modules.",
"minLength": 3,
"maxLength": 3,
"items": {
"type": "string",
"title": "Module DisplaceModules item schema",
"description": "Specifies a key in this module group which contains a module that should be used as one of this module's displacement modules."
}
},
"XDisplaceModule": {
"type": "string",
"title": "Module XDisplaceModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's X displacement module."
},
"YDisplaceModule": {
"type": "string",
"title": "Module YDisplaceModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's Y displacement module."
},
"ZDisplaceModule": {
"type": "string",
"title": "Module ZDisplaceModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's Z displacement module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"allOf": [
{
"required": [
"type",
"SourceModule"
]
},
{
"anyOf": [
{
"not": {
"required": [
"DisplaceModules"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XDisplaceModule"
]
}
},
{
"not": {
"required": [
"YDisplaceModule"
]
}
},
{
"not": {
"required": [
"ZDisplaceModule"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XDisplaceModule"
]
}
},
{
"not": {
"required": [
"YDisplaceModule"
]
}
},
{
"not": {
"required": [
"ZDisplaceModule"
]
}
},
{
"not": {
"required": [
"DisplaceModules"
]
}
}
]
}
]
}
]
},
"divide": {
"type": "object",
"title": "Divide module schema",
"description": "Specifies a Divide module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Divide.",
"pattern": "^Divide$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"exponent": {
"type": "object",
"title": "Exponent module schema",
"description": "Specifies an Exponent module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Exponent.",
"pattern": "^Exponent$"
},
"Exponent": {
"type": "number",
"title": "Exponent module Exponent schema",
"description": "Specifies the value of Exponent used in this Exponent module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"exp": {
"type": "object",
"title": "Exp module schema",
"description": "Specifies an Exp module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Exp.",
"pattern": "^Exp$"
},
"Base": {
"type": "number",
"title": "Exp module Base schema",
"description": "Specifies the value of Base used in this Exp module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"forward": {
"type": "object",
"title": "Forward module schema",
"description": "Specifies a Forward module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Forward. Forward modules are intended to have source modules external to the module group, so the SourceModule field is optional.",
"pattern": "^Forward$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"gradient_x": {
"type": "object",
"title": "GradientX module schema",
"description": "Specifies a GradientX module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type GradientX.",
"pattern": "^GradientX$"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"gradient_y": {
"type": "object",
"title": "GradientY module schema",
"description": "Specifies a GradientY module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type GradientY.",
"pattern": "^GradientY$"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"gradient_z": {
"type": "object",
"title": "GradientZ module schema",
"description": "Specifies a GradientZ module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type GradientZ.",
"pattern": "^GradientZ$"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"invert": {
"type": "object",
"title": "Invert module schema",
"description": "Specifies an Invert module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Invert.",
"pattern": "^Invert$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"logarithm": {
"type": "object",
"title": "Logarithm module schema",
"description": "Specifies a Logarithm module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Logarithm.",
"pattern": "^Logarithm$"
},
"Base": {
"type": "number",
"title": "Logarithm module Base schema",
"description": "Specifies the value of Base used in this Logarithm module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"max": {
"type": "object",
"title": "Max module schema",
"description": "Specifies a Max module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Max.",
"pattern": "^Max$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"min": {
"type": "object",
"title": "Min module schema",
"description": "Specifies a Min module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Min.",
"pattern": "^Min$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"multiply": {
"type": "object",
"title": "Multiply module schema",
"description": "Specifies a Multiply module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Multiply.",
"pattern": "^Multiply$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"norm_lp_q": {
"type": "object",
"title": "NormLPQ module schema",
"description": "Specifies a NormLPQ module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type NormLPQ.",
"pattern": "^NormLPQ$"
},
"P": {
"type": "number",
"title": "NormLPQ module P schema",
"description": "Specifies the value of P used in this NormLPQ module."
},
"Q": {
"type": "number",
"title": "NormLPQ module Q schema",
"description": "Specifies the value of Q used in this NormLPQ module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"perlin": {
"type": "object",
"title": "Perlin module schema",
"description": "Specifies a Perlin module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Perlin.",
"pattern": "^Perlin$"
},
"Frequency": {
"type": "number",
"title": "Perlin module Frequency schema",
"description": "Specifies the value of Frequency used in this Perlin module."
},
"Lacunarity": {
"type": "number",
"title": "Perlin module Lacunarity schema",
"description": "Specifies the value of Lacunarity used in this Perlin module."
},
"Persistence": {
"type": "number",
"title": "Perlin module Persistence schema",
"description": "Specifies the value of Persistence used in this Perlin module."
},
"OctaveCount": {
"type": "number",
"title": "Perlin module OctaveCount schema",
"description": "Specifies the value of OctaveCount used in this Perlin module.",
"multipleOf": 1,
"minValue": 1
},
"NoiseQuality": {
"$ref": "#/definitions/noise_quality"
},
"Seed": {
"type": "number",
"title": "Perlin module Seed schema",
"description": "Specifies the value of Seed used in this Perlin module.",
"multipleOf": 1
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"power": {
"type": "object",
"title": "Power module schema",
"description": "Specifies a Power module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Power.",
"pattern": "^Power$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"pow": {
"type": "object",
"title": "Pow module schema",
"description": "Specifies a Pow module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Pow.",
"pattern": "^Pow$"
},
"Exponent": {
"type": "number",
"title": "Pow module Exponent schema",
"description": "Specifies the value of Exponent used in this Pow module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"quadrant_selector": {
"type": "object",
"title": "QuadrantSelector module schema",
"description": "Specifies a QuadrantSelector module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type QuadrantSelector.",
"pattern": "^QuadrantSelector$"
},
"Translate": {
"type": "array",
"title": "QuadrantSelector module Translate schema",
"description": "Specifies the value of Translate used in this QuadrantSelector module.",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "boolean"
}
},
"XTranslate": {
"type": "boolean",
"title": "QuadrantSelector module XTranslate schema",
"description": "Specifies the value of XTranslate used in this QuadrantSelector module."
},
"YTranslate": {
"type": "boolean",
"title": "QuadrantSelector module YTranslate schema",
"description": "Specifies the value of YTranslate used in this QuadrantSelector module."
},
"ZTranslate": {
"type": "boolean",
"title": "QuadrantSelector module ZTranslate schema",
"description": "Specifies the value of ZTranslate used in this QuadrantSelector module."
},
"TranslateIgnored": {
"type": "array",
"title": "QuadrantSelector module TranslateIgnored schema",
"description": "Specifies the value of TranslateIgnored used in this QuadrantSelector module.",
"minItems": 3,
"maxItems": 3,
"items": {
"type": "boolean"
}
},
"XTranslateIgnored": {
"type": "boolean",
"title": "QuadrantSelector module XTranslateIgnored schema",
"description": "Specifies the value of XTranslateIgnored used in this QuadrantSelector module."
},
"YTranslateIgnored": {
"type": "boolean",
"title": "QuadrantSelector module YTranslateIgnored schema",
"description": "Specifies the value of YTranslateIgnored used in this QuadrantSelector module."
},
"ZTranslateIgnored": {
"type": "boolean",
"title": "QuadrantSelector module ZTranslateIgnored schema",
"description": "Specifies the value of ZTranslateIgnored used in this QuadrantSelector module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"allOf": [
{
"required": [
"type",
"SourceModule"
]
},
{
"anyOf": [
{
"not": {
"required": [
"Translate"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XTranslate"
]
}
},
{
"not": {
"required": [
"YTranslate"
]
}
},
{
"not": {
"required": [
"ZTranslate"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XTranslate"
]
}
},
{
"not": {
"required": [
"YTranslate"
]
}
},
{
"not": {
"required": [
"ZTranslate"
]
}
},
{
"not": {
"required": [
"Translate"
]
}
}
]
}
]
},
{
"anyOf": [
{
"not": {
"required": [
"TranslateIgnored"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XTranslateIgnored"
]
}
},
{
"not": {
"required": [
"YTranslateIgnored"
]
}
},
{
"not": {
"required": [
"ZTranslateIgnored"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XTranslateIgnored"
]
}
},
{
"not": {
"required": [
"YTranslateIgnored"
]
}
},
{
"not": {
"required": [
"ZTranslateIgnored"
]
}
},
{
"not": {
"required": [
"TranslateIgnored"
]
}
}
]
}
]
}
]
},
"reciprocal": {
"type": "object",
"title": "Reciprocal module schema",
"description": "Specifies a Reciprocal module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Reciprocal.",
"pattern": "^Reciprocal$"
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"ridged_multi": {
"type": "object",
"title": "RidgedMulti module schema",
"description": "Specifies a RidgedMulti module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type RidgedMulti.",
"pattern": "^RidgedMulti$"
},
"Frequency": {
"type": "number",
"title": "RidgedMulti module Frequency schema",
"description": "Specifies the value of Frequency used in this RidgedMulti module."
},
"Lacunarity": {
"type": "number",
"title": "RidgedMulti module Lacunarity schema",
"description": "Specifies the value of Lacunarity used in this RidgedMulti module."
},
"OctaveCount": {
"type": "number",
"title": "RidgedMulti module OctaveCount schema",
"description": "Specifies the value of OctaveCount used in this RidgedMulti module.",
"multipleOf": 1,
"minValue": 1
},
"NoiseQuality": {
"$ref": "#/definitions/noise_quality"
},
"Seed": {
"type": "number",
"title": "RidgedMulti module Seed schema",
"description": "Specifies the value of Seed used in this RidgedMulti module.",
"multipleOf": 1
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"rotate_point": {
"type": "object",
"title": "RotatePoint module schema",
"description": "Specifies a RotatePoint module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type RotatePoint.",
"pattern": "^RotatePoint$"
},
"XAngle": {
"type": "number",
"title": "RotatePoint module XAngle schema",
"description": "Specifies the value of XAngle used in this RotatePoint module."
},
"YAngle": {
"type": "number",
"title": "RotatePoint module YAngle schema",
"description": "Specifies the value of YAngle used in this RotatePoint module."
},
"ZAngle": {
"type": "number",
"title": "RotatePoint module ZAngle schema",
"description": "Specifies the value of ZAngle used in this RotatePoint module."
},
"Angles": {
"type": "array",
"title": "RotatePoint module Angles schema",
"description": "Specifies the values of XAngle, YAngle, and ZAngle used in this RotatePoint module.",
"minLength": 3,
"maxLength": 3,
"items": {
"type": "number"
}
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"allOf": [
{
"required": [
"type",
"SourceModule"
]
},
{
"anyOf": [
{
"not": {
"required": [
"Angles"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XAngle"
]
}
},
{
"not": {
"required": [
"YAngle"
]
}
},
{
"not": {
"required": [
"ZAngle"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XAngle"
]
}
},
{
"not": {
"required": [
"YAngle"
]
}
},
{
"not": {
"required": [
"ZAngle"
]
}
},
{
"not": {
"required": [
"Angles"
]
}
}
]
}
]
}
]
},
"scale_bias": {
"type": "object",
"title": "ScaleBias module schema",
"description": "Specifies a ScaleBias module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type ScaleBias.",
"pattern": "^ScaleBias$"
},
"Scale": {
"type": "number",
"title": "ScaleBias module Scale schema",
"description": "Specifies the value of Scale used in this ScaleBias module."
},
"Bias": {
"type": "number",
"title": "ScaleBias module Bias schema",
"description": "Specifies the value of Bias used in this ScaleBias module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"scale_point": {
"type": "object",
"title": "ScalePoint module schema",
"description": "Specifies a ScalePoint module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type ScalePoint.",
"pattern": "^ScalePoint$"
},
"XScale": {
"type": "number",
"title": "ScalePoint module XScale schema",
"description": "Specifies the value of XScale used in this ScalePoint module."
},
"YScale": {
"type": "number",
"title": "ScalePoint module YScale schema",
"description": "Specifies the value of YScale used in this ScalePoint module."
},
"ZScale": {
"type": "number",
"title": "ScalePoint module ZScale schema",
"description": "Specifies the value of ZScale used in this ScalePoint module."
},
"Scale": {
"oneOf": [
{
"type": "array",
"title": "ScalePoint module Scale schema",
"description": "Specifies the values of XScale, YScale, and ZScale used in this ScalePoint module.",
"minLength": 3,
"maxLength": 3,
"items": {
"type": "number"
}
},
{
"type": "number",
"title": "ScalePoint modulel Scale schema",
"description": "Specifies the single value used in this ScalePoint module for XScale, YScale, and ZScale."
}
]
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"allOf": [
{
"required": [
"type",
"SourceModule"
]
},
{
"anyOf": [
{
"not": {
"required": [
"Scale"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XScale"
]
}
},
{
"not": {
"required": [
"YScale"
]
}
},
{
"not": {
"required": [
"ZScale"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XScale"
]
}
},
{
"not": {
"required": [
"YScale"
]
}
},
{
"not": {
"required": [
"ZScale"
]
}
},
{
"not": {
"required": [
"Scale"
]
}
}
]
}
]
}
]
},
"select": {
"type": "object",
"title": "Select module schema",
"description": "Specifies a Select module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Select.",
"pattern": "^Select$"
},
"Bounds": {
"type": "array",
"title": "Select module Bounds schema",
"description": "Specifies the value of Bounds used in this Select module.",
"minLength": 2,
"maxLength": 2,
"items": {
"type": "number"
}
},
"EdgeFalloff": {
"type": "number",
"title": "Select module EdgeFalloff schema",
"description": "Specifies the value of EdgeFalloff used in this Select module."
},
"SourceModule": {
"$ref": "#/definitions/source_module_2"
},
"ControlModule": {
"type": "string",
"title": "Blend Module ControlModule schema",
"description": "Specifies which of the keys in this module group contains the module that should be used as this module's control module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule",
"ControlModule"
]
},
"spheres": {
"type": "object",
"title": "Spheres module schema",
"description": "Specifies a Spheres module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Spheres.",
"pattern": "^Spheres$"
},
"Frequency": {
"type": "number",
"title": "Spheres module Frequency schema",
"description": "Specifies the value of Frequency used in this Spheres module."
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
},
"terrace": {
"type": "object",
"title": "Terrace module schema",
"description": "Specifies a Terrace module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Terrace.",
"pattern": "^Terrace$"
},
"InvertTerraces": {
"type": "boolean",
"title": "Terrace module InvertTerraces schema",
"description": "Specifies the value of InvertTerraces used in this Terrace module."
},
"ControlPoints": {
"type": "array",
"title": "Terrace module ControlPoints schema",
"description": "Specifies the value of ControlPoints used in this Terrace module.",
"minLength": 2,
"items": {
"type": "number"
}
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"translate_point": {
"type": "object",
"title": "TranslatePoint module schema",
"description": "Specifies a TranslatePoint module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type TranslatePoint.",
"pattern": "^TranslatePoint$"
},
"XTranslation": {
"type": "number",
"title": "TranslatePoint module XTranslation schema",
"description": "Specifies the value of XTranslation used in this TranslatePoint module."
},
"YTranslation": {
"type": "number",
"title": "TranslatePoint module YTranslation schema",
"description": "Specifies the value of YTranslation used in this TranslatePoint module."
},
"ZTranslation": {
"type": "number",
"title": "TranslatePoint module ZTranslation schema",
"description": "Specifies the value of ZTranslation used in this TranslatePoint module."
},
"Translation": {
"oneOf": [
{
"type": "array",
"title": "TranslatePoint module Translation schema",
"description": "Specifies the values of XTranslation, YTranslation, and ZTranslation used in this TranslatePoint module.",
"minLength": 3,
"maxLength": 3,
"items": {
"type": "number"
}
},
{
"type": "number",
"title": "TranslatePoint modulel Translation schema",
"description": "Specifies the single value used in this TranslatePoint module for XTranslation, YTranslation, and ZTranslation."
}
]
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"allOf": [
{
"required": [
"type",
"SourceModule"
]
},
{
"anyOf": [
{
"not": {
"required": [
"Translation"
]
}
},
{
"allOf": [
{
"not": {
"required": [
"XTranslation"
]
}
},
{
"not": {
"required": [
"YTranslation"
]
}
},
{
"not": {
"required": [
"ZTranslation"
]
}
}
]
},
{
"allOf": [
{
"not": {
"required": [
"XTranslation"
]
}
},
{
"not": {
"required": [
"YTranslation"
]
}
},
{
"not": {
"required": [
"ZTranslation"
]
}
},
{
"not": {
"required": [
"Translation"
]
}
}
]
}
]
}
]
},
"turbulence": {
"type": "object",
"title": "Turbulence module schema",
"description": "Specifies a Turbulence module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Turbulence.",
"pattern": "^Turbulence$"
},
"Frequency": {
"type": "number",
"title": "Turbulence module Frequency schema",
"description": "Specifies the value of Frequency used in this Turbulence module."
},
"Power": {
"type": "number",
"title": "Turbulence module Power schema",
"description": "Specifies the value of Power used in this Turbulence module."
},
"Roughness": {
"type": "number",
"title": "Turbulence module Roughness schema",
"description": "Specifies the value of Roughness used in this Turbulence module.",
"multipleOf": 1
},
"Seed": {
"type": "number",
"title": "Turbulence module Seed schema",
"description": "Specifies the value of Seed used in this Turbulence module.",
"multipleOf": 1
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type",
"SourceModule"
]
},
"voronoi": {
"type": "object",
"title": "Voronoi module schema",
"description": "Specifies a Voronoi module and its attributes.",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"title": "Module type schema",
"description": "Specifies that this module is of type Voronoi.",
"pattern": "^Voronoi$"
},
"Frequency": {
"type": "number",
"title": "Voronoi module Frequency schema",
"description": "Specifies the value of Frequency used in this Voronoi module."
},
"Displacement": {
"type": "number",
"title": "Voronoi module Displacement schema",
"description": "Specifies the value of Displacement used in this Voronoi module."
},
"EnableDistance": {
"type": "boolean",
"title": "Voronoi module EnableDistance schema",
"description": "Specifies the value of EnableDistance used in this Voronoi module."
},
"Seed": {
"type": "number",
"title": "Voronoi module Seed schema",
"description": "Specifies the value of Seed used in this Voronoi module.",
"multipleOf": 1
},
"SourceModule": {
"$ref": "#/definitions/source_module_1"
},
"comment": {
"$ref": "#/definitions/comment"
}
},
"required": [
"type"
]
}
}
} | o17072 |
{
"properties": {
"billing_address": {
"description": "The billing address of the client",
"type": "string"
},
"client_name": {
"description": "The name of the client",
"type": "string"
},
"items": {
"description": "The list of items in the invoice",
"items": {
"properties": {
"description": {
"description": "The description of the item",
"type": "string"
},
"price": {
"description": "The price per item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"description",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"client_name",
"billing_address",
"items"
],
"type": "object"
} | create_invoice_77a0838d |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "geolocation",
"description": "GEO Location",
"type": "object",
"properties": {
"longitude": {
"type": "number"
},
"latitude": {
"type": "number"
},
"altitude": {
"type": "number"
},
"accuracy": {
"type": "number"
},
"altitude_accuracy": {
"type": "number"
},
"heading": {
"type": "number"
},
"speed": {
"type": "number"
}
}
} | o70267 |
{
"properties": {
"discount": {
"description": "Discount amount",
"type": "number"
},
"items": {
"items": {
"properties": {
"name": {
"description": "Item name",
"type": "string"
},
"price": {
"description": "Item price",
"type": "number"
},
"quantity": {
"description": "Item quantity",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
},
"tax_rate": {
"description": "Tax rate in percentage",
"type": "number"
}
},
"required": [
"items"
],
"type": "object"
} | generate_invoice_0df16806 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Enfernuz/quik-lua-rpc/json/schema/datasource/SetUpdateCallback.result.scheme.json",
"title": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b datasource.SetUpdateCallback",
"description": "\u0421\u0445\u0435\u043c\u0430 \u043e\u0431\u044a\u0435\u043a\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0437\u043e\u0432\u0430 \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b datasource.SetUpdateCallback",
"type": "object",
"properties": {
"result": {
"description": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442",
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"result"
]
} | o5202 |
{
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle or triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"shape": {
"description": "The shape type",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"shape"
],
"type": "object"
} | calculate_area_c42f3b33 |
{
"definitions": {
"error": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"code": {
"description": "error code",
"enum": [
"invalid_params",
"invalid_request",
"unauthorized",
"unsupported_client_version"
],
"example": "invalid_params",
"readOnly": true,
"type": [
"string"
]
},
"detail": {
"description": "error detail",
"example": "invalid param",
"readOnly": true,
"type": [
"string"
]
},
"errorFields": {
"description": "detail for invalid param field",
"items": {
"properties": {
"message": {
"description": "error message for invalid param field",
"example": "invalid status",
"readOnly": true,
"type": [
"string"
]
},
"name": {
"description": "param field name",
"example": "status",
"readOnly": true,
"type": [
"string"
]
}
},
"required": [
"name",
"message"
],
"type": [
"object"
]
},
"readOnly": true,
"type": [
"array"
]
}
},
"description": "This resource represents API error",
"properties": {
"code": {
"$ref": "#/definitions/error/definitions/code"
},
"detail": {
"$ref": "#/definitions/error/definitions/detail"
},
"errorFields": {
"$ref": "#/definitions/error/definitions/errorFields"
}
},
"required": [
"code",
"detail"
],
"stability": "prototype",
"strictProperties": true,
"title": "Error",
"type": [
"object"
]
},
"task": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"completedAt": {
"description": "time completed a task",
"example": "2016-02-01T12:13:14Z",
"format": "date-time",
"readOnly": true,
"type": [
"string"
]
},
"createdAt": {
"description": "time created a task",
"example": "2016-02-01T12:13:14Z",
"format": "date-time",
"readOnly": true,
"type": [
"string"
]
},
"id": {
"description": "task id",
"example": "ec0a1edc-062e-11e7-8b1e-040ccee2aa06",
"format": "uuid",
"readOnly": true,
"type": [
"string"
]
},
"identity": {
"$ref": "#/definitions/task/definitions/id"
},
"spent": {
"description": "time spent doing task in minutes",
"example": 12,
"readOnly": true,
"type": [
"integer"
]
},
"startedAt": {
"description": "time started a task",
"example": "2016-02-01T12:13:14Z",
"format": "date-time",
"readOnly": true,
"type": [
"string"
]
},
"status": {
"description": "task status",
"enum": [
"done",
"doing",
"stopped"
],
"example": "done",
"readOnly": true,
"type": [
"string"
]
},
"tags": {
"description": "tags",
"items": {
"example": "study",
"type": [
"string"
]
},
"type": [
"array"
]
},
"title": {
"description": "task title",
"example": "Buy coffee",
"readOnly": true,
"type": [
"string"
]
},
"userId": {
"$ref": "#/definitions/user/definitions/id"
}
},
"description": "This resource represents task",
"links": [
{
"description": "Get task detail",
"href": "/tasks/{(%23%2Fdefinitions%2Ftask%2Fdefinitions%2Fidentity)}",
"method": "GET",
"rel": "self",
"title": "detail"
},
{
"description": "Create task",
"href": "/tasks",
"method": "POST",
"rel": "create",
"schema": {
"properties": {
"tags": {
"$ref": "#/definitions/task/definitions/tags"
},
"title": {
"$ref": "#/definitions/task/definitions/title"
}
},
"required": [
"title"
],
"type": [
"object"
]
},
"targetSchema": {
"$ref": "#/definitions/task",
"type": [
"object"
]
},
"title": "create"
},
{
"description": "Get task list",
"href": "/tasks",
"method": "GET",
"rel": "instances",
"schema": {
"properties": {
"limit": {
"description": "limit",
"example": 20,
"type": [
"integer"
]
},
"offset": {
"description": "offset",
"example": 20,
"type": [
"integer"
]
}
},
"type": [
"object"
]
},
"targetSchema": {
"items": {
"$ref": "#/definitions/task"
},
"type": [
"array"
]
},
"title": "list"
}
],
"properties": {
"completedAt": {
"$ref": "#/definitions/task/definitions/completedAt"
},
"createdAt": {
"$ref": "#/definitions/task/definitions/createdAt"
},
"id": {
"$ref": "#/definitions/task/definitions/id"
},
"spent": {
"$ref": "#/definitions/task/definitions/spent"
},
"startedAt": {
"$ref": "#/definitions/task/definitions/startedAt"
},
"status": {
"$ref": "#/definitions/task/definitions/status"
},
"tags": {
"$ref": "#/definitions/task/definitions/tags"
},
"title": {
"$ref": "#/definitions/task/definitions/title"
},
"user": {
"$ref": "#/definitions/user"
}
},
"required": [
"id",
"title",
"status",
"spent",
"startedAt",
"createdAt",
"completedAt",
"tags"
],
"stability": "prototype",
"strictProperties": true,
"title": "Task",
"type": [
"object"
]
},
"user": {
"$schema": "http://json-schema.org/draft-04/schema",
"definitions": {
"id": {
"description": "user id",
"example": "ec0a1edc-062e-11e7-8b1e-040ccee2aa06",
"format": "uuid",
"readOnly": true,
"type": [
"string"
]
},
"identity": {
"$ref": "#/definitions/user/definitions/id"
},
"name": {
"description": "user name",
"example": "8maki",
"readOnly": true,
"type": [
"string"
]
}
},
"description": "This resource represents user",
"links": [
{
"description": "Get authenticated user detail",
"href": "/me",
"method": "GET",
"rel": "self",
"title": "detail"
}
],
"properties": {
"id": {
"$ref": "#/definitions/user/definitions/id"
},
"name": {
"$ref": "#/definitions/user/definitions/name"
}
},
"required": [
"id",
"name"
],
"stability": "prototype",
"strictProperties": true,
"title": "User",
"type": [
"object"
]
}
},
"description": "Task API",
"links": [
{
"href": "https://tasky.io/v1",
"rel": "self"
}
],
"properties": {
"error": {
"$ref": "#/definitions/error"
},
"task": {
"$ref": "#/definitions/task"
},
"user": {
"$ref": "#/definitions/user"
}
},
"title": "tasky API JSON Schema",
"type": [
"object"
]
} | o18633 |
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"properties": {
"divs": {
"type": "array",
"items": {
"type": "object",
"required": [
"heading"
],
"properties": {
"heading": {
"type": "string"
},
"fields": {
"type": "array",
"title": "Field list",
"items": {
"type": "object",
"required": [
"field-name",
"component-type"
],
"properties": {
"field-name": {
"type": "string"
},
"component-type": {
"type": "string",
"title": "Component type",
"enum": [
"textarea",
"simple",
"complex"
]
},
"component-confs": {
"type": "object",
"properties": {
"simple": {
"type": "object",
"properties": {
"placeholder": {
"type": "string"
}
}
},
"complex": {
"type": "object",
"properties": {
"key1": {
"type": "string"
}
}
},
"textarea": {
"type": "object",
"properties": {
"col": {
"type": "number"
},
"row": {
"type": "number"
}
}
}
}
},
"properties": {
"type": "object",
"title": "Style class",
"properties": {
"additional-classes": {
"title": "To assign additional CSS classes",
"type": "string"
}
}
},
"validation": {
"type": "object",
"title": "Validation rules",
"properties": {
"focus-id": {
"type": "string"
},
"save-rules": {
"type": "array",
"items": {
"type": "string",
"id": "http://jsonschema.net/stages/0/configuration/divs/0/fields/0/validation/save-rules/0",
"enum": [
"required"
]
}
},
"validation-id": {
"type": "string"
},
"validation-messages": {
"title": "What message to show to a type of save-rule: e.g. required",
"type": "object",
"required": [
"required"
],
"properties": {
"required": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
},
"form-footer": {
"type": "string",
"title": "Footer template name"
},
"form-layout": {
"type": "object",
"title": "Div render method",
"properties": {
"component-type": {
"type": "string",
"default": "tabbed-wizard",
"enum": [
"tabbed-wizard"
]
},
"tabHeaderIdentifier": {
"type": "string",
"default": "armsTabHeader"
},
"wizardDefPath": {
"type": "string",
"title": "Path to wizard definition (only used with tabbed-wizard)",
"default": "wizard-definitions/arms-draft.json"
}
}
}
}
}
| o69837 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"alias": {
"type": "string"
},
"address": {
"type": "string"
},
"coordinates": {
"type": "object",
"properties": {
"lat": {
"type": "number"
},
"lng": {
"type": "number"
}
},
"required": [
"lat",
"lng"
]
}
},
"required": [
"alias",
"address",
"coordinates"
]
},
"contact": {
"type": "object",
"properties": {
"phone": {
"type": "string"
}
},
"required": [
"phone"
]
},
"priceRange": {
"type": "object",
"properties": {
"from": {
"type": "number",
"minimum": 0
},
"to": {
"type": "number",
"minimum": 0
}
},
"required": [
"from",
"to"
]
},
"menu": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"price": {
"type": "number"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"price",
"tags"
]
}
}
},
"required": [
"name",
"location",
"contact",
"priceRange",
"menu"
]
} | o19361 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"absolute_path": {
"description": "A path only. Query string and/or fragment are not allowed.",
"pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$",
"type": "string"
},
"analytics_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations."
},
"body": {
"description": "The main content provided as HTML rendered from govspeak",
"type": "string"
},
"change_history": {
"items": {
"additionalProperties": false,
"properties": {
"note": {
"description": "A summary of the change",
"type": "string"
},
"public_timestamp": {
"_format": "date-time",
"type": "string"
}
},
"required": [
"public_timestamp",
"note"
],
"type": "object"
},
"type": "array"
},
"description": {
"type": "string"
},
"description_optional": {
"anyOf": [
{
"$ref": "#/definitions/description"
},
{
"type": "null"
}
]
},
"details": {
"additionalProperties": false,
"properties": {
"attachments": {
"description": "An ordered list of asset links",
"items": {
"$ref": "#/definitions/file_attachment_asset"
},
"type": "array"
},
"body": {
"$ref": "#/definitions/body"
},
"change_history": {
"$ref": "#/definitions/change_history"
},
"email": {
"type": "string"
}
},
"type": "object"
},
"file_attachment_asset": {
"additionalProperties": false,
"properties": {
"accessible": {
"type": "boolean"
},
"alternative_format_contact_email": {
"type": "string"
},
"attachment_type": {
"enum": [
"file"
],
"type": "string"
},
"content_type": {
"type": "string"
},
"file_size": {
"type": "integer"
},
"filename": {
"type": "string"
},
"id": {
"type": "string"
},
"locale": {
"$ref": "#/definitions/locale"
},
"number_of_pages": {
"type": "integer"
},
"preview_url": {
"_format": "uri",
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"_format": "uri",
"type": "string"
}
},
"required": [
"attachment_type",
"content_type",
"id",
"url"
],
"type": "object"
},
"first_published_at": {
"_format": "date-time",
"description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"frontend_links": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"frontend_links_with_base_path": {
"items": {
"additionalProperties": true,
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"api_path": {
"$ref": "#/definitions/absolute_path"
},
"api_url": {
"_format": "uri",
"description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"document_type": {
"type": "string"
},
"links": {
"patternProperties": {
"^[a-z_]+$": {
"$ref": "#/definitions/frontend_links_with_base_path"
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"public_updated_at": {
"oneOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"schema_name": {
"type": "string"
},
"title": {
"type": "string"
},
"web_url": {
"_format": "uri",
"description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.",
"type": "string"
}
},
"required": [
"base_path",
"content_id",
"locale",
"title"
],
"type": "object"
},
"type": "array"
},
"guid": {
"pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$",
"type": "string"
},
"locale": {
"enum": [
"ar",
"az",
"be",
"bg",
"bn",
"cs",
"cy",
"da",
"de",
"dr",
"el",
"en",
"es",
"es-419",
"et",
"fa",
"fi",
"fr",
"gd",
"he",
"hi",
"hr",
"hu",
"hy",
"id",
"is",
"it",
"ja",
"ka",
"kk",
"ko",
"lt",
"lv",
"ms",
"mt",
"nl",
"no",
"pl",
"ps",
"pt",
"ro",
"ru",
"si",
"sk",
"sl",
"so",
"sq",
"sr",
"sv",
"sw",
"ta",
"th",
"tk",
"tr",
"uk",
"ur",
"uz",
"vi",
"zh",
"zh-hk",
"zh-tw"
],
"type": "string"
},
"public_updated_at": {
"_format": "date-time",
"description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.",
"type": "string"
},
"publishing_app_name": {
"description": "The application that published this item.",
"enum": [
"calculators",
"calendars",
"collections-publisher",
"contacts",
"content-publisher",
"content-tagger",
"email-alert-frontend",
"external-link-tracker",
"feedback",
"frontend",
"government-frontend",
"hmrc-manuals-api",
"info-frontend",
"licencefinder",
"local-links-manager",
"manuals-frontend",
"manuals-publisher",
"maslow",
"performanceplatform-big-screen-view",
"publisher",
"rummager",
"search-admin",
"search-api",
"service-manual-publisher",
"share-sale-publisher",
"short-url-manager",
"smartanswers",
"special-route-publisher",
"specialist-publisher",
"static",
"tariff",
"travel-advice-publisher",
"whitehall"
],
"type": "string"
},
"publishing_request_id": {
"description": "A unique identifier used to track publishing requests to rendered content",
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publishing_scheduled_at": {
"_format": "date-time",
"description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.",
"type": "string"
},
"rendering_app": {
"description": "The application that renders this item.",
"enum": [
"calculators",
"calendars",
"collections",
"content-store",
"email-alert-frontend",
"email-campaign-frontend",
"feedback",
"finder-frontend",
"frontend",
"government-frontend",
"info-frontend",
"licencefinder",
"manuals-frontend",
"performanceplatform-big-screen-view",
"rummager",
"search-api",
"service-manual-frontend",
"smartanswers",
"spotlight",
"static",
"tariff",
"whitehall-admin",
"whitehall-frontend"
],
"type": "string"
},
"scheduled_publishing_delay_seconds": {
"description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.",
"type": "integer"
},
"title": {
"type": "string"
},
"withdrawn_notice": {
"additionalProperties": false,
"properties": {
"explanation": {
"type": "string"
},
"withdrawn_at": {
"format": "date-time"
}
},
"type": "object"
}
},
"properties": {
"analytics_identifier": {
"$ref": "#/definitions/analytics_identifier"
},
"base_path": {
"$ref": "#/definitions/absolute_path"
},
"content_id": {
"$ref": "#/definitions/guid"
},
"description": {
"$ref": "#/definitions/description_optional"
},
"details": {
"$ref": "#/definitions/details"
},
"document_type": {
"enum": [
"working_group"
],
"type": "string"
},
"first_published_at": {
"anyOf": [
{
"$ref": "#/definitions/first_published_at"
},
{
"type": "null"
}
]
},
"links": {
"additionalProperties": false,
"properties": {
"available_translations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"child_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"children": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"document_collections": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"facet_groups": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links."
},
"facet_values": {
"$ref": "#/definitions/frontend_links",
"description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups."
},
"finder": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers links from content back to finders the content is surfaced on"
},
"lead_organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array."
},
"level_one_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"mainstream_browse_pages": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /browse section of the site. These are known as sections in some legacy apps."
},
"meets_user_needs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The user needs this piece of content meets."
},
"ministers": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger."
},
"ordered_related_items_overrides": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation."
},
"organisations": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "All organisations linked to this content item. This should include lead organisations."
},
"original_primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications."
},
"parent": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The parent content item.",
"maxItems": 1
},
"part_of_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policies": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"policy_areas": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "A largely deprecated tag currently only used to power email alerts."
},
"primary_publishing_organisation": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.",
"maxItems": 1
},
"related_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"role_appointments": {
"$ref": "#/definitions/frontend_links",
"description": "Link type automatically added by Publishing API"
},
"secondary_to_step_navs": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"suggested_ordered_related_items": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test."
},
"taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Prototype-stage taxonomy label for this content item"
},
"topic_taxonomy_taxons": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Link type automatically added by Publishing API"
},
"topics": {
"$ref": "#/definitions/frontend_links_with_base_path",
"description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps."
}
},
"type": "object"
},
"locale": {
"$ref": "#/definitions/locale"
},
"need_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases",
"enum": [
"alpha",
"beta",
"live"
],
"type": "string"
},
"public_updated_at": {
"anyOf": [
{
"$ref": "#/definitions/public_updated_at"
},
{
"type": "null"
}
]
},
"publishing_app": {
"$ref": "#/definitions/publishing_app_name"
},
"publishing_request_id": {
"$ref": "#/definitions/publishing_request_id"
},
"publishing_scheduled_at": {
"anyOf": [
{
"$ref": "#/definitions/publishing_scheduled_at"
},
{
"type": "null"
}
]
},
"rendering_app": {
"$ref": "#/definitions/rendering_app"
},
"scheduled_publishing_delay_seconds": {
"anyOf": [
{
"$ref": "#/definitions/scheduled_publishing_delay_seconds"
},
{
"type": "null"
}
]
},
"schema_name": {
"enum": [
"working_group"
],
"type": "string"
},
"title": {
"$ref": "#/definitions/title"
},
"updated_at": {
"_format": "date-time",
"type": "string"
},
"withdrawn_notice": {
"$ref": "#/definitions/withdrawn_notice"
}
},
"required": [
"base_path",
"content_id",
"description",
"details",
"document_type",
"links",
"locale",
"public_updated_at",
"schema_name",
"title",
"updated_at"
],
"type": "object"
} | o21428 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items on the invoice",
"items": {
"properties": {
"name": {
"description": "The name of the item",
"type": "string"
},
"price": {
"description": "The price of the item",
"type": "number"
},
"quantity": {
"description": "The quantity of the item",
"type": "integer"
}
},
"required": [
"name",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | generate_invoice_c887e181 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Server",
"description": "Server address and port number",
"type": "object",
"properties": {
"server": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"port": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"address",
"port"
]
}
}
} | o83712 |
{
"properties": {
"customer_id": {
"description": "The ID of the customer",
"type": "string"
},
"order_items": {
"items": {
"properties": {
"price": {
"description": "The price of the product",
"type": "number"
},
"product_id": {
"description": "The ID of the product",
"type": "string"
},
"quantity": {
"description": "The quantity of the product",
"type": "integer"
}
},
"required": [
"product_id",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_id",
"order_items"
],
"type": "object"
} | generate_invoice_b1a81860 |
{
"$license": [
"http://www.apache.org/licenses/LICENSE-2.0"
],
"description": "https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-settings",
"javaInterfaces": [
"java.io.Serializable"
],
"javaType": "org.apache.streams.twitter.api.UpdateAccountSettingsRequest",
"properties": {
"end_sleep_time": {
"description": "The hour that sleep time should end if it is enabled. The value for this parameter should be provided in ISO8601 format (i.e. 00-23). The time is considered to be in the same timezone as the user\u2019s time_zone setting.",
"type": "boolean"
},
"lang": {
"description": "The language which Twitter should render in for this user. The language must be specified by the appropriate two letter ISO 639-1 representation.",
"type": "string"
},
"sleep_time_enabled": {
"description": "When set to true , t or 1 , will enable sleep time for the user. Sleep time is the time when push or SMS notifications should not be sent to the user.",
"type": "boolean"
},
"start_sleep_time": {
"description": "The hour that sleep time should begin if it is enabled. The value for this parameter should be provided in ISO8601 format (i.e. 00-23). The time is considered to be in the same timezone as the user\u2019s time_zone setting.",
"type": "integer"
},
"time_zone": {
"description": "The timezone dates and times should be displayed in for the user. The timezone must be one of the Rails TimeZone names.",
"type": "string"
},
"trend_location_woeid": {
"description": "The Yahoo! Where On Earth ID to use as the user\u2019s default trend location. Global information is available by using 1 as the WOEID.",
"type": "string"
}
}
} | o49779 |
{
"id": "http://schema.myrtana.sk/support/bibliographicBibTeXLike.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Bibliographic record",
"description": "Bibliographic record. Aims to be compatible with BibTeX.",
"type": "string",
"maxLength": 100
} | o48162 |
{
"additionalProperties": false,
"description": "An add_to_cart GTM server-side event.",
"properties": {
"currency": {
"description": "Currency of the items associated with the event, in 3-letter ISO 4217 format. Is required, if value is set.",
"maxLength": 3,
"minLength": 3,
"type": [
"string",
"null"
]
},
"items": {
"description": "The items for the event.",
"items": {
"additionalProperties": false,
"description": "An item object.",
"properties": {
"affiliation": {
"description": "A product affiliation to designate a supplying company or brick and mortar store location",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"coupon": {
"description": "The coupon name or code associated with the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"currency": {
"description": "The currency, in 3-letter ISO 4217 format.",
"maxLength": 3,
"minLength": 3,
"type": [
"string",
"null"
]
},
"discount": {
"description": "The monetary discount value associated with the item.",
"minimum": 0,
"type": [
"number",
"null"
]
},
"index": {
"description": "The index of the item in a list.",
"minimum": 0,
"type": [
"integer",
"null"
]
},
"item_brand": {
"description": "The brand of the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_category": {
"description": "The category of the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_category2": {
"description": "The second category hierarchy or additional taxonomy for the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_category3": {
"description": "The third category hierarchy or additional taxonomy for the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_category4": {
"description": "The fourth category hierarchy or additional taxonomy for the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_category5": {
"description": "The fifth category hierarchy or additional taxonomy for the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_id": {
"description": "The ID of the item.",
"maxLength": 500,
"type": [
"string",
"null"
]
},
"item_list_id": {
"description": "The ID of the list in which the item was presented to the user.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_list_name": {
"description": "The name of the list in which the item was presented to the user.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"item_name": {
"description": "The name of the item.",
"maxLength": 500,
"type": [
"string",
"null"
]
},
"item_variant": {
"description": "The item variant or unique code or description for additional item details or options.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"location_id": {
"description": "The location associated with the item.",
"maxLength": 4096,
"type": [
"string",
"null"
]
},
"price": {
"description": "The monetary price of the item, in units of the specified currency parameter.",
"minimum": 0,
"type": [
"number",
"null"
]
},
"quantity": {
"description": "Item quantity.",
"minimum": 0,
"type": [
"integer",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"value": {
"description": "The monetary value of the event.",
"minimum": 0,
"type": [
"number",
"null"
]
}
},
"required": [
"items"
],
"self": {
"format": "jsonschema",
"name": "add_to_cart",
"vendor": "com.google.tag-manager.server-side",
"version": "1-0-0"
},
"type": "object"
} | sp_80_Normalized |
{
"properties": {
"dimensions": {
"description": "The dimensions of the shape",
"properties": {
"base": {
"description": "The base length of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"side": {
"description": "The length of a side of the square",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The type of shape (circle, square, triangle, etc.)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_6a789417 |
{
"properties": {
"dimensions": {
"description": "The dimensions required for area calculation",
"properties": {
"length": {
"description": "The length of the shape",
"type": "number"
},
"radius": {
"description": "The radius of the shape (if applicable)",
"type": "number"
},
"width": {
"description": "The width of the shape (if applicable)",
"type": "number"
}
},
"required": [
"length"
],
"type": "object"
},
"shape": {
"description": "The shape for which area is to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_4095811e |
{
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "The name of the metadata property"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"immutable": {
"type": "boolean",
"default": false,
"description": "If true, you are unable to alter this value"
}
},
"required": [
"name",
"value"
],
"$schema": "http://json-schema.org/draft-04/schema#"
} | o64016 |
{
"$id": "https://json.schemastore.org/dart-build",
"$ref": "#/definitions/buildConfig",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"_listOfGlobs": {
"type": "array",
"items": {
"type": "string"
}
},
"buildConfig": {
"type": "object",
"properties": {
"targets": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/buildTarget"
},
"propertyNames": {
"$ref": "#/definitions/targetKey"
}
},
"builders": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/builderDefinition"
},
"propertyNames": {
"$ref": "#/definitions/builderKey"
}
},
"post_process_builders": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/postProcessBuilderDefinition"
}
},
"global_options": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/globalBuilderOptions"
}
},
"additional_public_assets": {
"$ref": "#/definitions/_listOfGlobs"
}
},
"additionalProperties": false
},
"buildTarget": {
"type": "object",
"properties": {
"auto_apply_builders": {
"type": "boolean",
"default": true
},
"builders": {
"type": "object",
"propertyNames": {
"$ref": "#/definitions/builderKey"
},
"additionalProperties": {
"$ref": "#/definitions/targetBuilderConfig"
}
},
"dependencies": {
"type": "array",
"items": {
"$ref": "#/definitions/targetKey"
}
},
"sources": {
"$ref": "#/definitions/inputSet"
}
},
"additionalProperties": false
},
"builderDefinition": {
"type": "object",
"properties": {
"builder_factories": {
"type": "array",
"items": {
"type": "string"
}
},
"import": {
"type": "string"
},
"build_extensions": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
},
"auto_apply": {
"$ref": "#/definitions/autoApply",
"default": "none"
},
"required_inputs": {
"type": "array",
"items": {
"type": "string"
}
},
"runs_before": {
"$ref": "#/definitions/runsBefore"
},
"applies_builders": {
"type": "array",
"items": {
"$ref": "#/definitions/builderKey"
}
},
"is_optional": {
"type": "boolean",
"default": false
},
"build_to": {
"$ref": "#/definitions/buildTo",
"default": "cache"
},
"defaults": {
"$ref": "#/definitions/targetBuilderConfigDefaults"
},
"target": {
"type": "string",
"title": "The name of the dart_library target that contains the import",
"deprecated": true,
"deprecationMessage": "May be null or unreliable and should not be used."
}
},
"additionalProperties": false
},
"postProcessBuilderDefinition": {
"type": "object",
"properties": {
"builder_factory": {
"type": "string"
},
"import": {
"type": "string"
},
"input_extensions": {
"type": "array",
"items": {
"type": "string"
}
},
"defaults": {
"$ref": "#/definitions/targetBuilderConfigDefaults"
}
},
"additionalProperties": false
},
"inputSet": {
"oneOf": [
{
"type": "object",
"properties": {
"include": {
"$ref": "#/definitions/_listOfGlobs"
},
"exclude": {
"$ref": "#/definitions/_listOfGlobs"
}
},
"additionalProperties": false
},
{
"$comment": "Use List<String> directly, inferred to mean include.",
"$ref": "#/definitions/_listOfGlobs"
}
]
},
"targetBuilderConfig": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"generate_for": {
"$ref": "#/definitions/inputSet"
},
"options": {
"$ref": "#/definitions/builderOptions"
},
"dev_options": {
"$ref": "#/definitions/builderOptions"
},
"release_options": {
"$ref": "#/definitions/builderOptions"
}
},
"additionalProperties": false
},
"targetBuilderConfigDefaults": {
"type": "object",
"properties": {
"generate_for": {
"$ref": "#/definitions/inputSet"
},
"options": {
"$ref": "#/definitions/builderOptions"
},
"dev_options": {
"$ref": "#/definitions/builderOptions"
},
"release_options": {
"$ref": "#/definitions/builderOptions"
}
},
"additionalProperties": false
},
"globalBuilderOptions": {
"type": "object",
"properties": {
"options": {
"$ref": "#/definitions/builderOptions"
},
"dev_options": {
"$ref": "#/definitions/builderOptions"
},
"release_options": {
"$ref": "#/definitions/builderOptions"
},
"runs_before": {
"$ref": "#/definitions/runsBefore"
}
},
"additionalProperties": false
},
"builderOptions": {
"type": "object",
"title": "Options to apply to a builder",
"description": "An arbitrary Map<String, dynamic> of configuration options exposed by the individual builders. See the documentation for the builder you are configuring for guidance.",
"additionalProperties": true
},
"autoApply": {
"type": "string",
"description": "On which packages the builder is applied by default",
"enum": ["none", "dependents", "all_packages", "root_package"]
},
"buildTo": {
"type": "string",
"description": "Whether the outputs should be stored in a hidden cache or in the source directory.",
"enum": ["cache", "source"]
},
"targetKey": {
"type": "string",
"title": "An identifier for a target",
"description": "A target key has two parts, a package and a name. They are separated by a colon.",
"pattern": "^(?:\\w+:)?\\w+|\\$default$"
},
"builderKey": {
"type": "string",
"title": "An identifier for a builder",
"description": "To construct a key, you join the package name and the builder name with a colon.",
"pattern": "^(?:\\w*:)?\\w+$"
},
"runsBefore": {
"type": "array",
"items": {
"$ref": "#/definitions/builderKey"
}
}
},
"description": "Configuration for Dart's build system",
"title": "build.yaml files"
}
| dart-build |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "IBM App Connect Template Gallery metadata schema",
"type": "object",
"properties": {
"templates": {
"type": "array",
"items": {
"title": "Template",
"description": "A template from the template catalog",
"type": "object",
"properties": {
"name": {
"description": "The name of the template",
"type": "string",
"maxLength": 98
},
"description": {
"description": "A description of the flow created with the template",
"type": "string"
},
"summary": {
"description": "A summary of the flow created with the template",
"type": "string"
},
"sourceApp": {
"description": "The trigger application that triggers the flow",
"type": "string"
},
"targetApps": {
"description": "A list of the target applications that triggering the flow effects",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"offerings": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"summary",
"sourceApp",
"targetApps",
"tags",
"offerings"
],
"additionalProperties": false
}
}
}
} | o65885 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"Password": {
"type": "object",
"properties": {
"password": {
"type": "string"
}
},
"required": [
"password"
]
},
"Login": {
"type": "object",
"properties": {
"login": {
"type": "string"
}
},
"required": [
"login"
]
}
},
"type": "object",
"properties": {
"result": {
"type": "object",
"properties": {
"passwords": {
"type": "array",
"items": {
"$ref": "#/definitions/Password"
}
},
"logins": {
"type": "array",
"items": {
"$ref": "#/definitions/Login"
}
}
}
}
}
} | o42169 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"name",
"url"
]
}
} | o33732 |
{
"properties": {
"measurements": {
"properties": {
"base": {
"description": "The base of the triangle",
"type": "number"
},
"height": {
"description": "The height of the triangle",
"type": "number"
},
"length": {
"description": "The length of the rectangle",
"type": "number"
},
"radius": {
"description": "The radius of the circle",
"type": "number"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"base",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape (circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"measurements"
],
"type": "object"
} | calculate_area_f314bbd4 |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"label": {
"type": "string"
},
"name": {
"type": "string"
},
"version": {
"type": "integer",
"default": 1
},
"info": {
"type": "string"
},
"fields": {
"$ref": "#/definitions/field"
}
},
"required": [
"name",
"label",
"version"
],
"definitions": {
"field": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"label": {
"type": "string"
},
"info": {
"type": "string"
},
"placeholder": {
"type": "string"
},
"validation": {
"type": "array",
"items": {
"type": "string"
}
}
},
"anyOf": [
{
"properties": {
"type": {
"enum": [
"header",
"paragraph"
]
}
},
"required": [
"type",
"name"
]
},
{
"required": [
"type",
"name",
"label"
]
}
],
"oneOf": [
{
"properties": {
"type": {
"enum": [
"text",
"textarea",
"richtext",
"link"
]
},
"default": {
"type": "string"
}
}
},
{
"properties": {
"type": {
"enum": [
"collection",
"checkbox",
"multiselect",
"nested"
]
},
"default": {
"type": "array"
}
}
},
{
"properties": {
"type": {
"enum": [
"switch"
]
},
"default": {
"type": "boolean"
}
}
},
{
"properties": {
"type": {
"enum": [
"image",
"file"
]
},
"default": {
"type": "object"
}
}
},
{
"properties": {
"type": {
"enum": [
"select",
"radio",
"buttongroup",
"number",
"slider",
"date",
"time",
"datetime",
"group",
"header",
"paragraph"
]
},
"default": {}
}
}
]
}
}
}
} | o83391 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9._-]+$": {
"$ref": "#/definitions/service"
}
},
"definitions": {
"service": {
"type": "object",
"properties": {
"build": {
"type": "string"
},
"cap_add": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"cap_drop": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"cgroup_parent": {
"type": "string"
},
"command": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"container_name": {
"type": "string"
},
"cpu_shares": {
"type": [
"number",
"string"
]
},
"cpuset": {
"type": "string"
},
"devices": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"dns": {
"$ref": "#/definitions/string_or_list"
},
"dns_search": {
"$ref": "#/definitions/string_or_list"
},
"dockerfile": {
"type": "string"
},
"domainname": {
"type": "string"
},
"entrypoint": {
"$ref": "#/definitions/string_or_list"
},
"env_file": {
"$ref": "#/definitions/string_or_list"
},
"environment": {
"oneOf": [
{
"type": "object",
"patternProperties": {
"^[^-]+$": {
"type": [
"string",
"number",
"boolean",
"null"
],
"format": "environment"
}
},
"additionalProperties": false
},
{
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
}
]
},
"expose": {
"type": "array",
"items": {
"type": [
"string",
"number"
]
},
"_uniqueItems": true
},
"extends": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"service": {
"type": "string"
},
"file": {
"type": "string"
}
},
"required": [
"service"
],
"additionalProperties": false
}
]
},
"extra_hosts": {
"$ref": "#/definitions/list_or_dict"
},
"external_links": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"hostname": {
"type": "string"
},
"image": {
"type": "string"
},
"ipc": {
"type": "string"
},
"labels": {
"$ref": "#/definitions/list_or_dict"
},
"links": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"log_driver": {
"type": "string"
},
"log_opt": {
"type": "object"
},
"mac_address": {
"type": "string"
},
"mem_limit": {
"type": [
"number",
"string"
]
},
"memswap_limit": {
"type": [
"number",
"string"
]
},
"name": {
"type": "string"
},
"net": {
"type": "string"
},
"pid": {
"type": [
"string",
"null"
]
},
"ports": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string",
"format": "ports"
},
{
"type": "number",
"format": "ports"
}
]
},
"_uniqueItems": true
},
"privileged": {
"type": "boolean"
},
"read_only": {
"type": "boolean"
},
"restart": {
"type": "string"
},
"security_opt": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"stdin_open": {
"type": "boolean"
},
"tty": {
"type": "boolean"
},
"ulimits": {
"type": "object",
"patternProperties": {
"^[a-z]+$": {
"oneOf": [
{
"type": "integer"
},
{
"type": "object",
"properties": {
"hard": {
"type": "integer"
},
"soft": {
"type": "integer"
}
},
"required": [
"soft",
"hard"
],
"additionalProperties": false
}
]
}
}
},
"user": {
"type": "string"
},
"volumes": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"volume_driver": {
"type": "string"
},
"volumes_from": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"working_dir": {
"type": "string"
}
},
"dependencies": {
"memswap_limit": [
"mem_limit"
]
},
"additionalProperties": false
},
"string_or_list": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/list_of_strings"
}
]
},
"list_of_strings": {
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
"list_or_dict": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"_uniqueItems": true
},
{
"type": "object"
}
]
}
},
"additionalProperties": false
} | o8777 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress": {
"description": "EndpointAddress is a tuple that describes single IP address.",
"properties": {
"hostname": {
"description": "The Hostname of this endpoint",
"type": "string"
},
"ip": {
"description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.",
"type": "string"
},
"nodeName": {
"description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
"type": "string"
},
"targetRef": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference",
"description": "Reference to object providing the endpoint."
}
},
"required": [
"ip"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointPort": {
"description": "EndpointPort is a tuple that describes a single port.",
"properties": {
"appProtocol": {
"description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.",
"type": "string"
},
"name": {
"description": "The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.",
"type": "string"
},
"port": {
"_format": "int32",
"description": "The port number of the endpoint.",
"type": "integer"
},
"protocol": {
"description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
"type": "string"
}
},
"required": [
"port"
],
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointSubset": {
"description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]",
"properties": {
"addresses": {
"description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress"
},
"type": "array"
},
"notReadyAddresses": {
"description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointAddress"
},
"type": "array"
},
"ports": {
"description": "Port numbers available on the related IP addresses.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointPort"
},
"type": "array"
}
},
"type": "object"
},
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Endpoints": {
"description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n Name: \"mysvc\",\n Subsets: [\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n },\n {\n Addresses: [{\"ip\": \"10.10.3.3\"}],\n Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n },\n ]",
"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": [
"Endpoints"
],
"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"
},
"subsets": {
"description": "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EndpointSubset"
},
"type": "array"
}
},
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "Endpoints",
"version": "v1"
}
]
},
"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_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": "EndpointsList is a list of endpoints.",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": [
"string",
"null"
]
},
"items": {
"description": "List of endpoints.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Endpoints"
},
"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": [
"EndpointsList"
],
"type": [
"string",
"null"
]
},
"metadata": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta",
"description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
}
},
"required": [
"items"
],
"type": "object",
"x-kubernetes-group-version-kind": [
{
"group": "",
"kind": "EndpointsList",
"version": "v1"
}
]
} | kb_313_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "top level oneOf enum array",
"type": "array",
"definitions": {
"MyEnum": {
"enum": [
"a",
"b",
"c"
]
}
},
"items": {
"oneOf": [
{
"$ref": "#/definitions/MyEnum"
},
{
"enum": [
"d",
"e"
]
}
]
}
} | o58615 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition": {
"description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.",
"properties": {
"lastTransitionTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time the condition transitioned from one status to another."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of replication controller condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"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": "ReplicationControllerStatus represents the current status of a replication controller.",
"properties": {
"availableReplicas": {
"description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"conditions": {
"description": "Represents the latest available observations of a replication controller's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ReplicationControllerCondition"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"fullyLabeledReplicas": {
"description": "The number of pods that have labels matching the labels of the pod template of the replication controller.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"observedGeneration": {
"description": "ObservedGeneration reflects the generation of the most recently observed replication controller.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"readyReplicas": {
"description": "The number of ready replicas for this replication controller.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"replicas": {
"description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"required": [
"replicas"
],
"type": "object"
} | kb_823_Normalized |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"message": {
"topic": {
"type": "string",
"pattern": "^/[a-z\\-]+$"
},
"since": {
"type": "integer"
},
"snapshot": {
"type": "boolean"
},
"filter": {
"type": "string",
"maxLength": 137,
"pattern": "^[\\w\\-\\.#@\\*\\[\\]\\?]+$"
}
},
"properties": {
"message.topic": {
"$ref": "#/message/topic"
},
"message.since": {
"$ref": "#/message/since"
},
"message.snapshot": {
"$ref": "#/message/snapshot"
},
"message.filter": {
"$ref": "#/message/filter"
}
},
"required": [
"message.topic",
"message.since",
"message.snapshot",
"message.filter"
]
} | o55045 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"coordinates": {
"type": "object",
"additionalProperties": false,
"required": [
"x",
"y"
],
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
}
}
}
},
"description": "Module specifications",
"type": "object",
"$comment": "Example key: 'magdeck'",
"patternProperties": {
".*": {
"type": "object",
"required": [
"labwareOffset",
"dimensions",
"calibrationPoint",
"displayName",
"loadName",
"quirks"
],
"additionalProperties": false,
"properties": {
"labwareOffset": {
"$ref": "#/definitions/coordinates"
},
"dimensions": {
"type": "object",
"required": [
"bareOverallHeight",
"overLabwareHeight"
],
"properties": {
"bareOverallHeight": {
"type": "number"
},
"overLabwareHeight": {
"type": "number"
},
"lidHeight": {
"type": "number"
}
}
},
"calibrationPoint": {
"$ref": "#/definitions/coordinates"
},
"displayName": {
"type": "string"
},
"loadName": {
"type": "string"
},
"quirks": {
"type": "array",
"description": "List of quirks for a given module",
"items": {
"type": "string"
}
}
}
}
}
} | o12455 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "SSM model",
"description": "Description of an state space model following the grammar of the SSM inference package",
"definitions": {
"require": {
"type": "object",
"properties": {
"datapackage": {
"type": "string"
},
"resource": {
"type": "string"
},
"fields": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"type": "object",
"properties": {
"populations": {
"type": "array",
"description": "Grouping of the state variables comprised in your compartmental model. For each group, provide a name and the list of corresponding states. By adding an optional remainder field, you will ensure the population size remains positive.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"composition": {
"type": "array",
"items": {
"type": "string"
}
},
"remainder": {
"type": "object",
"description": "Following this instruction, the value of the remainder variable at every time will be determined by the size of the population minus the sum of the other compartments. Note that SSM will discard scenarios where this variable becomes negative.",
"properties": {
"name": {
"type": "string"
},
"pop_size": {
"type": "string"
}
},
"required": [
"name",
"pop_size"
]
}
},
"required": [
"name",
"composition"
]
}
},
"reactions": {
"type": "array",
"description": "Description of the dynamics of your compartmental model. We only consider density-dependent reactions: each rate will be multiplied by the size of the compartment individuals are leaving. See the accumulators and white_noise optional fields for additional options.",
"items": {
"type": "object",
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
},
"rate": {
"type": "string"
},
"description": {
"type": "string"
},
"white_noise": {
"type": "object",
"description": "In order to cope with the absence or mis-specification of environmental factors in the model, you can multiply the rate of each reaction by a white gamma noise. To correlate these noises, use the same name. For more information, see Breto et al. 2009, Time series analysis via mechanistic models.",
"properties": {
"name": {
"type": "string"
},
"sd": {
"type": "string"
}
},
"required": [
"name",
"sd"
]
},
"accumulators": {
"type": "array",
"description": "When your are monitoring or fitting the integrated flow of a given reaction, you can store it in one or several variables defined in this list. If a given flow variable is repeated in several reactions, it will correspond of the sum of the flows of these reactions.",
"items": {
"type": "string"
}
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"from",
"to",
"rate"
]
}
},
"sde": {
"type": "object",
"description": "System of stochastic differential equations, defined by their drift vector and dispersion matrix",
"properties": {
"drift": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "State variable which dynamic is determined by this line of the system."
},
"f": {
"type": [
"number",
"string"
],
"description": "Deterministic component of the equation."
},
"transformation": {
"type": "string",
"description": "In case you want to express the equation in terms of a function of X and avoid applying the Ito formula."
}
},
"required": [
"name",
"f"
]
}
},
"dispersion": {
"type": "array",
"description": "Dispersion matrix L. It needs to have as many rows as objects in drifts, and as many rows as independent sources of noise.",
"items": {
"type": "array",
"items": {
"type": [
"number",
"string"
]
}
}
}
},
"required": [
"drift",
"dispersion"
]
},
"ode": {
"type": "array",
"description": "System of ordinary differential equations.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "State variable which dynamic is determined by this line of the system."
},
"f": {
"type": [
"number",
"string"
],
"description": "Deterministic component of the equation."
},
"transformation": {
"type": "string",
"description": "In case you want to express the equation in terms of a function of X and avoid applying the Ito formula."
}
},
"required": [
"name",
"f"
]
}
},
"observations": {
"type": "array",
"description": "Name each of the observed time series, determine when observations started to be collected and what is the distribution of the observation process.",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"start": {
"type": "string",
"format": "date-time"
},
"distribution": {
"type": "string"
},
"mean": {
"type": "string"
},
"sd": {
"type": "string"
}
},
"required": [
"name",
"start",
"distribution",
"mean",
"sd"
]
}
},
"data": {
"type": "array",
"description": "Link each of the observed variables to a data resource.",
"items": {
"type": "object",
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"require": {
"$ref": "#/definitions/require"
},
"transformation": {
"description": "When the parameters used in the model are functions of the data resources, specify the relation here.",
"type": "string"
}
},
"required": [
"name",
"require"
]
}
]
}
},
"inputs": {
"type": "array",
"description": "Link each of the parameters or covariates at stake in your model to a data resource.",
"items": {
"type": "object",
"anyOf": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"require": {
"$ref": "#/definitions/require"
},
"transformation": {
"description": "When the parameters used in the model are functions of the data resources, specify the relation here.",
"type": "string"
},
"to_resource": {
"description": "In order to make predictions after fitting your data, specify how to invert the transformation relation at a later time than t0.",
"type": "string"
}
},
"required": [
"name"
]
}
]
}
}
}
} | o73810 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"global": {
"type": "object",
"properties": {
"kernsysteme": {
"type": "array",
"items": {
"type": "object",
"properties": {
"inkarnationsName": {
"type": "string"
}
},
"required": [
"inkarnationsName"
]
}
},
"makrodefinitionen": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"wert": {
"type": "string"
}
},
"required": [
"name",
"wert"
]
}
},
"zugangDav": {
"type": "object",
"properties": {
"adresse": {
"type": "string",
"default": "localhost"
},
"passWord": {
"type": "string",
"default": "passwort"
},
"port": {
"type": "string",
"default": "3000"
},
"userName": {
"type": "string",
"default": "Tester"
}
},
"required": [
"adresse",
"passWord",
"port",
"userName"
]
},
"usv": {
"type": "object",
"properties": {
"pid": {
"type": "string"
}
},
"required": [
"pid"
]
},
"rechner": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"tcpAdresse": {
"type": "string"
},
"port": {
"type": "string",
"default": "3000"
}
},
"required": [
"name",
"tcpAdresse",
"port"
]
}
}
},
"required": [
"zugangDav"
]
},
"inkarnationen": {
"type": "array",
"items": {
"type": "object",
"properties": {
"inkarnationsName": {
"type": "string"
},
"inkarnationsTyp": {
"type": "string",
"enum": [
"dav",
"wrapped",
"extern"
],
"default": "dav"
},
"initialize": {
"type": "boolean",
"default": false
},
"mitInkarnationsName": {
"type": "boolean",
"default": true
},
"applikation": {
"type": "string"
},
"aufrufParameter": {
"type": "array",
"items": {
"type": "string"
}
},
"startArt": {
"type": "object",
"properties": {
"option": {
"type": "string",
"enum": [
"automatisch",
"manuell",
"intervallrelativ",
"intervallabsolut"
]
},
"neuStart": {
"type": "boolean"
},
"intervall": {
"type": "string"
}
},
"required": [
"option"
]
},
"startBedingung": {
"type": "object",
"properties": {
"vorgaenger": {
"type": "array",
"items": {
"type": "string"
}
},
"warteart": {
"type": "string",
"enum": [
"beginn",
"ende"
]
},
"rechner": {
"type": "string"
},
"wartezeit": {
"type": "string"
}
},
"required": [
"vorgaenger"
]
},
"startFehlerVerhalten": {
"type": "object",
"properties": {
"option": {
"type": "string",
"enum": [
"beenden",
"abbruch",
"ignorieren"
]
},
"wiederholungen": {
"type": "string"
}
}
},
"stoppBedingung": {
"type": "object",
"properties": {
"nachfolger": {
"type": "array",
"items": {
"type": "string"
}
},
"rechner": {
"type": "string"
},
"wartezeit": {
"type": "string"
}
},
"required": [
"nachfolger"
]
},
"stoppFehlerVerhalten": {
"type": "object",
"properties": {
"option": {
"type": "string",
"enum": [
"stopp",
"abbruch",
"ignorieren"
]
},
"wiederholungen": {
"type": "string"
}
},
"required": [
"option"
]
}
},
"required": [
"inkarnationsName",
"inkarnationsTyp",
"applikation",
"startArt"
]
}
},
"metaDaten": {
"type": "object",
"properties": {
"aenderungsGrund": {
"type": "string"
},
"erstelltAm": {
"type": "string"
},
"erstelltDurch": {
"type": "string"
},
"versionsNummer": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"required": [
"global",
"inkarnationen"
]
} | o26566 |
{
"properties": {
"check-in_date": {
"description": "The check-in date in YYYY-MM-DD format",
"type": "string"
},
"check-out_date": {
"description": "The check-out date in YYYY-MM-DD format",
"type": "string"
},
"location": {
"description": "The location to search for hotels",
"type": "string"
},
"price_range": {
"properties": {
"max_price": {
"description": "The maximum price range",
"type": "number"
},
"min_price": {
"description": "The minimum price range",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"location",
"check-in_date",
"check-out_date"
],
"type": "object"
} | search_hotels_487ba3e4 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"login-output": {
"type": "object",
"properties": {
"token": {
"type": "string"
}
},
"required": [
"token"
]
},
"logout-output": {
"type": "object",
"properties": {
"tokens_removed": {
"type": "integer"
}
},
"required": [
"tokens_removed"
]
}
},
"properties": {
"login-output": {
"$ref": "#/definitions/login-output"
},
"logout-output": {
"$ref": "#/definitions/logout-output"
}
},
"required": [
"login-output",
"logout-output"
]
} | o74171 |
{
"$comment": "https://github.com/canonical/chisel/tree/main#slice-definitions",
"$id": "https://json.schemastore.org/chisel-slices.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "A slice definition for Ubuntu Chisel tool. For details, see https://github.com/canonical/chisel/tree/main#slice-definitions.",
"properties": {
"package": {
"type": "string",
"description": "The name of the package to use for the slice.",
"pattern": "^[a-z0-9][a-z0-9+\\-\\.]+$",
"examples": ["libgcc-s1", "libunwind-13"]
},
"archive": {
"type": "string",
"description": "The name of the archive to use for the slice. Archives are defined in the chisel.yaml file.",
"examples": ["ubuntu"]
},
"slices": {
"type": "object",
"description": "Slice definitions for this package.",
"patternProperties": {
"^[_a-zA-Z][a-zA-Z0-9_-]*$": {
"description": "The name of the slice part.",
"type": "object",
"additionalProperties": false,
"properties": {
"essential": {
"type": "array",
"description": "The name of the dependency slice part. The slice part is formatted as '<slice_name>_<slice_part>'.",
"uniqueItems": true,
"items": {
"type": "string",
"pattern": "^[a-z0-9][a-z0-9+\\-\\._]+$"
},
"examples": ["libgcc-s1_libs", "ca-certificates_data"]
},
"mutate": {
"type": "string",
"description": "A Starlark expression to modify the file contents.",
"examples": ["foo = content.read(\"/path/to/temporary/content\")"]
},
"contents": {
"type": "object",
"description": "Files to include in the slice. Supports glob patterns.",
"examples": [
{ "/lib*/ld*.so.*": {} },
{ "/usr/share/nodejs/cjs-module-lexer/**": {} },
{ "/path/to/moved/content": { "copy": "/bin/original" } },
{ "/path/to/link": { "symlink": "/bin/mybin" } },
{ "/path/to/new/dir": { "make": true } },
{ "/path/to/file/with/text": { "text": "Some text" } },
{
"/path/to/mutable/file/with/default/text": {
"text": "FIXME",
"mutable": true
}
},
{ "/path/to/temporary/content": { "until": "mutate" } }
],
"patternProperties": {
"^.+$": {
"description": "Path description.",
"type": ["object", "null"],
"additionalProperties": false,
"properties": {
"make": {
"type": "boolean",
"description": "Make this file or directory if it does not already exist.",
"default": true
},
"mode": {
"type": "integer",
"description": "File permissions to use.",
"examples": ["0o755"]
},
"copy": {
"type": "string",
"description": "Copy this file or directory from this location.",
"examples": ["/path/to/original/file.txt"]
},
"text": {
"type": "string",
"description": "The contents of the file.",
"examples": ["FIXME"]
},
"symlink": {
"type": "string",
"description": "Make a symlink to this file or directory.",
"examples": ["/path/to/source/file.txt"]
},
"mutable": {
"type": "boolean",
"description": "If true, the file is mutable.",
"default": true
},
"until": {
"type": "string",
"description": "Only keep this file until this stage.",
"examples": ["mutate"],
"default": "",
"$comment": "Valid values: 'mutate' and ''. But most editors will not accept an empty string.",
"enum": ["", "mutate"]
},
"arch": {
"type": "array",
"description": "Only include this file on specific architectures.",
"uniqueItems": true,
"examples": [["amd64", "arm64"]],
"items": {
"type": "string",
"examples": [
"amd64",
"i386",
"armhf",
"arm64",
"powerpc",
"ppc64el",
"s390x",
"riscv64"
]
}
}
}
}
}
}
}
}
}
}
},
"title": "Canonical Chisel Slice Definition",
"type": "object"
}
| chisel-slices |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OSTRICH-SWMM Config",
"description": "A configuration for the OSTRICH-SWMM package.",
"type": "object",
"properties": {
"binary_output_path": {
"type": "string"
},
"input_template_path": {
"type": "string",
"minLength": 1
},
"input_parameters_path": {
"type": "string",
"minLength": 1
},
"input_path": {
"type": "string",
"minLength": 1
},
"report_output_path": {
"type": "string",
"minLength": 1
},
"swmm_path": {
"type": "string",
"minLength": 1
},
"summary_dir": {
"type": "string"
},
"extract": {
"type": "object",
"properties": {
"steps": {
"type": "array",
"items": {
"$ref": "#/definitions/extract_step"
}
}
},
"required": [
"steps"
]
}
},
"definitions": {
"extract_step": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/node_extract_step"
}
],
"properties": {
"enabled": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"required": [
"type"
]
},
"node_extract_step": {
"type": "object",
"properties": {
"event_threshold_flow_rate": {
"type": "number"
},
"type": {
"type": "string",
"pattern": "^node$"
},
"nodes": {
"type": "array",
"items": {
"type": "string"
}
},
"output_path": {
"type": "string"
},
"statistics": {
"type": "array",
"items": {
"$ref": "#/definitions/node_extract_statistic"
}
}
},
"required": [
"statistics",
"nodes",
"output_path"
]
},
"node_extract_statistic": {
"enum": [
"node_name",
"num_flow_events",
"total_flow_volume",
"total_flow_duration",
"first_flow_start",
"first_flow_end",
"first_flow_duration",
"first_flow_volume",
"last_flow_start",
"last_flow_end",
"last_flow_duration",
"last_flow_volume",
"max_volume_flow_start",
"max_volume_flow_end",
"max_volume_flow_duration",
"max_volume_flow_volume",
"max_duration_flow_start",
"max_duration_flow_end",
"max_duration_flow_duration",
"max_duration_flow_volume"
]
}
}
} | o55595 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Response data for SAS communications",
"type": "object",
"required": [
"responseCode"
],
"properties": {
"responseCode": {
"enum": [
0,
100,
101,
102,
103,
104,
105,
200,
201,
202,
300,
400,
401,
500,
501,
502
],
"description": "An integer indicating the type of the response. 0 means success (no error)"
},
"responseMessage": {
"type": "string",
"description": "A detailed human-readable string describing the response."
},
"responseData": {
"description": "Additional response-dependent structured data containing more information about an error.",
"additionalProperties": true
}
}
} | o55795 |
{
"properties": {
"marathon-lb": {
"properties": {
"auto-assign-service-ports": {
"default": false,
"description": "Auto assign service ports for tasks which use IP-per-task. See https://github.com/mesosphere/marathon-lb#mesos-with-ip-per-task-support for details.",
"type": "boolean"
},
"bind-http-https": {
"default": true,
"description": "Reserve ports 80 and 443 for the LB. Use this if you intend to use virtual hosts.",
"type": "boolean"
},
"cpus": {
"default": 2,
"description": "CPU shares to allocate to each marathon-lb instance.",
"minimum": 1,
"type": "number"
},
"haproxy-group": {
"default": "external",
"description": "HAProxy group parameter. Matches with HAPROXY_GROUP in the app labels.",
"type": "string"
},
"haproxy-map": {
"default": true,
"description": "Enable HAProxy VHost maps for fast VHost routing.",
"type": "boolean"
},
"haproxy_global_default_options": {
"default": "redispatch,http-server-close,dontlognull",
"description": "Default global options for HAProxy.",
"type": "string"
},
"instances": {
"default": 1,
"description": "Number of instances to run.",
"minimum": 1,
"type": "integer"
},
"marathon-uri": {
"default": "http://marathon.mesos:8080",
"description": "URI of Marathon instance",
"type": "string"
},
"maximumOverCapacity": {
"default": 0.2,
"description": "Maximum over capacity.",
"minimum": 0,
"type": "number"
},
"mem": {
"default": 1024.0,
"description": "Memory (MB) to allocate to each marathon-lb task.",
"minimum": 256.0,
"type": "number"
},
"minimumHealthCapacity": {
"default": 0.5,
"description": "Minimum health capacity.",
"minimum": 0,
"type": "number"
},
"name": {
"default": "marathon-lb",
"description": "Name for this LB instance",
"type": "string"
},
"role": {
"default": "slave_public",
"description": "Deploy marathon-lb only on nodes with this role.",
"type": "string"
},
"secret_name": {
"default": "",
"description": "Name of the Secret Store credentials to use for DC/OS service authentication. This should be left empty unless service authentication is needed.",
"type": "string"
},
"ssl-cert": {
"description": "TLS Cert and private key for HTTPS.",
"type": "string"
},
"sysctl-params": {
"default": "net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_max_syn_backlog=10240 net.ipv4.tcp_max_tw_buckets=400000 net.ipv4.tcp_max_orphans=60000 net.core.somaxconn=10000",
"description": "sysctl params to set at startup for HAProxy.",
"type": "string"
},
"template-url": {
"default": "",
"description": "URL to tarball containing a directory templates/ to customize haproxy config.",
"type": "string"
}
},
"required": [
"cpus",
"mem",
"haproxy-group",
"instances",
"name"
],
"type": "object"
}
},
"type": "object"
} | o90740 |
{
"additionalProperties": false,
"description": "Schema for a URI redirect through a Snowplow event collector",
"properties": {
"uri": {
"_format": "uri",
"maxLength": 8192,
"type": "string"
}
},
"required": [
"uri"
],
"self": {
"format": "jsonschema",
"name": "uri_redirect",
"vendor": "com.snowplowanalytics.snowplow",
"version": "1-0-0"
},
"type": "object"
} | sp_325_Normalized |
{
"id": "https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/schemas/v1.2/oauth2GrantType.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"minProperties": 1,
"properties": {
"implicit": {
"$ref": "#/definitions/implicit"
},
"authorization_code": {
"$ref": "#/definitions/authorizationCode"
}
},
"definitions": {
"implicit": {
"type": "object",
"required": [
"loginEndpoint"
],
"properties": {
"loginEndpoint": {
"$ref": "#/definitions/loginEndpoint"
},
"tokenName": {
"type": "string"
}
},
"additionalProperties": false
},
"authorizationCode": {
"type": "object",
"required": [
"tokenEndpoint",
"tokenRequestEndpoint"
],
"properties": {
"tokenEndpoint": {
"$ref": "#/definitions/tokenEndpoint"
},
"tokenRequestEndpoint": {
"$ref": "#/definitions/tokenRequestEndpoint"
}
},
"additionalProperties": false
},
"loginEndpoint": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
},
"tokenEndpoint": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"tokenName": {
"type": "string"
}
},
"additionalProperties": false
},
"tokenRequestEndpoint": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"clientIdName": {
"type": "string"
},
"clientSecretName": {
"type": "string"
}
},
"additionalProperties": false
}
}
} | o12178 |
{
"additionalProperties": false,
"description": "Social fields for the user serializer",
"properties": {
"academiaProfileID": {
"description": "The academiaProfileID for the given user",
"type": "string"
},
"baiduScholar": {
"description": "The baiduScholar for the given user",
"type": "string"
},
"github": {
"description": "The github for the given user",
"items": {
"type": "string"
},
"maxItems": 1,
"type": "array"
},
"impactStory": {
"description": "The impactStory for the given user",
"type": "string"
},
"linkedIn": {
"description": "The linkedIn for the given user",
"items": {
"type": "string"
},
"maxItems": 1,
"type": "array"
},
"orcid": {
"description": "The orcid for the given user",
"type": "string"
},
"profileWebsites": {
"description": "The profileWebsites for the given user",
"items": {
"type": "string"
},
"type": "array"
},
"researchGate": {
"description": "The researchGate for the given user",
"type": "string"
},
"researcherId": {
"description": "The researcherId for the given user",
"type": "string"
},
"scholar": {
"description": "The google scholar ID for the given user",
"type": "string"
},
"ssrn": {
"description": "The ssrn for the given user",
"type": "string"
},
"twitter": {
"description": "The twitter for the given user",
"items": {
"type": "string"
},
"maxItems": 1,
"type": "array"
}
},
"title": "Social Fields",
"type": "object"
} | o66330 |
{
"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"
}
},
"type": "object"
},
"shape": {
"description": "The shape type (circle, rectangle, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_2c677768 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"items": {
"properties": {
"description": {
"description": "The item description",
"type": "string"
},
"price": {
"description": "The item price",
"type": "number"
},
"quantity": {
"description": "The item quantity",
"type": "integer"
}
},
"required": [
"description",
"quantity",
"price"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"customer_name",
"items"
],
"type": "object"
} | create_invoice_7d13b5c7 |
{
"properties": {
"cuisine": {
"description": "The desired cuisine type",
"type": "string"
},
"excluded_ingredients": {
"description": "The ingredients to exclude from the recipes",
"items": {
"type": "string"
},
"type": "array"
},
"ingredients": {
"description": "The ingredients to include in the recipes",
"items": {
"type": "string"
},
"type": "array"
},
"max_results": {
"description": "The maximum number of results to return",
"type": "integer"
}
},
"required": [
"ingredients"
],
"type": "object"
} | search_recipes_e0fa3e61 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSON schema for the ASP.NET global configuration files",
"type": "object",
"properties": {
"sources": {
"description": "A list of source folders relative to this file.",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": true,
"required": [
"sources"
]
} | o73920 |
{
"properties": {
"car_make": {
"description": "The make of the car",
"type": "string"
},
"car_model": {
"description": "The model of the car",
"type": "string"
},
"distance": {
"description": "The distance traveled in kilometers",
"type": "number"
},
"fuel_efficiency": {
"description": "The fuel efficiency of the car in kilometers per liter",
"type": "number"
}
},
"required": [
"car_make",
"car_model",
"distance",
"fuel_efficiency"
],
"type": "object"
} | calculate_car_emissions_056da912 |
{
"definitions": {
"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_PreferredSchedulingTerm": {
"description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).",
"properties": {
"preference": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm",
"description": "A node selector term, associated with the corresponding weight."
},
"weight": {
"_format": "int32",
"description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
"type": "integer"
}
},
"required": [
"weight",
"preference"
],
"type": "object"
}
},
"description": "Node affinity is a group of node affinity scheduling rules.",
"properties": {
"preferredDuringSchedulingIgnoredDuringExecution": {
"description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm"
},
"type": [
"array",
"null"
]
},
"requiredDuringSchedulingIgnoredDuringExecution": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector",
"description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node."
}
},
"type": "object"
} | kb_611_Normalized |
{
"properties": {
"dimensions": {
"dependencies": {
"shape": [
"circle"
]
},
"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"
},
"width": {
"description": "The width of the rectangle",
"type": "number"
}
},
"required": [
"radius",
"length",
"width",
"height"
],
"type": "object"
},
"shape": {
"description": "The type of shape",
"enum": [
"circle",
"rectangle",
"triangle"
],
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_d1be6fdf |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"name": "core",
"properties": {
"arch": {
"type": "string"
},
"clientId": {
"type": "string",
"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
},
"device": {
"type": "string"
},
"experiments": {
"type": "array",
"items": {
"type": "string"
}
},
"locale": {
"type": "string"
},
"os": {
"type": "string"
},
"osversion": {
"type": "string"
},
"seq": {
"type": "integer",
"minimum": 0
},
"v": {
"type": "integer",
"enum": [
1
]
}
},
"required": [
"arch",
"clientId",
"device",
"locale",
"os",
"osversion",
"seq",
"v"
]
} | o17940 |
{
"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 area is to be calculated",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_425ec4c0 |
{
"definitions": {
"https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DeploymentCondition": {
"description": "DeploymentCondition describes the state of a deployment at a certain 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."
},
"lastUpdateTime": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time",
"description": "The last time this condition was updated."
},
"message": {
"description": "A human readable message indicating details about the transition.",
"type": "string"
},
"reason": {
"description": "The reason for the condition's last transition.",
"type": "string"
},
"status": {
"description": "Status of the condition, one of True, False, Unknown.",
"type": "string"
},
"type": {
"description": "Type of deployment condition.",
"type": "string"
}
},
"required": [
"type",
"status"
],
"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": "DeploymentStatus is the most recently observed status of the Deployment.",
"properties": {
"availableReplicas": {
"description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"collisionCount": {
"description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"conditions": {
"description": "Represents the latest available observations of a deployment's current state.",
"items": {
"$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_DeploymentCondition"
},
"type": [
"array",
"null"
],
"x-kubernetes-patch-merge-key": "type",
"x-kubernetes-patch-strategy": "merge"
},
"observedGeneration": {
"description": "The generation observed by the deployment controller.",
"format": "int64",
"type": [
"integer",
"null"
]
},
"readyReplicas": {
"description": "Total number of ready pods targeted by this deployment.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"replicas": {
"description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).",
"format": "int32",
"type": [
"integer",
"null"
]
},
"unavailableReplicas": {
"description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.",
"format": "int32",
"type": [
"integer",
"null"
]
},
"updatedReplicas": {
"description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
"format": "int32",
"type": [
"integer",
"null"
]
}
},
"type": "object"
} | kb_278_Normalized |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "A Price Floors object which is parsed and used to enforce dynamic floors depending on the properties of the json",
"type": "object",
"title": "Price Floors Enforcement",
"required": [
"schema",
"values"
],
"properties": {
"schema": {
"type": "object",
"description": "Defines the schema of the rules",
"required": [
"fields"
],
"properties": {
"fields": {
"type": "array",
"description": "The list of fields to be used for matching criteria of a bid response with a price floor",
"minItems": 1,
"_uniqueItems": true,
"additionalItems": false,
"items": {
"type": "string"
}
},
"delimiter": {
"type": "string",
"description": "The character used to differentiate the fields inside a single rule",
"examples": [
"|",
"^",
"~"
]
}
}
},
"values": {
"type": "object",
"description": "A object with key : value pairs which constitutes a rule and floor",
"additionalProperties": {
"type": "number"
},
"minProperties": 1,
"examples": [
{
"123456/someSlot|300x250|www.prebid.org": 1.5,
"123456/someSlot|300x600|www.prebid.org": 2.5,
"123456/someSlot|300x600|*": 1.2,
"123456/someSlot|*|*": 0.8
}
]
},
"currency": {
"type": "string",
"description": "The three digit Currency Code which the floors are provided in",
"examples": [
"USD",
"EUR",
"JPY"
],
"pattern": "^[a-zA-Z]{3}$"
},
"modelVersion": {
"type": "string",
"description": "The floor modeling name to be used for tracking",
"examples": [
"Prebid-Floor-Model-1.2"
]
},
"skipRate": {
"type": "integer",
"description": "The skip rate as to which flooring will be 'turned off' for a given auction",
"minimum": 0,
"maximum": 100
},
"default": {
"type": "number",
"description": "The default floor to use if no entry in the value matches a bid response",
"examples": [
0.75
]
}
}
} | o68277 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"bidder": {
"type": "object",
"properties": {
"login": {
"type": "string"
}
}
},
"requestedItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"offeredItems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
} | o54976 |
{
"properties": {
"dimensions": {
"properties": {
"base": {
"description": "The base of the triangle (if applicable)",
"type": "number"
},
"height": {
"description": "The height of the triangle (if applicable)",
"type": "number"
},
"radius": {
"description": "The radius of the circle (if applicable)",
"type": "number"
},
"side": {
"description": "The side length of the square (if applicable)",
"type": "number"
}
},
"type": "object"
},
"shape": {
"description": "The shape (e.g., circle, square, triangle)",
"type": "string"
}
},
"required": [
"shape",
"dimensions"
],
"type": "object"
} | calculate_area_f4e198c9 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"privacyStatements"
],
"properties": {
"privacyStatements": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"required": [
"id",
"issuedDate"
],
"properties": {
"id": {
"type": "string"
},
"issuedDate": {
"type": "string",
"format": "date"
}
}
}
}
}
} | o39165 |
{
"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",
"null"
]
},
"diskName": {
"description": "The Name of the data disk in the blob storage",
"type": [
"string",
"null"
]
},
"diskURI": {
"description": "The URI the data disk in the blob storage",
"type": [
"string",
"null"
]
},
"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",
"null"
]
},
"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",
"null"
]
},
"readOnly": {
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
"type": [
"boolean",
"null"
]
}
},
"required": [
"diskName",
"diskURI"
],
"type": "object"
} | kb_51_Normalized |
{
"$schema": "http://json-schema.org/draft-06/schema#",
"description": "400 error returned on user creation, if bad data was probvided, or the user exists in the system",
"type": "object",
"properties": {
"status": {
"type": "integer"
},
"message": {
"type": "string",
"oneOf": [
{"const": "user already exists"},
{"const": "invalid request. Validate data using provided schema"}
]
},
"link": {
"type": "string"
}
},
"required": [
"status",
"message",
"link"
]
}
| o10475 |
{
"$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": [
"EiffelTestSuiteFinishedEvent"
]
},
"version": {
"type": "string",
"enum": [
"3.0.0"
],
"default": "3.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": {
"authorIdentity": {
"type": "string"
},
"integrityProtection": {
"type": "object",
"properties": {
"signature": {
"type": "string"
},
"alg": {
"type": "string",
"enum": [
"HS256",
"HS384",
"HS512",
"RS256",
"RS384",
"RS512",
"ES256",
"ES384",
"ES512",
"PS256",
"PS384",
"PS512"
]
},
"publicKey": {
"type": "string"
}
},
"required": [
"signature",
"alg"
],
"additionalProperties": false
},
"sequenceProtection": {
"type": "array",
"items": {
"type": "object",
"properties": {
"sequenceName": {
"type": "string"
},
"position": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"sequenceName",
"position"
]
}
}
},
"additionalProperties": false,
"required": [
"authorIdentity"
]
}
},
"required": [
"id",
"type",
"version",
"time"
],
"additionalProperties": false
},
"data": {
"type": "object",
"properties": {
"outcome": {
"type": "object",
"properties": {
"verdict": {
"type": "string",
"enum": [
"PASSED",
"FAILED",
"INCONCLUSIVE"
]
},
"conclusion": {
"type": "string",
"enum": [
"SUCCESSFUL",
"FAILED",
"ABORTED",
"TIMED_OUT",
"INCONCLUSIVE"
]
},
"description": {
"type": "string"
}
},
"additionalProperties": false
},
"persistentLogs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"uri": {
"type": "string"
}
},
"required": [
"name",
"uri"
],
"additionalProperties": false
}
},
"customData": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
},
"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
} | o5417 |
{
"description": "Specifies relationships between the current document and an external resource.",
"properties": {
"href": {
"description": "A URL. Specifies the location of the linked document.",
"maxLength": 255,
"type": "string"
},
"method": {
"description": "Specifies how to send the data (e.g. get, post).",
"enum": [
"get",
"post"
],
"type": "string"
},
"objectType": {
"description": "The type of the object, link.",
"maxLength": 25,
"type": "string"
},
"rel": {
"description": "Specifies the relationship between the current document and the linked document.",
"maxLength": 25,
"type": "string"
},
"title": {
"description": "Provide additional / advisory information (expand on the meaning of the link).",
"maxLength": 25,
"type": "string"
},
"type": {
"description": "Specifies the media type of the linked document.",
"maxLength": 25,
"type": "string"
}
},
"required": [
"objectType",
"href",
"rel"
],
"title": "link",
"type": "object"
} | o28196 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"id": {
"type": "integer"
}
},
"type": "object",
"properties": {
"id": {
"$ref": "#/definitions/id"
},
"label": {
"type": "string"
},
"phase": {
"description": "Buckets have a phase, which represents the approximate part of the recruitment process this bucket is for - for example the phase 'interview' might have several buckets (e.g. 'line manager interview', etc.).",
"enum": [
"new",
"screening",
"interview",
"selection",
"offer",
"approval",
"hire",
"onboard",
"decline",
"other"
]
},
"key": {
"type": "string"
}
},
"required": [
"id",
"label",
"phase"
],
"additionalProperties": false
} | o79539 |
{
"properties": {
"customer_name": {
"description": "The name of the customer",
"type": "string"
},
"items": {
"description": "The items included in the transaction",
"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"
},
"total_amount": {
"description": "The total amount of the transaction",
"type": "number"
}
},
"required": [
"customer_name",
"total_amount",
"items"
],
"type": "object"
} | generate_invoice_867360c2 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "geometry",
"description": "A geometry is a GeoJSON object where the type member's value is one of the following strings: \"Point\", \"MultiPoint\", \"LineString\", \"MultiLineString\", \"Polygon\", \"MultiPolygon\", or \"GeometryCollection\".\n\nA GeoJSON geometry object of any type other than \"GeometryCollection\" must have a member with the name \"coordinates\". The value of the coordinates member is always an array. The structure for the elements in this array is determined by the type of geometry.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > [Point | LineString | Polygon > [interior | exterior] | MultiGeometry]"
]
},
"type": "object",
"required": [
"type",
"coordinates"
],
"oneOf": [
{
"title": "Point",
"type": "object",
"description": "A point geometry object.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > Point"
]
},
"properties": {
"type": {
"enum": [
"Point"
],
"description": "Type of geometry object."
},
"coordinates": {
"description": "The position representing a point, represented by an array of numbers following x, y, z order (easting, northing, altitude for coordinates in a projected coordinate reference system, or longitude, latitude, altitude for coordinates in a geographic coordinate reference system).",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > Point > coordinates"
]
},
"$ref": "#/definitions/position"
}
}
},
{
"title": "MultiPoint",
"type": "object",
"description": "A geographic object comprised of multiple points.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > Point[ ]"
]
},
"properties": {
"type": {
"enum": [
"MultiPoint"
],
"description": "Type of geometry object."
},
"coordinates": {
"description": "The set of positions that constitute the MultiPoint geometry.",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > Point[ ] > coordinates"
]
},
"$ref": "#/definitions/positionArray"
}
}
},
{
"title": "LineString",
"type": "object",
"description": "A geometry object comprised of a minimum of two positions.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > LineString"
]
},
"properties": {
"type": {
"enum": [
"LineString"
],
"description": "Type of geometry object."
},
"coordinates": {
"description": "The set of positions that constitute the LineString geometry.",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > LineString > coordinates"
]
},
"$ref": "#/definitions/lineString"
}
}
},
{
"title": "MultiLineString",
"type": "object",
"description": "A geometry object comprised of one or more LineStrings.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > LineString[ ]"
]
},
"properties": {
"type": {
"enum": [
"MultiLineString"
],
"description": "Type of geometry object."
},
"coordinates": {
"type": "array",
"description": "The set of LineString(s) that constitute the MultiLineString.",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > LineString[ ] > coordinates"
]
},
"items": {
"$ref": "#/definitions/lineString"
}
}
}
},
{
"title": "Polygon",
"type": "object",
"description": "A geometry object that is composed of a set of LinearRings. A LinearRing is a closed LineString with 4 or more positions. The first and last positions are equivalent (they represent equivalent points).\n\nFor Polygons with multiple rings, the first must be the exterior ring and any others must be interior rings or holes.",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > Polygon"
]
},
"properties": {
"type": {
"enum": [
"Polygon"
],
"description": "Type of geometry object."
},
"coordinates": {
"$ref": "#/definitions/polygon"
}
}
},
{
"title": "MultiPolygon",
"type": "object",
"description": "A geometry object comprised of multiple polygons. ",
"example": "../examples/geometryObject.json",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > Polygon[ ]"
]
},
"properties": {
"type": {
"enum": [
"MultiPolygon"
],
"description": "Type of geometry object."
},
"coordinates": {
"type": "array",
"description": "The set of Polygons that constitute the MultiPolygon.",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > MultiGeometry > geometryMembers > Polygon[ ] > [exterior > LinearRing > coordinates | interior[ ] > LinearRing > coordinates]"
]
},
"items": {
"$ref": "#/definitions/polygon"
}
}
}
}
],
"definitions": {
"position": {
"title": "position",
"description": "A position is the fundamental geometry construct. A position is represented by an array of numbers following x, y, z order (easting, northing, altitude for coordinates in a projected coordinate reference system, or longitude, latitude, altitude for coordinates in a geographic coordinate reference system).",
"type": "array",
"minItems": 2,
"maxItems": 3,
"items": {
"type": "number"
},
"additionalItems": false
},
"positionArray": {
"title": "positionArray",
"description": "An array of positions",
"type": "array",
"items": {
"$ref": "#/definitions/position"
}
},
"lineString": {
"title": "lineString",
"description": "An array of two or more positions",
"allOf": [
{
"$ref": "#/definitions/positionArray"
},
{
"title": "minimum 2",
"description": "The LineString must consist of two or more positions",
"minItems": 2
}
]
},
"linearRing": {
"title": "LinearRing",
"description": "An array of a minimum of four positions where the first equals the last",
"allOf": [
{
"$ref": "#/definitions/positionArray"
},
{
"title": "minimum 4",
"description": "A LinearRing is a closed LineString with 4 or more positions.",
"minItems": 4
}
]
},
"polygon": {
"title": "Polygon",
"description": "A set of LinearRings that constitute a Polygon geometry. For Polygons with multiple rings, the first must be the exterior ring and any others must be interior rings or holes.",
"translation": {
"ISO 19115-2": [
"EX_Extent > geographicElement > EX_BoundingPolygon > polygon > Polygon > [exterior > LinearRing > coordinates | interior[ ] > LinearRing > coordinates]"
]
},
"type": "array",
"items": {
"$ref": "#/definitions/linearRing"
}
}
}
}
| o19022 |
{
"additionalProperties": false,
"properties": {
"datestamp": {
"_format": "date-time",
"type": "string"
},
"testProp": {
"type": "string"
}
},
"required": [
"testProp",
"datestamp"
],
"self": {
"format": "jsonschema",
"name": "example",
"vendor": "quicklime",
"version": "1-0-0"
},
"type": "object"
} | o13142 |
{
"properties": {
"description": {
"description": "Additional description for the event (optional)",
"type": "string"
},
"end_time": {
"description": "The end time of the event",
"type": "string"
},
"location": {
"description": "The location of the event (optional)",
"type": "string"
},
"start_time": {
"description": "The start time of the event",
"type": "string"
},
"title": {
"description": "The title of the event",
"type": "string"
}
},
"required": [
"title",
"start_time",
"end_time"
],
"type": "object"
} | create_calendar_event_a4b57617 |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Notebook JSON Schema",
"type": "object",
"properties": {
"paragraphs": {
"description": "\u6240\u5305\u542b\u7684\u56fe\u8868\u5143\u7d20",
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"description": "\u4ee3\u7801",
"type": "string"
},
"dateUpdated": {
"description": "\u6700\u8fd1\u4fee\u6539\u65f6\u95f4",
"type": "string"
},
"config": {
"description": "\u56fe\u5f62\u663e\u793a\u914d\u7f6e\u9009\u9879",
"type": "object",
"properties": {
"colWidth": {
"description": "\u56fe\u5f62\u5bbd\u5ea6\u8bbe\u7f6e",
"type": "number",
"minimum": 1,
"maximum": 12,
"default": 12
},
"graph": {
"description": "\u56fe\u5f62\u663e\u793a\u6307\u6807\u8bbe\u7f6e",
"type": "object",
"properties": {
"model": {
"description": "\u56fe\u5f62\u7c7b\u578b",
"type": "string",
"default": "table"
},
"height": {
"description": "\u56fe\u5f62\u9ad8\u5ea6",
"type": "number",
"default": 300
},
"optionOpen": {
"type": "boolean",
"default": false
},
"keys": {
"description": "\u7ef4\u5ea6\u4fe1\u606f",
"type": "object",
"properties": {
"name": {
"description": "\u5b57\u6bb5\u540d\u79f0",
"type": "string"
},
"index": {
"description": "\u5b57\u6bb5\u7d22\u5f15\u4f4d\u7f6e(\u5728select\u90e8\u5206\u4e2d\u51fa\u73b0\u7684\u987a\u5e8f)",
"type": "number",
"minimum": 0
},
"aggr": {
"description": "\u805a\u5408\u51fd\u6570\u540d\u79f0",
"type": "string",
"default": "sum"
}
}
},
"values": {
"description": "\u7edf\u8ba1\u6307\u6807(\u805a\u5408\u51fd\u6570\u7edf\u8ba1\u4fe1\u606f)",
"type": "object",
"properties": {
"name": {
"description": "\u5b57\u6bb5\u540d\u79f0",
"type": "string"
},
"index": {
"description": "\u5b57\u6bb5\u7d22\u5f15\u4f4d\u7f6e(\u5728select\u90e8\u5206\u4e2d\u51fa\u73b0\u7684",
"type": "number",
"minimum": 0
},
"aggr": {
"description": "\u805a\u5408\u51fd\u6570\u540d\u79f0",
"type": "string",
"default": "sum"
}
}
},
"groups": {
"description": "\u5206\u7ec4\u4fe1\u606f",
"type": "array"
},
"sorter": {
"description": "\u6392\u5e8f\u5143\u7d20",
"type": "array"
}
},
"required": [
"model",
"height"
]
}
},
"required": [
"colWidth",
"graph"
]
},
"settings": {
"description": "\u8bbe\u7f6e\u9009\u9879",
"type": "object",
"properties": {
"params": {
"type": "object"
},
"forms": {
"type": "object"
}
},
"required": [
"params",
"forms"
]
},
"apps": {
"type": "array",
"items": {}
},
"jobName": {
"description": "\u4efb\u52a1\u540d\u79f0",
"type": "string"
},
"id": {
"description": "\u4efb\u52a1ID",
"type": "string"
},
"dateCreated": {
"description": "\u521b\u5efa\u65e5\u671f",
"type": "string"
},
"status": {
"description": "\u72b6\u6001",
"type": "string"
},
"progressUpdateIntervalMs": {
"description": "\u4efb\u52a1\u8fdb\u5ea6\u5237\u65b0\u9891\u7387, \u9ed8\u8ba4500\u6beb\u79d2",
"type": "integer",
"default": 500
},
"result": {
"type": "object",
"properties": {
"success": {
"description": "\u8fd4\u56de\u7ed3\u679c\u72b6\u6001,[\u6210\u529f(true) | \u5931\u8d25(false)]",
"type": "boolean"
},
"message": {
"description": "\u8fd4\u56de\u6d88\u606f",
"type": "string"
},
"data": {
"description": "\u8fd4\u56de\u7ed3\u679c\u6570\u636e",
"type": "array"
}
}
}
},
"required": [
"text",
"dateUpdated",
"config",
"settings",
"apps",
"jobName",
"id",
"dateCreated",
"status",
"progressUpdateIntervalMs"
]
}
},
"name": {
"description": "Notebook \u540d\u79f0",
"type": "string"
},
"id": {
"description": "Notebook ID, \u670d\u52a1\u7aef\u751f\u6210",
"type": "string"
},
"lastReplName": {
"type": "object",
"properties": {
"value": {
"type": "string"
}
},
"required": [
"value"
]
},
"angularObjects": {
"type": "object",
"properties": {
"2BSU2MWUG:shared_process": {
"type": "array",
"items": {}
},
"2BPZ4411M:shared_process": {
"type": "array",
"items": {}
},
"2BTK8PFM1:shared_process": {
"type": "array",
"items": {}
},
"2BRKPYDME:shared_process": {
"type": "array",
"items": {}
},
"2BT6EDBN1:shared_process": {
"type": "array",
"items": {}
},
"2BS5V5K17:shared_process": {
"type": "array",
"items": {}
},
"2BSCUVRUY:shared_process": {
"type": "array",
"items": {}
},
"2BRM2FTRX:shared_process": {
"type": "array",
"items": {}
},
"2BQX14WEY:shared_process": {
"type": "array",
"items": {}
},
"2BRNP2RDG:shared_process": {
"type": "array",
"items": {}
},
"2BPR812SA:shared_process": {
"type": "array",
"items": {}
},
"2BPR699PG:shared_process": {
"type": "array",
"items": {}
},
"2BTNMSB3Q:shared_process": {
"type": "array",
"items": {}
},
"2BSHT2PCA:shared_process": {
"type": "array",
"items": {}
},
"2BSZVA62U:shared_process": {
"type": "array",
"items": {}
}
},
"required": [
"2BSU2MWUG:shared_process",
"2BPZ4411M:shared_process",
"2BTK8PFM1:shared_process",
"2BRKPYDME:shared_process",
"2BT6EDBN1:shared_process",
"2BS5V5K17:shared_process",
"2BSCUVRUY:shared_process",
"2BRM2FTRX:shared_process",
"2BQX14WEY:shared_process",
"2BRNP2RDG:shared_process",
"2BPR812SA:shared_process",
"2BPR699PG:shared_process",
"2BTNMSB3Q:shared_process",
"2BSHT2PCA:shared_process",
"2BSZVA62U:shared_process"
]
},
"config": {
"type": "object"
},
"info": {
"type": "object"
}
},
"required": [
"paragraphs",
"name",
"id",
"lastReplName",
"angularObjects",
"config",
"info"
]
} | o57111 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.