input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["croptopia:coffee", "croptopia:limeade", "croptopia:wine", "croptopia:pumpkin_spice_latte", "croptopia:tomato_juice", "croptopia:mead", "croptopia:rum", "croptopia:banana_smoothie", "croptopia:grape_juice", "croptopia:apple_juice", "croptopia:cranberry_juice", "croptopia:saguaro_juice", "croptopia:tea", "croptopia:lemonade", "croptopia:kale_smoothie", "croptopia:orange_juice", "croptopia:beer", "croptopia:chocolate_milkshake", "croptopia:strawberry_smoothie", "croptopia:pineapple_juice", "croptopia:fruit_smoothie", "croptopia:soy_milk", "croptopia:melon_juice", "croptopia:water_bottle", "croptopia:milk_bottle", "liquified:disposable_bottle"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleadsense-desc": {"type": "string"}}, "required": ["@metadata", "googleadsense-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["CERminator"]}, "googleadsense-desc" : "Dodaje [http://www.google.com/adsense Google AdSense] u alatnu traku"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleadsense-desc": {"type": "string"}}, "required": ["@metadata", "googleadsense-desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "sling:resourceType": {"type": "string"}, "jcr:primaryType": {"type": "string"}, "sections": {"type": "object", "properties": {"introduction": {"type": "object", "properties": {"pars": {"type": "array", "items": {"type": "string"}}}, "required": ["pars"]}}, "required": ["introduction"]}}, "required": ["title", "description", "sling:resourceType", "jcr:primaryType", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "HTTP Gateway", "description" : "Whistlepost HTTP Gateway", "sling:resourceType" : "wp/page/default", "jcr:primaryType" : "nt:unstructured", "sections" : {"introduction" : {"pars" : ["An API facade to support routing and simplied API management."]}}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "sling:resourceType": {"type": "string"}, "jcr:primaryType": {"type": "string"}, "sections": {"type": "object", "properties": {"introduction": {"type": "object", "properties": {"pars": {"type": "array", "items": {"type": "string"}}}, "required": ["pars"]}}, "required": ["introduction"]}}, "required": ["title", "description", "sling:resourceType", "jcr:primaryType", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "rechiseled_compat:block/quark_white_stained_planks_large_tiles_connecting"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "version", "name", "description", "content_scripts", "browser_action", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "version" : "0.2", "name" : "Google Photos Albums List", "description" : "Displays names/info for all Google Photo Albums", "content_scripts" : [{"matches" : ["https://photos.google.com/albums"], "js" : ["myc.js"]}], "browser_action" : {"default_title" : "List photo albums", "default_icon" : "pweb32.png", "default_popup" : "popup.html"}, "permissions" : ["activeTab"]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "version", "name", "description", "content_scripts", "browser_action", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "properties": {"type": "object", "properties": {"node": {"type": "object", "properties": {"allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "description": {"type": "string"}}, "required": ["allOf", "description"]}, "shape": {"type": "object", "properties": {"allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "description": {"type": "string"}}, "required": ["allOf", "description"]}, "extensions": {"type": "object", "properties": {}, "required": []}, "extras": {"type": "object", "properties": {}, "required": []}}, "required": ["node", "shape", "extensions", "extras"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "type", "description", "allOf", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Collider", "type" : "object", "description" : "collider definition for SpringBone", "allOf" : [{"$ref" : "glTFProperty.schema.json"}], "properties" : {"node" : {"allOf" : [{"$ref" : "glTFid.schema.json"}], "description" : "The node index."}, "shape" : {"allOf" : [{"$ref" : "VRMC_springBone.shape.schema.json"}], "description" : ""}, "extensions" : {}, "extras" : {}}, "required" : ["node", "shape"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "properties": {"type": "object", "properties": {"node": {"type": "object", "properties": {"allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "description": {"type": "string"}}, "required": ["allOf", "description"]}, "shape": {"type": "object", "properties": {"allOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "description": {"type": "string"}}, "required": ["allOf", "description"]}, "extensions": {"type": "object", "properties": {}, "required": []}, "extras": {"type": "object", "properties": {}, "required": []}}, "required": ["node", "shape", "extensions", "extras"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "type", "description", "allOf", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "organizationId": {"type": "string"}, "isProduction": {"type": "boolean"}, "type": {"type": "string"}, "clientId": {"type": "string"}}, "required": ["id", "name", "organizationId", "isProduction", "type", "clientId"]}}, "total": {"type": "integer"}}, "required": ["data", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"id" : "e527a61c-d9f4-4502-ad8d-a71b87fa353f", "name" : "Design", "organizationId" : "877baaaa-36ba-4021-82d5-45bae78e0fe2", "isProduction" : false, "type" : "design", "clientId" : "3a4dd0d1fc0938e282ba33101964754a"}, {"id" : "7e1c7d31-80a2-46ee-9118-fae5f3ed0d79", "name" : "Development", "organizationId" : "877baaaa-36ba-4021-82d5-45bae78e0fe2", "isProduction" : false, "type" : "sandbox", "clientId" : "301d80c54f3d42e2a7be6238011ce8bc"}, {"id" : "0629ce85-4ba2-49ca-b487-28f4db3d37bb", "name" : "Production", "organizationId" : "877baaaa-36ba-4021-82d5-45bae78e0fe2", "isProduction" : true, "type" : "production", "clientId" : "2db764bf1b184a43aace563833d107d0"}, {"id" : "ea57c23e-bfc6-469d-9713-657120452f6b", "name" : "Staging", "organizationId" : "877baaaa-36ba-4021-82d5-45bae78e0fe2", "isProduction" : false, "type" : "sandbox", "clientId" : "c9035c6475b54e6f9443b2afb8dc1db6"}, {"id" : "fef8f989-845d-4ebf-bf84-4bc2518f4650", "name" : "Test", "organizationId" : "877baaaa-36ba-4021-82d5-45bae78e0fe2", "isProduction" : false, "type" : "sandbox", "clientId" : "3f80e257ebfd4c518d220a2df9ab3aaa"}], "total" : 5} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "organizationId": {"type": "string"}, "isProduction": {"type": "boolean"}, "type": {"type": "string"}, "clientId": {"type": "string"}}, "required": ["id", "name", "organizationId", "isProduction", "type", "clientId"]}}, "total": {"type": "integer"}}, "required": ["data", "total"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "description", "version", "keywords", "homepage", "authors", "license", "repository", "main", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jquery-fullheight", "description" : "Another one full height trick.", "version" : "1.0.8", "keywords" : ["jquery-plugin", "fullheight"], "homepage" : "https://github.com/yrkup3/jquery-fullheight", "authors" : ["Andrey Pervakov <yrkup3@gmail.com> (http://yrkup3.jagmort.com/)"], "license" : "MIT", "repository" : {"type" : "git", "url" : "git://github.com/yrkup3/jquery-fullheight.git"}, "main" : "dist/jquery-fullheight.js", "ignore" : ["examples", "lib", "src", ".bowerrc", ".gitignore", ".jscsrc", "README.md", "gulpfile.js", "package.json"], "dependencies" : {"jquery" : "~2.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "description", "version", "keywords", "homepage", "authors", "license", "repository", "main", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["best_index", "auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"best_index" : [92, 51, 107, 77, 107], "auroc" : [0.6622857142857143, 0.66, 0.6291428571428571, 0.6977142857142857, 0.6862857142857143], "acc" : [0.5833333333333334, 0.4166666666666667, 0.4166666666666667, 0.5833333333333334, 0.6], "aps" : [0.7468240076970069, 0.7477260387136655, 0.6931900931750824, 0.750353418888498, 0.7628579470677735], "f1" : [0.7368421052631579, 0.0, 0.0, 0.7368421052631579, 0.52], "auprc" : [0.7407242676828635, 0.7421411458061781, 0.6761255885061763, 0.7431984955768227, 0.75715197060583]} | json_instruct | {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "required": ["best_index", "auroc", "acc", "aps", "f1", "auprc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"get-weather-data": {"type": "string"}}, "required": ["get-weather-data"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["axios", "dotenv"]}}, "required": ["name", "version", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "asobi-in-the-rain", "version" : "1.0.0", "repository" : "git@github.com:claudiofreitas/asobi-in-the-rain.git", "author" : "Claudio Freitas <claudiofreitas3@gmail.com>", "license" : "MIT", "scripts" : {"get-weather-data" : "ts-node get-weather-data.ts"}, "devDependencies" : {"@types/node" : "^15.12.4", "prettier" : "^2.3.1", "ts-node" : "^10.0.0", "typescript" : "^4.3.4"}, "dependencies" : {"axios" : "^0.21.1", "dotenv" : "^10.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"get-weather-data": {"type": "string"}}, "required": ["get-weather-data"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["axios", "dotenv"]}}, "required": ["name", "version", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"~lincent": {"type": "string"}}, "required": ["~lincent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"~lincent" : "~lincent user"} | json_instruct | {"type": "object", "properties": {"~lincent": {"type": "string"}}, "required": ["~lincent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Villaines-sous-Malicorne", "circ" : "4\u00e8me circonscription", "dpt" : "Sarthe", "inscrits" : 734, "abs" : 439, "votants" : 295, "blancs" : 20, "nuls" : 7, "exp" : 268, "res" : [{"nuance" : "SOC", "nom" : "M. St\u00e9phane LE FOLL", "voix" : 154}, {"nuance" : "LR", "nom" : "M. Emmanuel FRANCO", "voix" : 114}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "status": {"type": "string"}, "category": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "subject": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "effectiveDateTime": {"type": "string"}, "issued": {"type": "string"}, "valueQuantity": {"type": "object", "properties": {"value": {"type": "number"}, "unit": {"type": "string"}, "system": {"type": "string"}, "code": {"type": "string"}}, "required": ["value", "unit", "system", "code"]}, "resourceType": {"type": "string"}}, "required": ["id", "meta", "status", "category", "code", "subject", "effectiveDateTime", "issued", "valueQuantity", "resourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "a421b98b-5fd7-4595-9a12-486a1aa41e67", "meta" : {"profile" : ["http://fhir.org/guides/argonaut/StructureDefinition/argo-observationresults"]}, "status" : "final", "category" : {"coding" : [{"system" : "http://hl7.org/fhir/observation-category", "code" : "vital-signs", "display" : "vital-signs"}, {"system" : "http://hl7.org/fhir/observation-category", "code" : "laboratory", "display" : "vital-signs"}], "text" : "vital-signs"}, "code" : {"coding" : [{"system" : "http://loinc.org", "code" : "72166-2", "display" : "Smoking Status"}], "text" : "Smoking Status"}, "subject" : {"reference" : "Patient/example"}, "effectiveDateTime" : "2010-03-01", "issued" : "2010-03-01T15:30:10+01:00", "valueQuantity" : {"value" : 150.43678997612926, "unit" : "cm", "system" : "http://unitsofmeasure.org", "code" : "cm"}, "resourceType" : "Observation"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "status": {"type": "string"}, "category": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "code": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}, "text": {"type": "string"}}, "required": ["coding", "text"]}, "subject": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}, "effectiveDateTime": {"type": "string"}, "issued": {"type": "string"}, "valueQuantity": {"type": "object", "properties": {"value": {"type": "number"}, "unit": {"type": "string"}, "system": {"type": "string"}, "code": {"type": "string"}}, "required": ["value", "unit", "system", "code"]}, "resourceType": {"type": "string"}}, "required": ["id", "meta", "status", "category", "code", "subject", "effectiveDateTime", "issued", "valueQuantity", "resourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["test", "deploy"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "configstore": {"type": "string"}, "form-data": {"type": "string"}, "fs-extra": {"type": "string"}, "node-fetch": {"type": "string"}, "prompts": {"type": "string"}, "require-module": {"type": "string"}, "zip-a-folder": {"type": "string"}}, "required": ["chalk", "configstore", "form-data", "fs-extra", "node-fetch", "prompts", "require-module", "zip-a-folder"]}}, "required": ["name", "version", "description", "main", "scripts", "license", "engines", "bin", "repository", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@vkontakte/vk-miniapps-deploy", "version" : "0.0.9", "description" : "deploy to vk-miniapps hosting with one command", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "deploy" : "./bin/vk-miniapps-deploy"}, "license" : "MIT", "engines" : {"node" : ">=8.10"}, "bin" : "./bin/vk-miniapps-deploy", "repository" : {"type" : "git", "url" : "https://github.com/vkcom/vk-miniapps-deploy.git"}, "homepage" : "https://github.com/vkcom/vk-miniapps-deploy", "dependencies" : {"chalk" : "^1.1.1", "configstore" : "^5.0.0", "form-data" : "^2.4.0", "fs-extra" : "^8.0.1", "node-fetch" : "^2.6.0", "prompts" : "^2.1.0", "require-module" : "^0.1.0", "zip-a-folder" : "0.0.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["test", "deploy"]}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "bin": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "configstore": {"type": "string"}, "form-data": {"type": "string"}, "fs-extra": {"type": "string"}, "node-fetch": {"type": "string"}, "prompts": {"type": "string"}, "require-module": {"type": "string"}, "zip-a-folder": {"type": "string"}}, "required": ["chalk", "configstore", "form-data", "fs-extra", "node-fetch", "prompts", "require-module", "zip-a-folder"]}}, "required": ["name", "version", "description", "main", "scripts", "license", "engines", "bin", "repository", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Rebais", "dpt" : "Seine-et-Marne", "inscrits" : 1401, "abs" : 305, "votants" : 1096, "blancs" : 25, "nuls" : 7, "exp" : 1064, "res" : [{"panneau" : "2", "voix" : 420}, {"panneau" : "11", "voix" : 189}, {"panneau" : "9", "voix" : 173}, {"panneau" : "3", "voix" : 171}, {"panneau" : "1", "voix" : 44}, {"panneau" : "4", "voix" : 31}, {"panneau" : "10", "voix" : 16}, {"panneau" : "6", "voix" : 7}, {"panneau" : "8", "voix" : 7}, {"panneau" : "5", "voix" : 5}, {"panneau" : "7", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"jquery.filterizr-with-jquery.min.js": {"type": "string"}, "jquery.filterizr.min.js": {"type": "string"}}, "required": ["jquery.filterizr-with-jquery.min.js", "jquery.filterizr.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.filterizr-with-jquery.min.js" : "sha512-4LoEz7Jfjw4wFWS3Lda9e9HUFSJPA7ulXqPhX+7K92skrddabLzbaUZ0p/DSEIq8bOqFUQ4b7g22XpElbU4O9w==", "jquery.filterizr.min.js" : "sha512-wok21lBwZJKl2TzvpJDUWbS8UqfjacK80lOlS9Jhp0X3OZ08c6a4DrmWbgnz1IKVTcaPRiKhoo5fhs2//3L5sg=="} | json_instruct | {"type": "object", "properties": {"jquery.filterizr-with-jquery.min.js": {"type": "string"}, "jquery.filterizr.min.js": {"type": "string"}}, "required": ["jquery.filterizr-with-jquery.min.js", "jquery.filterizr.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Ascain", "dpt" : "Pyr\u00e9n\u00e9es-Atlantiques", "inscrits" : 3529, "abs" : 643, "votants" : 2886, "blancs" : 368, "nuls" : 92, "exp" : 2426, "res" : [{"panneau" : "1", "voix" : 1899}, {"panneau" : "2", "voix" : 527}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "external_url": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "x_debug": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "image", "external_url", "attributes", "x_debug"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "#9638", "image" : "https://live---metadata-5covpqijaa-uc.a.run.app/images/9638", "external_url" : "https://moonbirds.xyz/", "attributes" : [{"trait_type" : "Background", "value" : "Glitch Red"}, {"trait_type" : "Body", "value" : "Glitch"}, {"trait_type" : "Feathers", "value" : "Legendary Crescent"}], "x_debug" : ["orig:5641"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "external_url": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "x_debug": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "image", "external_url", "attributes", "x_debug"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Gemfile": {"type": "string"}, "LICENSE": {"type": "string"}, "Puppetfile": {"type": "string"}, "README.md": {"type": "string"}, "Rakefile": {"type": "string"}, "facts.d/is_systemd.rb": {"type": "string"}, "manifests/config.pp": {"type": "string"}, "manifests/init.pp": {"type": "string"}, "manifests/install.pp": {"type": "string"}, "manifests/required_config.pp": {"type": "string"}, "manifests/service.pp": {"type": "string"}, "metadata.json": {"type": "string"}, "templates/agent_backend.epp": {"type": "string"}, "templates/agent_configuration.epp": {"type": "string"}, "templates/agent_sensorpin.epp": {"type": "string"}, "templates/agent_updates.epp": {"type": "string"}, "templates/mvn-settings.epp": {"type": "string"}, "templates/pax-mvn-cfg.epp": {"type": "string"}}, "required": ["Gemfile", "LICENSE", "Puppetfile", "README.md", "Rakefile", "facts.d/is_systemd.rb", "manifests/config.pp", "manifests/init.pp", "manifests/install.pp", "manifests/required_config.pp", "manifests/service.pp", "metadata.json", "templates/agent_backend.epp", "templates/agent_configuration.epp", "templates/agent_sensorpin.epp", "templates/agent_updates.epp", "templates/mvn-settings.epp", "templates/pax-mvn-cfg.epp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Gemfile" : "908da17972afe2216bbc2846b85a05a3", "LICENSE" : "9530ff3370c0cb3e3a34d62fab59cc60", "Puppetfile" : "f1f3d698d7191b7cc054dfc6daa83061", "README.md" : "951073dfc4c37ae6d40f758404b4a632", "Rakefile" : "08dbef0c23a205ba3f40ad1cb348225c", "facts.d/is_systemd.rb" : "42dd126844936873791a603605267b3a", "manifests/config.pp" : "d581e3d4b181c23c828d0c03d0d8458b", "manifests/init.pp" : "2f6735cdb73180e60ec53f3ecb3dc014", "manifests/install.pp" : "bf762434555f39bcf6c45a4907c5f7c8", "manifests/required_config.pp" : "bc0edfbf0560b20df5bd510f1f5cbab9", "manifests/service.pp" : "e8660cbecff09e21cdb66aa4fe0f2a22", "metadata.json" : "f1834a8d1aee83a07cbc796705d8a276", "templates/agent_backend.epp" : "b71486c980046ba6a3ea3dd7ca85e933", "templates/agent_configuration.epp" : "2d383ca9f29d25bccf3ba8a4bd823a29", "templates/agent_sensorpin.epp" : "46a70b0693004fee342972cc3f517cd4", "templates/agent_updates.epp" : "b59aac24caffd0d7d228528d6439f604", "templates/mvn-settings.epp" : "f1840df643dd2c55efa29a8fd09fa104", "templates/pax-mvn-cfg.epp" : "8083c662f1b65ddde2fabd29a521a2b9"} | json_instruct | {"type": "object", "properties": {"Gemfile": {"type": "string"}, "LICENSE": {"type": "string"}, "Puppetfile": {"type": "string"}, "README.md": {"type": "string"}, "Rakefile": {"type": "string"}, "facts.d/is_systemd.rb": {"type": "string"}, "manifests/config.pp": {"type": "string"}, "manifests/init.pp": {"type": "string"}, "manifests/install.pp": {"type": "string"}, "manifests/required_config.pp": {"type": "string"}, "manifests/service.pp": {"type": "string"}, "metadata.json": {"type": "string"}, "templates/agent_backend.epp": {"type": "string"}, "templates/agent_configuration.epp": {"type": "string"}, "templates/agent_sensorpin.epp": {"type": "string"}, "templates/agent_updates.epp": {"type": "string"}, "templates/mvn-settings.epp": {"type": "string"}, "templates/pax-mvn-cfg.epp": {"type": "string"}}, "required": ["Gemfile", "LICENSE", "Puppetfile", "README.md", "Rakefile", "facts.d/is_systemd.rb", "manifests/config.pp", "manifests/init.pp", "manifests/install.pp", "manifests/required_config.pp", "manifests/service.pp", "metadata.json", "templates/agent_backend.epp", "templates/agent_configuration.epp", "templates/agent_sensorpin.epp", "templates/agent_updates.epp", "templates/mvn-settings.epp", "templates/pax-mvn-cfg.epp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-moment": {"type": "string"}, "angular-ui": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "bootstrap": {"type": "string"}, "bootswatch": {"type": "string"}, "hammer.js": {"type": "string"}, "jquery": {"type": "string"}, "jquery-validation": {"type": "string"}, "jquery-validation-unobtrusive": {"type": "string"}, "moment": {"type": "string"}, "ng-prettyjson": {"type": "string"}}, "required": ["angular", "angular-moment", "angular-ui", "angular-ui-utils", "bootstrap", "bootswatch", "hammer.js", "jquery", "jquery-validation", "jquery-validation-unobtrusive", "moment", "ng-prettyjson"]}, "resolutions": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}}, "required": ["bootstrap", "angular"]}}, "required": ["name", "private", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ASP.NET", "private" : true, "dependencies" : {"angular" : "1.3.15", "angular-moment" : "0.10.1", "angular-ui" : "0.4.0", "angular-ui-utils" : "0.2.3", "bootstrap" : "3.0.0", "bootswatch" : "3.3.4+1", "hammer.js" : "2.0.4", "jquery" : "1.10.2", "jquery-validation" : "1.11.1", "jquery-validation-unobtrusive" : "3.2.2", "moment" : "2.10.3", "ng-prettyjson" : "0.1.8"}, "resolutions" : {"bootstrap" : "~3.3.4", "angular" : ">= 1.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-moment": {"type": "string"}, "angular-ui": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "bootstrap": {"type": "string"}, "bootswatch": {"type": "string"}, "hammer.js": {"type": "string"}, "jquery": {"type": "string"}, "jquery-validation": {"type": "string"}, "jquery-validation-unobtrusive": {"type": "string"}, "moment": {"type": "string"}, "ng-prettyjson": {"type": "string"}}, "required": ["angular", "angular-moment", "angular-ui", "angular-ui-utils", "bootstrap", "bootswatch", "hammer.js", "jquery", "jquery-validation", "jquery-validation-unobtrusive", "moment", "ng-prettyjson"]}, "resolutions": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}}, "required": ["bootstrap", "angular"]}}, "required": ["name", "private", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ember-data.js": {"type": "string"}, "ember-data.min.js": {"type": "string"}, "ember-data.prod.js": {"type": "string"}}, "required": ["ember-data.js", "ember-data.min.js", "ember-data.prod.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ember-data.js" : "sha512-V9QjRuVSWMQOW5NZJeAIICm0+NRltW7esNm2KurwRipYNzFvqZbS9SIRxbQsdq2oWrrFN6EkGJ8ttdUdXdEY9A==", "ember-data.min.js" : "sha512-6qTEVMes7umrHgvNaos5DASfVdPXRHjRvRoDF4vOLXgAFmypFe3Jx/f74d71YC5TSCeotelNf0+ZDtpFoZVtwQ==", "ember-data.prod.js" : "sha512-oxGoHLVDFMQETNZwIGuE9kt7t2fagRPPO10eAUDsLOM260v9jS03fjwXzydOS0Vfo8FljS0LNGLcKawq/NgJHQ=="} | json_instruct | {"type": "object", "properties": {"ember-data.js": {"type": "string"}, "ember-data.min.js": {"type": "string"}, "ember-data.prod.js": {"type": "string"}}, "required": ["ember-data.js", "ember-data.min.js", "ember-data.prod.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Description": {"type": "object", "properties": {"Rarity": {"type": "integer"}, "Purchasable": {"type": "boolean"}}, "required": ["Rarity", "Purchasable"]}}, "required": ["Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Description" : {"Rarity" : 5, "Purchasable" : true}} | json_instruct | {"type": "object", "properties": {"Description": {"type": "object", "properties": {"Rarity": {"type": "integer"}, "Purchasable": {"type": "boolean"}}, "required": ["Rarity", "Purchasable"]}}, "required": ["Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rivets.bundled.min.js": {"type": "string"}, "rivets.js": {"type": "string"}, "rivets.min.js": {"type": "string"}}, "required": ["rivets.bundled.min.js", "rivets.js", "rivets.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rivets.bundled.min.js" : "sha512-XET1OuCL+KX0ZcUqdIzcC1TL8tHCrQJ6CpuktLZoMvdAuXI2ZtrVH+jnzbjxvmuHG3wbfZFiG0xJNEZcl0ADnw==", "rivets.js" : "sha512-d9T0ZHNXXShgOxHnffEVT8rZW2xD9UefyV6gGdV8i5SEZaa7Arm9QKn4pP6eexzzdetbRkLJQP7kri9ekcuuDQ==", "rivets.min.js" : "sha512-kje9yX0tOUiomCUe5AD6MRe5Dp+oSU+ChJajWV5OMX734TRI2u/L33Lk6CTPqqGhKGfuppSE7lZwWpgpCyaN2w=="} | json_instruct | {"type": "object", "properties": {"rivets.bundled.min.js": {"type": "string"}, "rivets.js": {"type": "string"}, "rivets.min.js": {"type": "string"}}, "required": ["rivets.bundled.min.js", "rivets.js", "rivets.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "charter:block/waystone"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1984, 5], [1986, 6], [1987, 7], [1988, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-sanity": {"type": "string"}, "express": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "pump": {"type": "string"}, "sprom": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-config-sanity", "express", "jest", "prettier", "pump", "sprom"]}, "dependencies": {"type": "object", "properties": {"combined-stream": {"type": "string"}, "range-parser": {"type": "string"}}, "required": ["combined-stream", "range-parser"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "engines", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "byte-range-stream", "version" : "2.0.1", "description" : "Create a multipart/byteranges stream based on passed ranges", "main" : "src/index.js", "scripts" : {"test" : "jest --coverage"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/rexxars/byte-range-stream.git"}, "engines" : {"node" : ">=4.0.0"}, "keywords" : ["byteranges", "multipart", "multi-part", "range"], "author" : "Espen Hovlandsdal <espen@hovlandsdal.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/rexxars/byte-range-stream/issues"}, "homepage" : "https://github.com/rexxars/byte-range-stream#readme", "devDependencies" : {"eslint" : "^4.11.0", "eslint-config-prettier" : "^2.8.0", "eslint-config-sanity" : "^3.1.0", "express" : "^4.16.2", "jest" : "^21.2.1", "prettier" : "^1.8.2", "pump" : "^1.0.3", "sprom" : "^3.0.0"}, "dependencies" : {"combined-stream" : "^1.0.5", "range-parser" : "^1.2.0"}, "files" : ["src/"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-config-sanity": {"type": "string"}, "express": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "pump": {"type": "string"}, "sprom": {"type": "string"}}, "required": ["eslint", "eslint-config-prettier", "eslint-config-sanity", "express", "jest", "prettier", "pump", "sprom"]}, "dependencies": {"type": "object", "properties": {"combined-stream": {"type": "string"}, "range-parser": {"type": "string"}}, "required": ["combined-stream", "range-parser"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "engines", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "BERLF1", "lang" : "en", "description" : null, "name" : "Teaching and research areas", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3516050003", "district_id" : "3516050", "name" : "KUTOGIRANG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"transcript": {"type": "string"}, "words": {"type": "array", "items": {"type": "object", "properties": {"alignedWord": {"type": "string"}, "case": {"type": "string"}, "end": {"type": "number"}, "endOffset": {"type": "integer"}, "phones": {"type": "array", "items": {"type": "object", "properties": {"duration": {"type": "number"}, "phone": {"type": "string"}}, "required": ["duration", "phone"]}}, "start": {"type": "number"}, "startOffset": {"type": "integer"}, "word": {"type": "string"}}, "required": ["alignedWord", "case", "end", "endOffset", "phones", "start", "startOffset", "word"]}}, "speaker": {"type": "string"}, "episode_filepath": {"type": "string"}, "episode_metadata_path": {"type": "string"}, "episode_title": {"type": "string"}, "clipStart": {"type": "integer"}, "clipEnd": {"type": "integer"}, "partIndex": {"type": "integer"}, "clipIndex": {"type": "integer"}}, "required": ["transcript", "words", "speaker", "episode_filepath", "episode_metadata_path", "episode_title", "clipStart", "clipEnd", "partIndex", "clipIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"transcript" : "- Caught it! ", "words" : [{"alignedWord" : "caught", "case" : "success", "end" : 0.25, "endOffset" : 8, "phones" : [{"duration" : 0.09, "phone" : "k_B"}, {"duration" : 0.02, "phone" : "aa_I"}, {"duration" : 0.01, "phone" : "t_E"}], "start" : 0.13, "startOffset" : 2, "word" : "Caught"}, {"alignedWord" : "it", "case" : "success", "end" : 0.27, "endOffset" : 11, "phones" : [{"duration" : 0.01, "phone" : "ih_B"}, {"duration" : 0.01, "phone" : "t_E"}], "start" : 0.25, "startOffset" : 9, "word" : "it"}], "speaker" : "Suzy", "episode_filepath" : "data/in/peppa/videos/S05/Garden Games.mp4", "episode_metadata_path" : "data/out/speaker_id/ep_199.yaml", "episode_title" : "Garden Games", "clipStart" : 140, "clipEnd" : 143, "partIndex" : 4, "clipIndex" : 5} | json_instruct | {"type": "object", "properties": {"transcript": {"type": "string"}, "words": {"type": "array", "items": {"type": "object", "properties": {"alignedWord": {"type": "string"}, "case": {"type": "string"}, "end": {"type": "number"}, "endOffset": {"type": "integer"}, "phones": {"type": "array", "items": {"type": "object", "properties": {"duration": {"type": "number"}, "phone": {"type": "string"}}, "required": ["duration", "phone"]}}, "start": {"type": "number"}, "startOffset": {"type": "integer"}, "word": {"type": "string"}}, "required": ["alignedWord", "case", "end", "endOffset", "phones", "start", "startOffset", "word"]}}, "speaker": {"type": "string"}, "episode_filepath": {"type": "string"}, "episode_metadata_path": {"type": "string"}, "episode_title": {"type": "string"}, "clipStart": {"type": "integer"}, "clipEnd": {"type": "integer"}, "partIndex": {"type": "integer"}, "clipIndex": {"type": "integer"}}, "required": ["transcript", "words", "speaker", "episode_filepath", "episode_metadata_path", "episode_title", "clipStart", "clipEnd", "partIndex", "clipIndex"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dexie.js": {"type": "string"}, "dexie.min.js": {"type": "string"}}, "required": ["dexie.js", "dexie.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dexie.js" : "sha512-azwfDL/XdQ40FRE2TO5jkzGTZmlfEOkyIWcIcw5HRsaI++B1w2m1PAvEoZR178S53PSKkuUkgURkFtZqZrtkrg==", "dexie.min.js" : "sha512-HXVsskktu+FIJ7Yi4WggBiY+fxk5uffkS62PuCFtUTZZzVnKCGiP+uzzya0xllBlsjyT9KaPqm/FdMwhLreghQ=="} | json_instruct | {"type": "object", "properties": {"dexie.js": {"type": "string"}, "dexie.min.js": {"type": "string"}}, "required": ["dexie.js", "dexie.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["410825104201", "\u9ec4\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["410825104202", "\u5eb7\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["410825104203", "\u4e1c\u7559\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["410825104204", "\u897f\u7559\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["410825104205", "\u4e1c\u8662\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104206", "\u897f\u8662\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104207", "\u6797\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["410825104208", "\u6797\u674e\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["410825104209", "\u5357\u97e9\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104210", "\u767d\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104211", "\u4e1c\u97e9\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104212", "\u897f\u97e9\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104213", "\u4e1c\u9ad8\u53ec\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104214", "\u897f\u9ad8\u53ec\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104215", "\u5317\u9547\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104216", "\u73cd\u73e0\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104217", "\u536b\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104218", "\u897f\u90ed\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104219", "\u4e1c\u90ed\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104220", "\u90ed\u674e\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104221", "\u4e70\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104222", "\u803f\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104223", "\u897f\u6797\u53ec\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104224", "\u725b\u6797\u8087\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104225", "\u524d\u5f20\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104226", "\u540e\u5f20\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104227", "\u95eb\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104228", "\u535c\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104229", "\u4f59\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104230", "\u4e1c\u6797\u8087\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104231", "\u5e38\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104232", "\u4e1c\u5b8b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104233", "\u897f\u5b8b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104234", "\u5f90\u5415\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104235", "\u84b2\u88ab\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104236", "\u59da\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104237", "\u8463\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104238", "\u90d1\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104239", "\u8a3e\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104240", "\u4efb\u6768\u95e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104241", "\u524d\u5d14\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104242", "\u540e\u5d14\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104243", "\u5201\u674e\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104244", "\u7c73\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104245", "\u897f\u738b\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104246", "\u4e1c\u738b\u91cc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104247", "\u897f\u738b\u91cc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["410825104248", "\u5357\u738b\u91cc\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "phonetic": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["axios", "ejs", "express", "express-session", "jsonwebtoken", "phonetic", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jw-centro", "version" : "1.0.0", "description" : "A central auth server for my node apps", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/codingJWilliams/JW-Centro.git"}, "keywords" : ["auth"], "author" : "Jay M Williams", "license" : "MIT", "bugs" : {"url" : "https://github.com/codingJWilliams/JW-Centro/issues"}, "homepage" : "https://github.com/codingJWilliams/JW-Centro#readme", "dependencies" : {"axios" : "^0.17.1", "ejs" : "^2.5.7", "express" : "^4.16.2", "express-session" : "^1.15.6", "jsonwebtoken" : "^8.1.0", "phonetic" : "^0.1.1", "socket.io" : "^2.0.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "phonetic": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["axios", "ejs", "express", "express-session", "jsonwebtoken", "phonetic", "socket.io"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {}}, "link": {"type": "string"}}, "required": ["name", "desc", "images", "link"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Pyrosulfate", "desc" : "In chemistry, disulfate or pyrosulfate is the anion with the molecular formula S\n2O2\u2212\n7. Disulfate is the IUPAC name. It has a dichromate-like structure and can be visualised as two corner-sharing SO4 tetrahedra, with a bridging oxygen atom. In this anion, sulfur has an oxidation state of +6. Disulfate is the conjugate base of the hydrogen disulfate (hydrogen pyrosulfate) ion HS\n2O\u2212\n7, which in turn is the conjugate base of disulfuric acid (pyrosulfuric acid).", "images" : [], "link" : "/wiki/Disulfate"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {}}, "link": {"type": "string"}}, "required": ["name", "desc", "images", "link"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"course_code" : "BIOT4002", "course_name" : "Literature Review", "faculty" : "Science", "school" : "Chemistry & Molec Biosciences", "units" : "2", "duration" : "One Semester", "description" : "Critical review of recent literature in area chosen by staff member.", "prerequisites" : "Permission of Director, Biotechnology Program", "incompatible" : "", "restricted" : ""} | json_instruct | {"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"turf.js" : "sha256-bpVk5EZ4vtylM9JGEPcmbLsIud2cWepieQ0swrbwPZc=", "turf.min.js" : "sha256-82cYijDmjuQw+gElWTkOvAefcIiwWPURA2hKIVz2bpo="} | json_instruct | {"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"file_num": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["id", "content"]}}}, "required": ["file_num", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file_num" : 1751, "data" : [{"id" : 1752, "content" : "\u662f\u597d\u4e45\u4e0d\u89c1\uff0c\u8fd8\u662f\uff0c\u89c6\u800c\u4e0d\u89c1\u3002"}]} | json_instruct | {"type": "object", "properties": {"file_num": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "content": {"type": "string"}}, "required": ["id", "content"]}}}, "required": ["file_num", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "threadsrn", "displayName" : "threadsrn"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "533123101", "text" : "\u5e73\u539f\u9547"}, {"id" : "533123102", "text" : "\u65e7\u57ce\u9547"}, {"id" : "533123103", "text" : "\u90a3\u90a6\u9547"}, {"id" : "533123104", "text" : "\u5f04\u748b\u9547"}, {"id" : "533123105", "text" : "\u76cf\u897f\u9547"}, {"id" : "533123106", "text" : "\u5361\u573a\u9547"}, {"id" : "533123107", "text" : "\u6614\u9a6c\u9547"}, {"id" : "533123108", "text" : "\u592a\u5e73\u9547"}, {"id" : "533123201", "text" : "\u65b0\u57ce\u4e61"}, {"id" : "533123202", "text" : "\u6cb9\u677e\u5cad\u4e61"}, {"id" : "533123203", "text" : "\u8292\u7ae0\u4e61"}, {"id" : "533123204", "text" : "\u652f\u90a3\u4e61"}, {"id" : "533123205", "text" : "\u82cf\u5178\u5088\u50f3\u65cf\u4e61"}, {"id" : "533123206", "text" : "\u52d0\u5f04\u4e61"}, {"id" : "533123207", "text" : "\u94dc\u58c1\u5173\u4e61"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"900121998": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900121999": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122000": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122001": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122002": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122003": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900121998", "900121999", "900122000", "900122001", "900122002", "900122003"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900121998" : {"nama" : "TPS 1", "dapil" : [1701, 11706, 2170102]}, "900121999" : {"nama" : "TPS 2", "dapil" : [1701, 11706, 2170102]}, "900122000" : {"nama" : "TPS 3", "dapil" : [1701, 11706, 2170102]}, "900122001" : {"nama" : "TPS 4", "dapil" : [1701, 11706, 2170102]}, "900122002" : {"nama" : "TPS 5", "dapil" : [1701, 11706, 2170102]}, "900122003" : {"nama" : "TPS 6", "dapil" : [1701, 11706, 2170102]}} | json_instruct | {"type": "object", "properties": {"900121998": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900121999": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122000": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122001": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122002": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900122003": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900121998", "900121999", "900122000", "900122001", "900122002", "900122003"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "jsdoc": {"type": "string"}, "jsdoc-generate": {"type": "string"}}, "required": ["test", "jsdoc", "jsdoc-generate"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@ui5/builder": {"type": "string"}, "@ui5/cli": {"type": "string"}, "@ui5/fs": {"type": "string"}, "@ui5/logger": {"type": "string"}, "@ui5/project": {"type": "string"}, "@ui5/server": {"type": "string"}}, "required": ["@ui5/builder", "@ui5/cli", "@ui5/fs", "@ui5/logger", "@ui5/project", "@ui5/server"]}, "devDependencies": {"type": "object", "properties": {"docdash": {"type": "string"}, "jsdoc": {"type": "string"}, "opn-cli": {"type": "string"}}, "required": ["docdash", "jsdoc", "opn-cli"]}}, "required": ["name", "private", "version", "description", "author", "license", "keywords", "engines", "scripts", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@ui5/tooling", "private" : true, "version" : "0.0.1", "description" : "UI5 Build and Development Tooling - Main Repository", "author" : "SAP SE (https://www.sap.com)", "license" : "Apache-2.0", "keywords" : ["openui5", "sapui5", "ui5", "build", "development", "tool"], "engines" : {"node" : ">= 8.5", "npm" : ">= 5"}, "scripts" : {"test" : "npm run jsdoc-generate", "jsdoc" : "npm run jsdoc-generate && opn jsdocs/index.html", "jsdoc-generate" : "node_modules/.bin/jsdoc -c ./jsdoc.json ./ && cp -R ./docs ./jsdocs || (echo 'Error during JSDoc generation! Check log.' && exit 1)"}, "repository" : {"type" : "git", "url" : "git@github.com:SAP/ui5-tooling.git"}, "dependencies" : {"@ui5/builder" : "^0.2.4", "@ui5/cli" : "^0.2.3", "@ui5/fs" : "^0.2.0", "@ui5/logger" : "^0.2.1", "@ui5/project" : "^0.2.1", "@ui5/server" : "^0.2.2"}, "devDependencies" : {"docdash" : "^1.0.0", "jsdoc" : "^3.5.5", "opn-cli" : "^4.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "jsdoc": {"type": "string"}, "jsdoc-generate": {"type": "string"}}, "required": ["test", "jsdoc", "jsdoc-generate"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@ui5/builder": {"type": "string"}, "@ui5/cli": {"type": "string"}, "@ui5/fs": {"type": "string"}, "@ui5/logger": {"type": "string"}, "@ui5/project": {"type": "string"}, "@ui5/server": {"type": "string"}}, "required": ["@ui5/builder", "@ui5/cli", "@ui5/fs", "@ui5/logger", "@ui5/project", "@ui5/server"]}, "devDependencies": {"type": "object", "properties": {"docdash": {"type": "string"}, "jsdoc": {"type": "string"}, "opn-cli": {"type": "string"}}, "required": ["docdash", "jsdoc", "opn-cli"]}}, "required": ["name", "private", "version", "description", "author", "license", "keywords", "engines", "scripts", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"900002264": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900002265": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900002266": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900002264", "900002265", "900002266"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900002264" : {"nama" : "TPS 1", "dapil" : [1102, 11106, 2110301]}, "900002265" : {"nama" : "TPS 2", "dapil" : [1102, 11106, 2110301]}, "900002266" : {"nama" : "TPS 3", "dapil" : [1102, 11106, 2110301]}} | json_instruct | {"type": "object", "properties": {"900002264": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900002265": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900002266": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900002264", "900002265", "900002266"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"2": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "1": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "3": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "4": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "5": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}}, "required": ["2", "1", "3", "4", "5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2" : [{"departure_time" : "17:10:00", "route_id" : "31"}, {"departure_time" : "17:40:00", "route_id" : "31"}, {"departure_time" : "18:10:00", "route_id" : "31"}], "1" : [{"departure_time" : "17:10:00", "route_id" : "31"}, {"departure_time" : "18:10:00", "route_id" : "31"}, {"departure_time" : "17:40:00", "route_id" : "31"}], "3" : [{"departure_time" : "17:40:00", "route_id" : "31"}, {"departure_time" : "18:10:00", "route_id" : "31"}, {"departure_time" : "17:10:00", "route_id" : "31"}], "4" : [{"departure_time" : "17:40:00", "route_id" : "31"}, {"departure_time" : "17:10:00", "route_id" : "31"}, {"departure_time" : "18:10:00", "route_id" : "31"}], "5" : [{"departure_time" : "17:10:00", "route_id" : "31"}, {"departure_time" : "17:40:00", "route_id" : "31"}, {"departure_time" : "18:10:00", "route_id" : "31"}]} | json_instruct | {"type": "object", "properties": {"2": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "1": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "3": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "4": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}, "5": {"type": "array", "items": {"type": "object", "properties": {"departure_time": {"type": "string"}, "route_id": {"type": "string"}}, "required": ["departure_time", "route_id"]}}}, "required": ["2", "1", "3", "4", "5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Rico Becker": {"type": "string"}, "Gunnar Herzog": {"type": "string"}}, "required": ["Rico Becker", "Gunnar Herzog"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"osx": {"type": "number"}}, "required": ["osx"]}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "platforms", "frameworks", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "KFToolbar", "version" : "0.0.6", "license" : {"type" : "MIT", "file" : "LICENSE"}, "summary" : "A toolbar suitable for NSWindow bottoms.", "homepage" : "https://pods.kf-interactive.com", "authors" : {"Rico Becker" : "rico.becker@kf-interactive.com", "Gunnar Herzog" : "gunnar.herzog@kf-interactive.com"}, "source" : {"git" : "https://github.com/ricobeck/KFToolbar.git", "tag" : "0.0.6"}, "platforms" : {"osx" : 10.7}, "frameworks" : "Foundation", "requires_arc" : true, "source_files" : "KFToolbar/Sources/**/*.{h,m}"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Rico Becker": {"type": "string"}, "Gunnar Herzog": {"type": "string"}}, "required": ["Rico Becker", "Gunnar Herzog"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"osx": {"type": "number"}}, "required": ["osx"]}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "platforms", "frameworks", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x2048360fef3fcb5858f8e2dbae2d4b8ad2e94c23", "tool" : "manticore", "start" : 1564616345.8332138, "end" : 1564616356.1329625, "duration" : 10.299748659133911, "analysis" : [[], [], [], [], [], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "innosetup": {"type": "boolean"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"github": {"type": "string"}, "regex": {"type": "string"}}, "required": ["github", "regex"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "innosetup", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.10.42", "description" : "Recovery and prevention of Repetitive Strain Injury (RSI)", "homepage" : "http://www.workrave.org", "license" : "GPL-3.0-only", "url" : "https://github.com/rcaelers/workrave/releases/download/v1_10_42/workrave-win32-v1.10.42.exe", "hash" : "c82b350aaf574b1a69c245825e1e92fc11d98932a23e3d9566f6d5c73909889e", "innosetup" : true, "shortcuts" : [["lib\\workrave.exe", "Workrave"]], "checkver" : {"github" : "https://github.com/rcaelers/workrave", "regex" : "workrave-win32-v([\\d.]+)\\.exe"}, "autoupdate" : {"url" : "https://github.com/rcaelers/workrave/releases/download/v$underscoreVersion/workrave-win32-v$version.exe"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "innosetup": {"type": "boolean"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "object", "properties": {"github": {"type": "string"}, "regex": {"type": "string"}}, "required": ["github", "regex"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "innosetup", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00944": {"type": "string"}}, "required": ["rn00944"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "flavonol-3-O-glucoside glucosyltransferase", "definition" : "Kaempferol 3-O-glucoside + UDP-glucose <=> Kaempferol 3-O-beta-D-glucosyl-(1->2)-beta-D-glucoside + UDP", "orthologs" : {}, "name" : "UDP-glucose:flavonol-3-O-glucoside 2''-O-beta-D-glucosyltransferase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["2.4.1.239"], "equation" : "C12249 + C00029 <=> C12634 + C00015", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R06804", "pathways" : {"rn00944" : "Flavone and flavonol biosynthesis"}, "products" : ["C12634", "C00015"], "substrates" : ["C12249", "C00029"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00944": {"type": "string"}}, "required": ["rn00944"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "kpal", "downloads" : 5300, "count" : 4871}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"clsx": {"type": "string"}, "normalize.css": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pannable": {"type": "string"}}, "required": ["clsx", "normalize.css", "react", "react-dom", "react-pannable"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@storybook/addon-knobs": {"type": "string"}, "@storybook/addon-storysource": {"type": "string"}, "@storybook/react": {"type": "string"}, "@storybook/storybook-deployer": {"type": "string"}, "babel-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "@storybook/addon-knobs", "@storybook/addon-storysource", "@storybook/react", "@storybook/storybook-deployer", "babel-loader", "webpack"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "deploy"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts", "eslintConfig", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-pannable-demo", "version" : "0.1.0", "private" : true, "dependencies" : {"clsx" : "^1.1.1", "normalize.css" : "^8.0.1", "react" : "^16.8.4", "react-dom" : "^16.8.4", "react-pannable" : "^6.0.1"}, "devDependencies" : {"@babel/core" : "^7.15.0", "@storybook/addon-knobs" : "6.1.17", "@storybook/addon-storysource" : "6.1.17", "@storybook/react" : "6.1.17", "@storybook/storybook-deployer" : "2.8.10", "babel-loader" : "^8.1.0", "webpack" : "^5.50.0"}, "scripts" : {"start" : "start-storybook -p 9001 -c .storybook", "build" : "rm -rf ./dist & build-storybook -c .storybook -o dist", "deploy" : "yarn build && storybook-to-ghpages -- --existing-output-dir=dist"}, "eslintConfig" : {"extends" : "react-app"}, "browserslist" : [">0.2%", "not dead", "not ie <= 11", "not op_mini all"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"clsx": {"type": "string"}, "normalize.css": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pannable": {"type": "string"}}, "required": ["clsx", "normalize.css", "react", "react-dom", "react-pannable"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@storybook/addon-knobs": {"type": "string"}, "@storybook/addon-storysource": {"type": "string"}, "@storybook/react": {"type": "string"}, "@storybook/storybook-deployer": {"type": "string"}, "babel-loader": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/core", "@storybook/addon-knobs", "@storybook/addon-storysource", "@storybook/react", "@storybook/storybook-deployer", "babel-loader", "webpack"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "deploy"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "private", "dependencies", "devDependencies", "scripts", "eslintConfig", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browserify-shim": {"type": "string"}}, "required": ["browserify-shim"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "browser": {"type": "object", "properties": {"sockjs": {"type": "string"}}, "required": ["sockjs"]}, "browserify-shim": {"type": "object", "properties": {"sockjs": {"type": "string"}}, "required": ["sockjs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}}, "required": ["name", "version", "description", "main", "dependencies", "browserify", "browser", "browserify-shim", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "swampdragon", "version" : "0.4.4", "description" : "SwampDragon client", "main" : "./src/swampdragon.js", "dependencies" : {"browserify-shim" : "*"}, "browserify" : {"transform" : ["browserify-shim"]}, "browser" : {"sockjs" : "./vendor/sockjs-0.3.4.js"}, "browserify-shim" : {"sockjs" : "sockjs"}, "scripts" : {"build" : "browserify ./src/swampdragon.js -o ./dist/swampdragon.js -s swampdragon && yuglify ./dist/swampdragon.js", "watch" : "watchify ./src/swampdragon.js -o ./dist/swampdragon.js -s swampdragon -d -v"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"browserify-shim": {"type": "string"}}, "required": ["browserify-shim"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "browser": {"type": "object", "properties": {"sockjs": {"type": "string"}}, "required": ["sockjs"]}, "browserify-shim": {"type": "object", "properties": {"sockjs": {"type": "string"}}, "required": ["sockjs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}}, "required": ["build", "watch"]}}, "required": ["name", "version", "description", "main", "dependencies", "browserify", "browser", "browserify-shim", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-11-17T13:23:43Z", "data" : [{"data_type" : "pm10", "value" : "0.36", "max" : "3.00", "min" : "0.00", "sd" : "0.84"}, {"data_type" : "pm2.5", "value" : "0.36", "max" : "3.00", "min" : "0.00", "sd" : "0.84"}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "pm10", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "noise", "value" : "32.40", "max" : "51.54", "min" : "27.18", "sd" : "1.61"}, {"data_type" : "illuminance", "value" : "809.37", "max" : "908.00", "min" : "736.00", "sd" : "46.10"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "10.35", "max" : "10.43", "min" : "10.17", "sd" : "0.17"}, {"data_type" : "humidity", "value" : "84.05", "max" : "85.29", "min" : "83.03", "sd" : "0.63"}, {"data_type" : "presure", "value" : "692.64", "max" : "692.73", "min" : "692.52", "sd" : "0.14"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.04", "min" : "5.04", "sd" : "0.00"}, {"data_type" : "batery", "value" : "4.24", "max" : "4.24", "min" : "4.24", "sd" : "0.00"}, {"data_type" : "panel", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "lodash": {"type": "string"}, "request": {"type": "string"}}, "required": ["bluebird", "lodash", "request"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sentiment140", "version" : "1.2.0", "description" : "This is a NodeJS Client Library for the sentiment140 Natural Language Processing Service API", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/pmoelgaard/sentiment140"}, "keywords" : ["sentiment", "analysis", "natural", "language", "processing", "nodejs"], "author" : "Peter Andreas Moelgaard <admin@petermolgard.com> (http://petermolgaard.com/)", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/pmoelgaard/sentiment140/issues"}, "homepage" : "https://github.com/pmoelgaard/sentiment140", "dependencies" : {"bluebird" : "^3.4.1", "lodash" : "^4.13.1", "request" : "^2.53.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "lodash": {"type": "string"}, "request": {"type": "string"}}, "required": ["bluebird", "lodash", "request"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943": {"type": "integer"}, "program": {"type": "integer"}}, "required": ["cf0973a4-2ff7-4a05-9c80-db66fb4f5943", "program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : ["UNIQUE", "CHECK", "REVERSE", "GENERALNUMRICSORT"], "regionsToProcessedPerformance" : {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943" : 1534523733, "program" : 914067}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"cf0973a4-2ff7-4a05-9c80-db66fb4f5943": {"type": "integer"}, "program": {"type": "integer"}}, "required": ["cf0973a4-2ff7-4a05-9c80-db66fb4f5943", "program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"tooolkit": {"type": "string"}}, "required": ["tooolkit"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "vendored_frameworks": {"type": "string"}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {"type": "string"}}, "YYModel": {"type": "array", "items": {}}, "libsodium": {"type": "array", "items": {"type": "string"}}, "SAMKeychain": {"type": "array", "items": {}}, "Protobuf": {"type": "array", "items": {"type": "string"}}, "Realm": {"type": "array", "items": {}}}, "required": ["AFNetworking", "YYModel", "libsodium", "SAMKeychain", "Protobuf", "Realm"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "vendored_frameworks", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "WrapperTLib", "version" : "0.1.2", "summary" : "A short description of WrapperTLib.", "description" : "TODO: Add long description of the pod here.", "homepage" : "https://github.com/tooolkit/WrapperTLib", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"tooolkit" : "yangguang"}, "source" : {"git" : "https://github.com/tooolkit/WrapperTLib.git", "tag" : "0.1.2"}, "platforms" : {"ios" : "8.0"}, "vendored_frameworks" : "TLib.framework", "source_files" : "WrapperTLib/Classes/**/*", "dependencies" : {"AFNetworking" : ["~> 3.2"], "YYModel" : [], "libsodium" : ["~> 1.0.12"], "SAMKeychain" : [], "Protobuf" : ["~> 3.6.0"], "Realm" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"tooolkit": {"type": "string"}}, "required": ["tooolkit"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "vendored_frameworks": {"type": "string"}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"AFNetworking": {"type": "array", "items": {"type": "string"}}, "YYModel": {"type": "array", "items": {}}, "libsodium": {"type": "array", "items": {"type": "string"}}, "SAMKeychain": {"type": "array", "items": {}}, "Protobuf": {"type": "array", "items": {"type": "string"}}, "Realm": {"type": "array", "items": {}}}, "required": ["AFNetworking", "YYModel", "libsodium", "SAMKeychain", "Protobuf", "Realm"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "vendored_frameworks", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "continentCode": {"type": "string"}, "name": {"type": "string"}, "bbox": {"type": "object", "properties": {"south": {"type": "number"}, "east": {"type": "number"}, "north": {"type": "number"}, "west": {"type": "number"}}, "required": ["south", "east", "north", "west"]}, "lat": {"type": "number"}, "lng": {"type": "number"}, "population": {"type": "integer"}}, "required": ["id", "continentCode", "name", "bbox", "lat", "lng", "population"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 6254930, "continentCode" : "AS", "name" : "Palestine", "bbox" : {"south" : 31.216541290283203, "east" : 35.5732955932617, "north" : 32.54638671875, "west" : 34.21665954589844}, "lat" : 31.92157, "lng" : 35.20329, "population" : 3800000} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "continentCode": {"type": "string"}, "name": {"type": "string"}, "bbox": {"type": "object", "properties": {"south": {"type": "number"}, "east": {"type": "number"}, "north": {"type": "number"}, "west": {"type": "number"}}, "required": ["south", "east", "north", "west"]}, "lat": {"type": "number"}, "lng": {"type": "number"}, "population": {"type": "integer"}}, "required": ["id", "continentCode", "name", "bbox", "lat", "lng", "population"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "086ab15c-9ed2-4071-acb3-1652e7e9f26e"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"token": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "loc": {"type": "object", "properties": {"start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["start", "end"]}}, "required": ["type", "value", "start", "end", "loc"]}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : {"type" : "Key", "value" : "not-exists", "start" : 22, "end" : 32, "loc" : {"start" : {"line" : 1, "column" : 22}, "end" : {"line" : 1, "column" : 32}}}} | json_instruct | {"type": "object", "properties": {"token": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "loc": {"type": "object", "properties": {"start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["start", "end"]}}, "required": ["type", "value", "start", "end", "loc"]}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"tests": {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "input": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "output": {"type": "string"}}, "required": ["category", "input", "type", "name", "output"]}}}, "required": ["tests"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tests" : [{"category" : "public", "input" : "100.0\n70\nchuva 70\n", "type" : "io", "name" : "test1", "output" : "A\u00e7ude passou a liberar \u00e1gua.\nN\u00edvel: 140.00\n"}, {"category" : "public", "input" : "100\n50\ndemanda 50\ndemanda 50\nafluente 190\n", "type" : "io", "name" : "test2", "output" : "A\u00e7ude passou a liberar \u00e1gua.\nN\u00edvel: 190.00\n"}]} | json_instruct | {"type": "object", "properties": {"tests": {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "input": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "output": {"type": "string"}}, "required": ["category", "input", "type", "name", "output"]}}}, "required": ["tests"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"env": {"type": "string"}, "env_params": {"type": "object", "properties": {}, "required": []}, "forward_model_params": {"type": "object", "properties": {"num_parallel": {"type": "integer"}}, "required": ["num_parallel"]}, "rollout_params": {"type": "object", "properties": {"task_horizon": {"type": "integer"}}, "required": ["task_horizon"]}, "number_of_rollouts": {"type": "integer"}, "training_iterations": {"type": "integer"}, "evaluation_rollouts": {"type": "integer"}}, "required": ["env", "env_params", "forward_model_params", "rollout_params", "number_of_rollouts", "training_iterations", "evaluation_rollouts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"env" : "Relocate", "env_params" : {}, "forward_model_params" : {"num_parallel" : 8}, "rollout_params" : {"task_horizon" : 200}, "number_of_rollouts" : 1, "training_iterations" : 1, "evaluation_rollouts" : 0} | json_instruct | {"type": "object", "properties": {"env": {"type": "string"}, "env_params": {"type": "object", "properties": {}, "required": []}, "forward_model_params": {"type": "object", "properties": {"num_parallel": {"type": "integer"}}, "required": ["num_parallel"]}, "rollout_params": {"type": "object", "properties": {"task_horizon": {"type": "integer"}}, "required": ["task_horizon"]}, "number_of_rollouts": {"type": "integer"}, "training_iterations": {"type": "integer"}, "evaluation_rollouts": {"type": "integer"}}, "required": ["env", "env_params", "forward_model_params", "rollout_params", "number_of_rollouts", "training_iterations", "evaluation_rollouts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "I accidentally broke the `py-tables` package when I removed the `py-cython` dependency in #12172. The documentation says Cython isn't needed if you're installing from a tarball, but apparently it is needed.", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/12338", "updated_at" : "2019-08-09 02:57:20", "created_at" : "2019-08-08 19:29:39", "closed_at" : "2019-08-09 02:57:17", "state" : "closed", "title" : "Re-add py-cython dependency to py-tables", "number" : 12338, "milestone" : null, "labels" : ["dependencies"], "id" : 478648677, "html_url" : "https://github.com/spack/spack/pull/12338", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mask of the Kijin", "description" : "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e02\u0e31\u0e49\u0e19\u0e2d\u0e32\u0e27\u0e38\u0e18\nChiyo \u0e19\u0e31\u0e01\u0e23\u0e1a\u0e2b\u0e0d\u0e34\u0e07\u0e41\u0e2b\u0e48\u0e07\u0e40\u0e1c\u0e48\u0e32\u0e1b\u0e35\u0e28\u0e32\u0e08 \u0e17\u0e35\u0e48\u0e21\u0e35\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c \"Electro Mitsudomoe\" \u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e2b\u0e25\u0e31\u0e07 \u0e04\u0e23\u0e31\u0e49\u0e07\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e40\u0e18\u0e2d\u0e40\u0e04\u0e22\u0e16\u0e39\u0e01\u0e2d\u0e2a\u0e39\u0e23\u0e23\u0e49\u0e32\u0e22\u0e08\u0e32\u0e01\u0e19\u0e2d\u0e01\u0e42\u0e25\u0e01\u0e17\u0e35\u0e48\u0e21\u0e35\u0e23\u0e48\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e2a\u0e37\u0e2d\u0e41\u0e25\u0e30\u0e21\u0e35\u0e2b\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e07\u0e39\u0e01\u0e25\u0e37\u0e19\u0e25\u0e07\u0e44\u0e1b\u0e17\u0e31\u0e49\u0e07\u0e15\u0e31\u0e27 \u0e02\u0e13\u0e30\u0e17\u0e35\u0e48\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e1e\u0e25\u0e31\u0e07\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e27\u0e32\u0e21\u0e21\u0e37\u0e14 \u0e43\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e44\u0e14\u0e49\u0e09\u0e35\u0e01\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e40\u0e08\u0e49\u0e32\u0e2d\u0e2a\u0e39\u0e23\u0e19\u0e31\u0e49\u0e19\u0e41\u0e25\u0e30\u0e23\u0e2d\u0e14\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e21\u0e32\u0e44\u0e14\u0e49\n \u0e19\u0e35\u0e48\u0e04\u0e37\u0e2d\u0e17\u0e35\u0e48\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e09\u0e32\u0e22\u0e32\u0e17\u0e35\u0e48\u0e27\u0e48\u0e32 \"Chiyo the Tiger-Bite,\" \u0e41\u0e25\u0e30\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e1b\u0e01\u0e47\u0e04\u0e48\u0e2d\u0e22 \u0e46 \u0e23\u0e27\u0e1a\u0e23\u0e31\u0e14\u0e40\u0e2b\u0e25\u0e37\u0e2d \"Torachiyo\"\n\u0e41\u0e15\u0e48\u0e43\u0e19\u0e17\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e2d\u0e2a\u0e39\u0e23\u0e23\u0e49\u0e32\u0e22 \u0e40\u0e18\u0e2d\u0e16\u0e39\u0e01\u0e22\u0e49\u0e2d\u0e21\u0e14\u0e49\u0e27\u0e22\u0e2a\u0e35\u0e14\u0e33\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e27\u0e32\u0e21\u0e1a\u0e32\u0e1b \u0e41\u0e25\u0e30\u0e40\u0e2b\u0e47\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e02\u0e2d\u0e07\u0e40\u0e18\u0e2d\u0e16\u0e39\u0e01\u0e1f\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e32\u0e1a\u0e14\u0e49\u0e27\u0e22\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e2a\u0e35\u0e41\u0e14\u0e07\u0e09\u0e32\u0e19\u0e09\u0e35\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e0a\u0e34\u0e49\u0e19 \u0e46 \u0e17\u0e48\u0e32\u0e21\u0e01\u0e25\u0e32\u0e07\u0e01\u0e32\u0e23\u0e08\u0e21\u0e14\u0e34\u0e48\u0e07\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e04\u0e27\u0e32\u0e21\u0e21\u0e37\u0e14\u0e21\u0e34\u0e14 \u0e43\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e0a\u0e31\u0e01\u0e14\u0e32\u0e1a\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e49\u0e40\u0e17\u0e1e\u0e40\u0e08\u0e49\u0e32 Narukami Ogosho \u0e1c\u0e39\u0e49\u0e22\u0e34\u0e48\u0e07\u0e43\u0e2b\u0e0d\u0e48 \u0e15\u0e48\u0e2d\u0e21\u0e32 \u0e41\u0e02\u0e19\u0e17\u0e35\u0e48\u0e16\u0e37\u0e2d\u0e14\u0e32\u0e1a\u0e41\u0e25\u0e30\u0e40\u0e02\u0e32\u0e17\u0e35\u0e48\u0e41\u0e2b\u0e25\u0e21\u0e04\u0e21\u0e02\u0e2d\u0e07\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e16\u0e39\u0e01\u0e15\u0e31\u0e14\u0e02\u0e32\u0e14 \u0e41\u0e25\u0e30\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e44\u0e14\u0e49\u0e2b\u0e19\u0e35\u0e08\u0e32\u0e01\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e43\u0e19\u0e1b\u0e48\u0e32\u0e23\u0e32\u0e27\u0e01\u0e31\u0e1a\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e23\u0e49\u0e32\u0e22\u0e17\u0e35\u0e48\u0e1a\u0e32\u0e14\u0e40\u0e08\u0e47\u0e1a \u0e15\u0e48\u0e2d\u0e21\u0e32\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e18\u0e2d\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e17\u0e47\u0e07\u0e07\u0e38 \u0e2b\u0e23\u0e37\u0e2d Shuumatsuban \u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e01\u0e47\u0e17\u0e32\u0e22\u0e32\u0e17\u0e02\u0e2d\u0e07 Iwakura \u0e17\u0e35\u0e48\u0e1d\u0e36\u0e01\u0e1d\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e20\u0e39\u0e40\u0e02\u0e32\u0e08\u0e31\u0e1a\u0e15\u0e31\u0e27\u0e44\u0e1b \u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e08\u0e32\u0e01\u0e43\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e27\u0e22\u0e07\u0e32\u0e21\u0e02\u0e2d\u0e07\u0e40\u0e18\u0e2d\u0e16\u0e39\u0e01\u0e04\u0e27\u0e32\u0e21\u0e21\u0e37\u0e14\u0e21\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e41\u0e04\u0e49\u0e19\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e40\u0e08\u0e47\u0e1a\u0e1b\u0e27\u0e14\u0e08\u0e32\u0e01\u0e1a\u0e32\u0e14\u0e41\u0e1c\u0e25\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2d\u0e31\u0e1b\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c \u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e32\u0e07\u0e17\u0e35\u0e40\u0e18\u0e2d\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e1e\u0e1a\u0e01\u0e31\u0e1a\u0e0b\u0e32\u0e21\u0e39\u0e44\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e27\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e32\u0e01\u0e1b\u0e35\u0e28\u0e32\u0e08 \u0e43\u0e01\u0e25\u0e49\u0e01\u0e31\u0e1a\u0e0b\u0e32\u0e01\u0e28\u0e1e\u0e02\u0e2d\u0e07\u0e07\u0e39\u0e22\u0e31\u0e01\u0e29\u0e4c \u0e41\u0e25\u0e30\u0e41\u0e25\u0e49\u0e27\u0e01\u0e32\u0e23\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e40\u0e18\u0e2d\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e25\u0e07\u0e17\u0e35\u0e48\u0e19\u0e31\u0e48\u0e19\n\u0e1c\u0e39\u0e49\u0e17\u0e35\u0e48\u0e40\u0e04\u0e22\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e01\u0e31\u0e1a\u0e2b\u0e49\u0e27\u0e07\u0e25\u0e36\u0e01\u0e43\u0e19\u0e27\u0e31\u0e19\u0e27\u0e32\u0e19\u0e19\u0e31\u0e49\u0e19\u0e22\u0e32\u0e01\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2b\u0e25\u0e35\u0e01\u0e2b\u0e19\u0e35\u0e08\u0e32\u0e01\u0e20\u0e32\u0e1e\u0e02\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e1d\u0e31\u0e19\u0e2d\u0e31\u0e19\u0e21\u0e37\u0e14\u0e21\u0e34\u0e14 \u0e1a\u0e23\u0e23\u0e14\u0e32\u0e1c\u0e39\u0e49\u0e17\u0e35\u0e48\u0e40\u0e04\u0e22\u0e2a\u0e31\u0e07\u0e2b\u0e32\u0e23\u0e21\u0e2d\u0e19\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e30\u0e01\u0e25\u0e32\u0e22\u0e44\u0e1b\u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e27\u0e01\u0e21\u0e31\u0e19\u0e19\u0e31\u0e49\u0e19\u0e25\u0e49\u0e27\u0e19\u0e41\u0e15\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e19\u0e49\u0e2d\u0e22 \u0e40\u0e02\u0e15\u0e41\u0e14\u0e19\u0e02\u0e2d\u0e07\u0e42\u0e25\u0e01\u0e19\u0e31\u0e49\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e40\u0e1b\u0e23\u0e32\u0e30\u0e1a\u0e32\u0e07\u0e41\u0e25\u0e30\u0e2d\u0e48\u0e2d\u0e19\u0e41\u0e2d \u0e01\u0e32\u0e23\u0e01\u0e31\u0e14\u0e40\u0e0b\u0e32\u0e30\u0e19\u0e35\u0e49\u0e2d\u0e32\u0e08\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e1b\u0e41\u0e04\u0e48\u0e17\u0e34\u0e28\u0e17\u0e32\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27", "sortorder" : 1949, "rarity" : "5", "category" : "AVATAR_MATERIAL", "materialtype" : "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e02\u0e31\u0e49\u0e19\u0e2d\u0e32\u0e27\u0e38\u0e18", "dropdomain" : "\u0e14\u0e31\u0e19\u0e40\u0e08\u0e35\u0e49\u0e22\u0e19\u0e41\u0e2b\u0e48\u0e07\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49: \u0e2a\u0e38\u0e2a\u0e32\u0e19\u0e17\u0e23\u0e32\u0e22\u0e14\u0e39\u0e14", "daysofweek" : ["\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c", "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c"], "source" : ["\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "dropdomain": {"type": "string"}, "daysofweek": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "dropdomain", "daysofweek", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2004", "provinceId" : "64", "regencyId" : "03", "districtId" : "07", "name" : "Pulau Derawan"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {"toc": {"type": "string"}}, "required": ["toc"]}, "localProps": {"type": "object", "properties": {"className": {"type": "string"}, "data": {"type": "string"}}, "required": ["className", "data"]}}, "required": ["path", "templateID", "sharedPropsHashes", "localProps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"path" : "api/CsvHelper.Expressions/PrimitiveRecordWriter", "templateID" : 1, "sharedPropsHashes" : {"toc" : "Z6psdd"}, "localProps" : {"className" : "/PrimitiveRecordWriter", "data" : "# PrimitiveRecordWriter Class\r\n\r\nNamespace: [CsvHelper.Expressions](/api/CsvHelper.Expressions)\r\n\r\nWrites primitives.\r\n\r\n```cs\r\npublic class PrimitiveRecordWriter : RecordWriter\r\n```\r\n\r\nInheritance Object -> RecordWriter -> PrimitiveRecordWriter\r\n\r\n## Constructors\r\n | \r\n- | -\r\nPrimitiveRecordWriter(CsvWriter) | Initializes a new instance using the given writer.\r\n"}} | json_instruct | {"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {"toc": {"type": "string"}}, "required": ["toc"]}, "localProps": {"type": "object", "properties": {"className": {"type": "string"}, "data": {"type": "string"}}, "required": ["className", "data"]}}, "required": ["path", "templateID", "sharedPropsHashes", "localProps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "NomicsAPIKey": {"type": "string"}, "Secret": {"type": "string"}, "ExpiryHours": {"type": "string"}, "APIKey": {"type": "string"}}, "required": ["Logging", "NomicsAPIKey", "Secret", "ExpiryHours", "APIKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "NomicsAPIKey" : "a6f54b8d92f8056cbc4a5d3f5f863413d45ade95", "Secret" : "marcy9d8534b48w951b9287d492b256x", "ExpiryHours" : "24", "APIKey" : "B0E5180C-DDDF-45B3-889A-9E27DCEC2C70"} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "NomicsAPIKey": {"type": "string"}, "Secret": {"type": "string"}, "ExpiryHours": {"type": "string"}, "APIKey": {"type": "string"}}, "required": ["Logging", "NomicsAPIKey", "Secret", "ExpiryHours", "APIKey"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Engineering", "Programming"], "desc" : "\n", "details" : {"authors" : "Anatoli Korkin, David J. Lockwood", "format" : "pdf", "isbn-10" : "1461450152", "isbn-13" : "978-1461450153", "pages" : "257 pages", "publication date" : "October 29, 2012", "publisher" : "Springer", "size" : "8.00Mb"}, "img" : "http://23.95.221.108/covers/8d/8d47c2d3ad2af84fdb08c7a809589509.jpg", "link" : "https://rapidhosting.info/files/gpf", "title" : "Nanoscale Applications for Information and Energy Systems (Nanostructure Science and Technology)"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "ARCLFWR1187B9AE7B2", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Fun Lovin' Criminals", "duration" : 228.72771, "num_songs" : 1, "song_id" : "SOHRYJO12A8AE45E9D", "title" : "Love Unlimited (Remix) (Explicit)", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2008", "provinceId" : "73", "regencyId" : "22", "districtId" : "03", "name" : "Rompu"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "1901 Photograph: The Orion Nebula", "credit" : "George Ritchey, Yerkes Observatory - Digitization Project: W. Cerny, R. Kron, Y. Liang, J. Lin, M. Martinez, E. Medina, B. Moss, B. Ogonor, M. Ransom, J. Sanchez (Univ. of Chicago)", "explanation" : "By the turn of the 20th century advances in photography contributed an important tool for astronomers. Improving photographic materials, long exposures, and new telescope designs produced astronomical images with details not visible at the telescopic eyepiece alone. Remarkably recognizable to astrophotographers today, this stunning image of the star forming Orion Nebula was captured in 1901 by American astronomer and telescope designer George Ritchey. The original glass photographic plate, sensitive to green and blue wavelengths, has been digitized and light-to-dark inverted to produce a positive image. His hand written notes indicate a 50 minute long exposure that ended at dawn and a reflecting telescope aperture of 24 inches masked to 18 inches to improve the sharpness of the recorded image. Ritchey's plates from over a hundred years ago preserve astronomical data and can still be used for exploring astrophysical processes.", "date" : "2019-08-17", "hdurl" : "https://apod.nasa.gov/apod/image/1908/orion1901_ritchey.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1908/orion1901_ritchey1024.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id_4369": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_4369"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_4369" : {"title" : "Novelas Ejemplares", "language" : "Spanish", "totaltime" : "17:55:55", "url_librivox" : "http://librivox.org/novelas-ejemplares-by-miguel-de-cervantes-saavedra/", "url_iarchive" : "http://www.archive.org/details/novelas_ejemplares_1110_librivox", "readers" : ["3946", "5168", "5511", "5691", "6201", "6447"], "authors" : "4220", "genres" : "General Fiction"}} | json_instruct | {"type": "object", "properties": {"id_4369": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_4369"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 23268, "cartId" : "4a948b6f-d4ff-49b2-8fbe-fd472681a4ee", "preferredProducts" : [1064, 2738, 4635, 3938, 1449, 1634], "productReviews" : [{"productId" : 302, "reviewText" : "i use it every Tuesday when i'm in my store.", "reviewDate" : "2017-04-26T03:07:30.0927382+03:00"}, {"productId" : 2663, "reviewText" : "This Quality works very well. It harmonically improves my tennis by a lot.", "reviewDate" : "2019-08-10T16:30:05.7083792+03:00"}, {"productId" : 3846, "reviewText" : "My co-worker Matthew has one of these. He says it looks gigantic.", "reviewDate" : "2019-06-26T21:34:52.5429386+03:00"}, {"productId" : 3312, "reviewText" : "one of my hobbies is gaming. and when i'm gaming this works great.", "reviewDate" : "2020-01-24T20:19:12.502307+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "id": {"type": "string"}, "jsonClass": {"type": "string"}, "shlokas": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"jsonClass": {"type": "string"}}, "required": ["jsonClass"]}}, "required": ["description", "id", "jsonClass", "shlokas", "tags", "timing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : {"en" : "`amAvasyA` on a Monday is as sacred as a solar eclipse. Particularly good for performing pradakshinam of Pippala tree."}, "id" : "sOmavatI amAvasyA", "jsonClass" : "HinduCalendarEvent", "shlokas" : ["amAvasyA tu sOmEna saptamI bhAnunA saha.\ncaturthI bhUmiputrENa sOmaputrENa cASTamI.\ncatasrastithayastvEtAH sUryagrahaNasannibhAH..\n\nmUlatO brahmarUpAya madhyatO viSNurUpiNE.\nagrataH zivarUpAya vRkSarAjAya tE namaH..\nakSispandaM bhujaspandaM duHsvapnaM durvicintanam.\nzatrUnAm ca samutpannam azvattha zamayasva mE.."], "tags" : ["rare-days", "combinations", "amavasya-days"], "timing" : {"jsonClass" : "HinduCalendarEventTiming"}} | json_instruct | {"type": "object", "properties": {"description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "id": {"type": "string"}, "jsonClass": {"type": "string"}, "shlokas": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"jsonClass": {"type": "string"}}, "required": ["jsonClass"]}}, "required": ["description", "id", "jsonClass", "shlokas", "tags", "timing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"point": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["point", "notes", "planning-permission-date", "hectares", "site", "name", "organisation", "site-address", "start-date", "maximum-net-dwellings", "planning-permission-status", "minimum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.058286, 51.485244]}, "properties" : {"point" : "POINT(-0.058286 51.485244)", "notes" : "Demolition of existing buildings and erection of a new mixed use development comprising a part 7, part 9 storey (maximum height above ground of 29.99m) building of 288sqm commercial floor space (Use Class B1) and 74 residential dwellings (Use Class C3) with associated bin stores, cycle stores, plant rooms and hard and soft landscaping. This application represents a departure from strategic policy 10 'Jobs and Businesses' of the Core Strategy (2011) and Saved Policy 1.2 'Strategic and Local Preferred Industrial Locations' of the Southwark Plan (2007) by virtue of proposing to introduce residential accommodation in a preferred industrial location.", "planning-permission-date" : "2020-03-11", "hectares" : "0.12", "site" : "18-AP-2895", "name" : "18-AP-2895", "organisation" : "local-authority-eng:SWK", "site-address" : "2 Varcoe Road, London, SE16 3DG", "start-date" : "2020-03-24", "maximum-net-dwellings" : "74", "planning-permission-status" : "permissioned", "minimum-net-dwellings" : "74", "slug" : "/brownfield-land/local-authority-eng/SWK/18-AP-2895", "entity" : 495963, "entry-date" : "2020-03-24"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"point": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-date": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "organisation": {"type": "string"}, "site-address": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["point", "notes", "planning-permission-date", "hectares", "site", "name", "organisation", "site-address", "start-date", "maximum-net-dwellings", "planning-permission-status", "minimum-net-dwellings", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Manual", "Programming"], "desc" : "\n", "details" : {"authors" : "Paul Gerrard", "format" : "pdf", "isbn-10" : "1484223845", "isbn-13" : "978-1484223840", "pages" : "87 pages", "publication date" : "November 12, 2016", "publisher" : "Apress", "size" : "6.00Mb"}, "img" : "http://23.95.221.108/covers/cd/cd96006877d9689bc4be24d7c41fb493.jpg", "link" : "https://rapidhosting.info/files/dx9", "title" : "Lean Python: Learn Just Enough Python to Build Useful Tools"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1604120026", "district_id" : "1604120", "name" : "PAGAR AGUNG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "makesemay", "h" : [{"d" : [{"f" : "\u61ee\u50b7\u8d77\u4f86\uff0c\u6b63\u767c\u6101\uff0c\u5782\u982d\u55aa\u6c23\u4e86\u3002"}, {"f" : "\u6307\u767c\u6101\u3001\u61ee\u50b7\u7684\uff08\u4eba\uff09\u3002", "e" : ["\ufff9`Awaay~ `ko~ `sapikalic~ `ningra~ `to~ `tosiya~ `a~ `payso~ , `makesem~`ay~ `cingra~ `a~ `maro'~ `itira~.\ufffa\ufffb\u56e0\u70ba\u6c92\u6709\u9322\u5750\u6c7d\u8eca\uff0c\u4ed6\u5c31\u5750\u5728\u90a3\u88e1\u767c\u6101\u4e86\u3002"]}]}], "stem" : "kesem"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND PURSUE HAPPINESS BY CONTRARY COURSES.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/4710.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}}, "required": ["label", "id", "name", "value"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"items" : [{"label" : "Apple", "id" : "rbg1", "name" : "radio-button-group", "value" : "apple"}, {"label" : "Avocado", "id" : "rbg2", "name" : "radio-button-group", "value" : "banana"}, {"label" : "Banana", "id" : "rbg3", "name" : "radio-button-group", "value" : "citrus"}, {"label" : "Citrus", "id" : "rbg4", "name" : "radio-button-group", "value" : "avocado"}]} | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}}, "required": ["label", "id", "name", "value"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01002054": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002054"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01002054" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00010295", "LAD11CD" : "E09000014"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00010297", "LAD11CD" : "E09000014"}, "arcs" : [[4, 5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00010302", "LAD11CD" : "E09000014"}, "arcs" : [[-5, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00010305", "LAD11CD" : "E09000014"}, "arcs" : [[9, -6, -9, 10, -2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00010306", "LAD11CD" : "E09000014"}, "arcs" : [[-4, 11]]}]}}, "arcs" : [[[2029, 8925], [3187, 665]], [[5216, 9590], [228, -1610], [-872, -3138]], [[4572, 4842], [-825, 914], [-341, -930]], [[3406, 4826], [-627, 607], [-14, 1524], [-662, 296], [-74, 1672]], [[7319, 6856], [-364, 696], [-643, -1184]], [[6312, 6368], [-719, 157], [1621, 3404]], [[7214, 9929], [2785, -3454], [-489, -1821], [-1225, 267], [457, 2012], [-1423, -77]], [[7319, 6856], [-505, -2422]], [[6814, 4434], [-867, 964], [365, 970]], [[5216, 9590], [1957, 409], [41, -70]], [[6814, 4434], [52, -64], [-170, -702], [-475, 28], [-755, -3696], [-1602, 1871], [708, 2971]], [[3406, 4826], [-702, -1882], [-1109, 1329], [311, 1334], [-839, 54], [220, 1178], [-639, 126], [-648, 1515], [2029, 445]]], "transform" : {"scale" : [8.189560830347043e-07, 2.9196419312727813e-07], "translate" : [-0.08668011940625, 51.576552624010596]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01002054": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002054"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"paging": {"type": "object", "properties": {"numTotal": {"type": "integer"}, "pageSize": {"type": "integer"}, "end": {"type": "integer"}, "begin": {"type": "integer"}}, "required": ["numTotal", "pageSize", "end", "begin"]}, "items": {"type": "array", "items": {"type": "object", "properties": {"short_description": {"type": "string"}, "_name": {"type": "string"}, "native_id": {"type": "string"}, "_context": {"type": "array", "items": {"type": "object", "properties": {"_name": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_url": {"type": "string"}}, "required": ["_name", "_type", "_id", "_url"]}}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_url": {"type": "string"}}, "required": ["short_description", "_name", "native_id", "_context", "_type", "_id", "_url"]}}}, "required": ["paging", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"paging" : {"numTotal" : 1, "pageSize" : 100, "end" : 0, "begin" : 0}, "items" : [{"short_description" : "", "_name" : "LH_ADDR_1", "native_id" : "", "_context" : [{"_name" : "INFOSVR", "_type" : "host_(engine)", "_id" : "b1c497ce.354f5217.001mtr387.0nbvgbo.uh4485.rd8qffabbjgrsfjh2sheh", "_url" : "https://infosvr:9446/ibm/iis/igc-rest/v1/assets/b1c497ce.354f5217.001mtr387.0nbvgbo.uh4485.rd8qffabbjgrsfjh2sheh"}, {"_name" : "PATIENT", "_type" : "database", "_id" : "b1c497ce.6e83759b.001mts4re.732ou17.lj04tv.ds0r5fbcfv6aml6tfo53l", "_url" : "https://infosvr:9446/ibm/iis/igc-rest/v1/assets/b1c497ce.6e83759b.001mts4re.732ou17.lj04tv.ds0r5fbcfv6aml6tfo53l"}, {"_name" : "DB2INST1", "_type" : "database_schema", "_id" : "b1c497ce.c1fb060b.001mts4re.7331jdi.nnod24.3aci569ca741v10qq7pbb", "_url" : "https://infosvr:9446/ibm/iis/igc-rest/v1/assets/b1c497ce.c1fb060b.001mts4re.7331jdi.nnod24.3aci569ca741v10qq7pbb"}, {"_name" : "PATIENT", "_type" : "database_table", "_id" : "b1c497ce.54bd3a08.001mts4re.732lbkf.8t593v.if4i0ucq3u7gu6g18o3hp", "_url" : "https://infosvr:9446/ibm/iis/igc-rest/v1/assets/b1c497ce.54bd3a08.001mts4re.732lbkf.8t593v.if4i0ucq3u7gu6g18o3hp"}], "_type" : "database_column", "_id" : "b1c497ce.60641b50.001mts4re.7329o5p.fksi2c.d1faba1s5dg194o1p784m", "_url" : "https://infosvr:9446/ibm/iis/igc-rest/v1/assets/b1c497ce.60641b50.001mts4re.7329o5p.fksi2c.d1faba1s5dg194o1p784m"}]} | json_instruct | {"type": "object", "properties": {"paging": {"type": "object", "properties": {"numTotal": {"type": "integer"}, "pageSize": {"type": "integer"}, "end": {"type": "integer"}, "begin": {"type": "integer"}}, "required": ["numTotal", "pageSize", "end", "begin"]}, "items": {"type": "array", "items": {"type": "object", "properties": {"short_description": {"type": "string"}, "_name": {"type": "string"}, "native_id": {"type": "string"}, "_context": {"type": "array", "items": {"type": "object", "properties": {"_name": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_url": {"type": "string"}}, "required": ["_name", "_type", "_id", "_url"]}}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_url": {"type": "string"}}, "required": ["short_description", "_name", "native_id", "_context", "_type", "_id", "_url"]}}}, "required": ["paging", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "QmYE9CMHXW815Ez2U8G9PCxecm6ryqJWFAQSJUjq6Nu5ip", "title" : "y", "body" : "y", "choices" : ["y", "n"], "start" : 1604552400, "end" : 1605934800, "snapshot" : "11325154", "state" : "closed", "author" : "0xfc2A0dB072b5D91E22a08beBF8909b280A01785F", "space" : {"id" : "sushigov.eth", "name" : "Sushi"}, "votes" : 0, "votes_data" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[138.875, 22.0], [138.875, 22.083333333333332], [139.0, 22.083333333333332], [139.0, 22.0], [138.875, 22.0]]]}, "properties" : {"code" : 333807, "url" : "http://madefor.github.io/0410/api/v1/333807.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/333807.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"bitExpert\\Composer": {"type": "array", "items": {"type": "string"}}}, "required": ["bitExpert\\Composer"]}}, "required": ["psr-0"]}, "extra": {"type": "object", "properties": {"class": {"type": "string"}}, "required": ["class"]}, "require": {"type": "object", "properties": {"composer-plugin-api": {"type": "string"}}, "required": ["composer-plugin-api"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "composer/composer": {"type": "string"}, "mikey179/vfsStream": {"type": "string"}}, "required": ["phpunit/phpunit", "composer/composer", "mikey179/vfsStream"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "minimum-stability", "version", "autoload", "extra", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bitexpert/web-asset-installer", "description" : "Web Asset Installer Plugin", "type" : "composer-plugin", "keywords" : ["composer", "installer", "web", "assets"], "homepage" : "https://github.com/bitExpert/composer-webasset-installer", "license" : "Apache-2.0", "authors" : [{"name" : "Stephan Hochd\u00f6rfer", "email" : "S.Hochdoerfer@bitExpert.de"}], "minimum-stability" : "dev", "version" : "0.4.0-dev", "autoload" : {"psr-0" : {"bitExpert\\Composer" : ["src/", "tests/"]}}, "extra" : {"class" : "\\bitExpert\\Composer\\WebAssetInstallerPlugin"}, "require" : {"composer-plugin-api" : "^1.0.0"}, "require-dev" : {"phpunit/phpunit" : "3.7.*@stable", "composer/composer" : "1.*@dev", "mikey179/vfsStream" : "v1.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"bitExpert\\Composer": {"type": "array", "items": {"type": "string"}}}, "required": ["bitExpert\\Composer"]}}, "required": ["psr-0"]}, "extra": {"type": "object", "properties": {"class": {"type": "string"}}, "required": ["class"]}, "require": {"type": "object", "properties": {"composer-plugin-api": {"type": "string"}}, "required": ["composer-plugin-api"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "composer/composer": {"type": "string"}, "mikey179/vfsStream": {"type": "string"}}, "required": ["phpunit/phpunit", "composer/composer", "mikey179/vfsStream"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "authors", "minimum-stability", "version", "autoload", "extra", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-117.09, 47.77]}, "type" : "Feature", "id" : "99025", "properties" : {"other_cities" : "", "city" : "Newman Lake", "state" : "WA", "county" : "Spokane County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"keV" : [6.06, 42.309, 42.996, 48.551, 48.695, 49.959, 388.8, 465.0, 465.0, 511.0, 515.3, 693.7, 853.1, 898.4, 980.1, 1299.6, 1364.1, 1399.2, 1587.4, 1764.1, 1799.0, 1828.7, 1915.0, 2343.6], "intensity" : [0.496, 0.75, 1.34, 0.136, 0.262, 0.0877, 0.22, 2.7, 0.5, 192.0, 24.9, 1.0, 2.4, 0.27, 0.45, 0.4, 0.2, 2.4, 0.35, 0.22, 0.5, 0.67, 0.57, 0.25], "halfLife" : ["597 ms"]} | json_instruct | {"type": "object", "properties": {"keV": {"type": "array", "items": {"type": "number"}}, "intensity": {"type": "array", "items": {"type": "number"}}, "halfLife": {"type": "array", "items": {"type": "string"}}}, "required": ["keV", "intensity", "halfLife"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "integer"}, "number": {"type": "integer"}, "filename": {"type": "string"}, "start_date": {"type": "string"}, "feature_name": {"type": "array", "items": {"type": "string"}}, "issues": {"type": "array", "items": {"type": "string"}}, "title": {"type": "null"}, "teams": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "number", "filename", "start_date", "feature_name", "issues", "title", "teams", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1, "number" : 809, "filename" : "0809-box-and-in-for-stdlib.md", "start_date" : "2015-02-04", "feature_name" : ["box_syntax", "placement_in_syntax"], "issues" : ["[rust-lang/rust#22181](https://github.com/rust-lang/rust/issues/22181)"], "title" : null, "teams" : ["Lang"], "tags" : ["A-syntax", "A-expressions", "A-placement-new"]} | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "number": {"type": "integer"}, "filename": {"type": "string"}, "start_date": {"type": "string"}, "feature_name": {"type": "array", "items": {"type": "string"}}, "issues": {"type": "array", "items": {"type": "string"}}, "title": {"type": "null"}, "teams": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "number", "filename", "start_date", "feature_name", "issues", "title", "teams", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "object", "properties": {"shared-code/*": {"type": "array", "items": {"type": "string"}}, "lib0": {"type": "array", "items": {"type": "string"}}, "lib0/*": {"type": "array", "items": {"type": "string"}}, "lib1": {"type": "array", "items": {"type": "string"}}, "lib1/*": {"type": "array", "items": {"type": "string"}}, "lib2": {"type": "array", "items": {"type": "string"}}, "lib2/*": {"type": "array", "items": {"type": "string"}}}, "required": ["shared-code/*", "lib0", "lib0/*", "lib1", "lib1/*", "lib2", "lib2/*"]}}, "required": ["baseUrl", "outDir", "types", "paths"]}, "files": {"type": "array", "items": {"type": "string"}}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "../../../tsconfig.json", "compilerOptions" : {"baseUrl" : "./", "outDir" : "./out-tsc/spec", "types" : ["jasmine", "node"], "paths" : {"shared-code/*" : ["../../../shared-code/*"], "lib0" : ["../../../dist-libs/lib0"], "lib0/*" : ["../../../projects/libs/lib0/src/lib/*"], "lib1" : ["../../../dist-libs/lib1"], "lib1/*" : ["../../../projects/libs/lib1/src/lib/*"], "lib2" : ["../../../dist-libs/lib2"], "lib2/*" : ["../../../projects/libs/lib2/src/lib/*"]}}, "files" : ["src/test.ts", "src/zone-flags.ts", "src/polyfills.ts"], "include" : ["src/**/*.spec.ts", "src/**/*.d.ts"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "object", "properties": {"shared-code/*": {"type": "array", "items": {"type": "string"}}, "lib0": {"type": "array", "items": {"type": "string"}}, "lib0/*": {"type": "array", "items": {"type": "string"}}, "lib1": {"type": "array", "items": {"type": "string"}}, "lib1/*": {"type": "array", "items": {"type": "string"}}, "lib2": {"type": "array", "items": {"type": "string"}}, "lib2/*": {"type": "array", "items": {"type": "string"}}}, "required": ["shared-code/*", "lib0", "lib0/*", "lib1", "lib1/*", "lib2", "lib2/*"]}}, "required": ["baseUrl", "outDir", "types", "paths"]}, "files": {"type": "array", "items": {"type": "string"}}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files", "include"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "sideEffects": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "esnext": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "clean", "build"]}, "devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "ficon-generator": {"type": "string"}, "react": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "ficon-generator", "react", "ts-node", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "dependencies": {"type": "object", "properties": {"ficon-core": {"type": "string"}}, "required": ["ficon-core"]}, "gitHead": {"type": "string"}}, "required": ["version", "name", "sideEffects", "description", "main", "esnext", "module", "types", "bugs", "repository", "author", "license", "scripts", "devDependencies", "peerDependencies", "dependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.3.0", "name" : "ficon", "sideEffects" : false, "description" : "", "main" : "lib", "esnext" : "es", "module" : "es", "types" : "lib/index.d.js", "bugs" : {"url" : "https://github.com/bkniffler/ficon"}, "repository" : {"type" : "git", "url" : "https://github.com/bkniffler/ficon.git"}, "author" : "Benjamin Kniffler <bkniffler@me.com>", "license" : "MIT", "scripts" : {"test" : "jest", "clean" : "rimraf lib src/icons src/index.ts", "build" : "yarn clean && node ../ficon-generator free regular,brands ts && tsc && tsc --module esnext --outDir es"}, "devDependencies" : {"@fortawesome/fontawesome-free" : "^5.5.0", "ficon-generator" : "^0.3.0", "react" : "^16.6.1", "ts-node" : "^7.0.1", "typescript" : "^3.1.6"}, "peerDependencies" : {"react" : "^16.5.2"}, "dependencies" : {"ficon-core" : "^0.3.0"}, "gitHead" : "561bb909bd51f28fa41b997f8f899aea844a4aae"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "sideEffects": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "esnext": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "clean", "build"]}, "devDependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free": {"type": "string"}, "ficon-generator": {"type": "string"}, "react": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@fortawesome/fontawesome-free", "ficon-generator", "react", "ts-node", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "dependencies": {"type": "object", "properties": {"ficon-core": {"type": "string"}}, "required": ["ficon-core"]}, "gitHead": {"type": "string"}}, "required": ["version", "name", "sideEffects", "description", "main", "esnext", "module", "types", "bugs", "repository", "author", "license", "scripts", "devDependencies", "peerDependencies", "dependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 864, "filename" : "main.png"} | json_instruct | {"type": "object", "properties": {"width": {"type": "integer"}, "filename": {"type": "string"}}, "required": ["width", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "verses": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "string"}}}, "required": ["lines"]}}, "chorus": {"type": "string"}, "CCLI": {"type": "string"}}, "required": ["title", "verses", "chorus", "CCLI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "IPH 261 - Almighty God, Your word is cast", "verses" : [{"lines" : [" Almighty God, Your word is cast", " like seed into the ground:\r", "now let the dew of heaven descend,\r", " and righteous fruits abound.\r"]}, {"lines" : ["\fLet not the foe of Christ and man", " this holy seed remove:\r", " but give it root in every heart,\r", " to bring forth fruits of love.\r"]}, {"lines" : ["\fLet not the world\u2019s deceitful cares", " the rising plant destroy;\r", " but let it yield a hundredfold\r", " the fruits of peace and joy.\r"]}, {"lines" : ["\f Oft as the precious seed is sown,", " Your quickening grace bestow;\r", "that all whose souls the truth receive\r", " its saving power may know.\r"]}], "chorus" : "", "CCLI" : "John Carwood, 1775-1852 CCLI 128675"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "verses": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "string"}}}, "required": ["lines"]}}, "chorus": {"type": "string"}, "CCLI": {"type": "string"}}, "required": ["title", "verses", "chorus", "CCLI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1.3"], "meta" : {"description" : "This program is written to reset those pesky little Android Apps that restrict fromm doing stuff", "homepage" : "http://geeknirvana.org"}, "versions" : {"0.1.0" : {"sha256" : "da1f90be94c84f45533c859f7aa89a5de5028f2044dce1dad538eda736de3ebf", "url" : "https://files.pythonhosted.org/packages/23/d2/afe316bdbf16c31c43ecbcbe5d39b7d0220651768488c2883aec3eb703ad/KillLock-0.1.0.tar.gz"}, "0.1.1" : {"sha256" : "e3bcaa9176006b1511d5b3ed673aad8fc169ca66bea60b54d0b818ac4863c2d1", "url" : "https://files.pythonhosted.org/packages/01/7a/6934ee3aaafb76ac5287743eee2618671c98e20ab1440132f775892449ef/KillLock-0.1.1.tar.gz"}, "0.1.2" : {"sha256" : "a539fed770b23895be9e11fa06d33458eaa604cc5236aea5f24bd200b4019858", "url" : "https://files.pythonhosted.org/packages/a1/1c/9f616ee0df88bfa8050985fa6d4ad704beb19f2dfdaff4b03396471e2b72/KillLock-0.1.2.tar.gz"}, "0.1.3" : {"sha256" : "6d133472638d61e56b7dc6b3a52de733d4f3762064b7e5b7f627305ec7827505", "url" : "https://files.pythonhosted.org/packages/39/35/035c9a167afb50bef87ae80284d352f32c500ecd57217f262b5123fa241d/KillLock-0.1.3.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.0", "0.1.1", "0.1.2", "0.1.3"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-dark-emoticons-comment-smiley": {"type": "object", "properties": {"1.1": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.1", "dev-trunk"]}}, "required": ["wpackagist-plugin/wp-dark-emoticons-comment-smiley"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : {"wpackagist-plugin/wp-dark-emoticons-comment-smiley" : {"1.1" : {"name" : "wpackagist-plugin/wp-dark-emoticons-comment-smiley", "version" : "1.1", "version_normalized" : "1.1.0.0", "uid" : 412300, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/wp-dark-emoticons-comment-smiley.zip?timestamp=1339614476"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/wp-dark-emoticons-comment-smiley/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/wp-dark-emoticons-comment-smiley/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/wp-dark-emoticons-comment-smiley", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 412301, "time" : "2012-06-13 19:07:56", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/wp-dark-emoticons-comment-smiley.zip?timestamp=1339614476"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/wp-dark-emoticons-comment-smiley/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/wp-dark-emoticons-comment-smiley/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}} | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-dark-emoticons-comment-smiley": {"type": "object", "properties": {"1.1": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.1", "dev-trunk"]}}, "required": ["wpackagist-plugin/wp-dark-emoticons-comment-smiley"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 170068, "name" : "\u79fb\u52a8\u7aef\u7cd7\u4e8b\u767e\u79d1", "description" : "\u79fb\u52a8\u7aef\u7cd7\u4e8b\u767e\u79d1\u53bb\u5e7f\u544a", "user" : {"id" : 788500, "name" : "\u6768\u4e66\u9896", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2019-03-20T03:51:03.000Z", "weekly_install_count" : 0, "total_install_count" : 28, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/170068_after.png?r=1585641713", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2019-03-20T03:49:18.000Z", "category" : "site", "raw_subcategory" : "qiushibaike", "subcategory" : "qiushibaike", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document url-prefix(https://www.qiushibaike.com) {\r\n\tiframe{\r\n display: none \r\n }\r\n .other{\r\n display: none\r\n }\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/170068/theme.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"apollo-datasource-rest": {"type": "string"}, "apollo-server": {"type": "string"}, "apollo-server-testing": {"type": "string"}, "dotenv": {"type": "string"}, "graphql": {"type": "string"}}, "required": ["apollo-datasource-rest", "apollo-server", "apollo-server-testing", "dotenv", "graphql"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@types/react", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "swapi_server", "version" : "1.0.0", "description" : "", "main" : "src/index.js", "scripts" : {"start" : "nodemon node server"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Teatoller/swapi_server.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/Teatoller/swapi_server/issues"}, "homepage" : "https://github.com/Teatoller/swapi_server#readme", "dependencies" : {"apollo-datasource-rest" : "^0.12.0", "apollo-server" : "^2.23.0", "apollo-server-testing" : "^2.24.0", "dotenv" : "^8.2.0", "graphql" : "^15.5.0"}, "devDependencies" : {"@types/react" : "^17.0.3", "nodemon" : "^2.0.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"apollo-datasource-rest": {"type": "string"}, "apollo-server": {"type": "string"}, "apollo-server-testing": {"type": "string"}, "dotenv": {"type": "string"}, "graphql": {"type": "string"}}, "required": ["apollo-datasource-rest", "apollo-server", "apollo-server-testing", "dotenv", "graphql"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@types/react", "nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"matter.js": {"type": "string"}, "matter.min.js": {"type": "string"}}, "required": ["matter.js", "matter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"matter.js" : "sha512-v0/Od6PxltuKO+5Ta32Hu0EeRmZiTcD5aohuQh+9r6ThybrSKqJy2zUTKNlZM5v0d/iMkOPC2xA5YIzOIuuajA==", "matter.min.js" : "sha512-zkr6K5aibGz5uIkC28VJQrfg/YDadqtqZPzXiBhUHUSGGqGzmEvK70f+yjV/qCRT21Zsqnc0ABGt5GUakGh16g=="} | json_instruct | {"type": "object", "properties": {"matter.js": {"type": "string"}, "matter.min.js": {"type": "string"}}, "required": ["matter.js", "matter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {"type": "string"}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["methods", "package", "constants", "class", "constructors", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"methods" : ["[Expand] Inherited Methods", "From class java.lang.Object Object clone() boolean equals(Object arg0) void finalize() final Class<?> getClass() int hashCode() final void notify() final void notifyAll() String toString() final void wait() final void wait(long arg0, int arg1) final void wait(long arg0)", "Object clone()", "boolean equals(Object arg0)", "void finalize()", "final Class<?> getClass()", "int hashCode()", "final void notify()", "final void notifyAll()", "String toString()", "final void wait()", "final void wait(long arg0, int arg1)", "final void wait(long arg0)"], "package" : "com.google.android.gms.common", "constants" : ["String APP_STATE Scope for using the App State service.", "String CLOUD_SAVE Scope for using the CloudSave service.", "String DRIVE_APPFOLDER Scope for accessing appfolder files from Google Drive.", "String DRIVE_FILE Scope for access user-authorized files from Google Drive.", "String GAMES Scope for accessing data from Google Play Games.", "String PLUS_LOGIN OAuth 2.0 scope for accessing the user's name, basic profile info, list of people in the user's circles, and writing app activities to Google.", "String PLUS_ME This scope was previously named PLUS_PROFILE.", "String PROFILE OAuth 2.0 scope for accessing user's basic profile information."], "class" : "Scopes", "constructors" : [], "fields" : []} | json_instruct | {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}, "constants": {"type": "array", "items": {"type": "string"}}, "class": {"type": "string"}, "constructors": {"type": "array", "items": {}}, "fields": {"type": "array", "items": {}}}, "required": ["methods", "package", "constants", "class", "constructors", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"divisionCode" : 440811100, "post" : "524003", "divisionName" : "\u9ebb\u7ae0\u9547", "isLeaf" : 1}, {"divisionCode" : 440811101, "post" : "524003", "divisionName" : "\u592a\u5e73\u9547", "isLeaf" : 1}, {"divisionCode" : 440811102, "post" : "524003", "divisionName" : "\u6e56\u5149\u9547", "isLeaf" : 1}, {"divisionCode" : 440811170, "post" : "524003", "divisionName" : "\u4e1c\u5c71\u9547", "isLeaf" : 1}, {"divisionCode" : 440811171, "post" : "524003", "divisionName" : "\u4e1c\u7b80\u9547", "isLeaf" : 1}, {"divisionCode" : 440811172, "post" : "524003", "divisionName" : "\u6c11\u5b89\u9547", "isLeaf" : 1}, {"divisionCode" : 440811173, "post" : "524003", "divisionName" : "\u7847\u6d32\u9547", "isLeaf" : 1}, {"divisionCode" : 440811450, "post" : "524003", "divisionName" : "\u6e56\u5149\u519c\u573a", "isLeaf" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"objectIdFieldName": {"type": "string"}, "globalIdFieldName": {"type": "string"}, "hasZ": {"type": "boolean"}, "hasM": {"type": "boolean"}, "geometryType": {"type": "string"}, "spatialReference": {"type": "object", "properties": {"wkid": {"type": "integer"}}, "required": ["wkid"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "alias": {"type": "string"}}, "required": ["name", "type", "alias"]}}, "features": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"MIN_ID": {"type": "integer"}, "MAX_ID": {"type": "integer"}}, "required": ["MIN_ID", "MAX_ID"]}}, "required": ["attributes"]}}}, "required": ["objectIdFieldName", "globalIdFieldName", "hasZ", "hasM", "geometryType", "spatialReference", "fields", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"objectIdFieldName" : "id", "globalIdFieldName" : "", "hasZ" : false, "hasM" : false, "geometryType" : "esriGeometryPoint", "spatialReference" : {"wkid" : 4326}, "fields" : [{"name" : "min_id", "type" : "esriFieldTypeInteger", "alias" : "min_id"}, {"name" : "max_id", "type" : "esriFieldTypeInteger", "alias" : "max_id"}], "features" : [{"attributes" : {"MIN_ID" : 1, "MAX_ID" : 14}}]} | json_instruct | {"type": "object", "properties": {"objectIdFieldName": {"type": "string"}, "globalIdFieldName": {"type": "string"}, "hasZ": {"type": "boolean"}, "hasM": {"type": "boolean"}, "geometryType": {"type": "string"}, "spatialReference": {"type": "object", "properties": {"wkid": {"type": "integer"}}, "required": ["wkid"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "alias": {"type": "string"}}, "required": ["name", "type", "alias"]}}, "features": {"type": "array", "items": {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"MIN_ID": {"type": "integer"}, "MAX_ID": {"type": "integer"}}, "required": ["MIN_ID", "MAX_ID"]}}, "required": ["attributes"]}}}, "required": ["objectIdFieldName", "globalIdFieldName", "hasZ", "hasM", "geometryType", "spatialReference", "fields", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"gridlex.css": {"type": "string"}, "gridlex.min.css": {"type": "string"}}, "required": ["gridlex.css", "gridlex.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gridlex.css" : "sha512-UbbKpTPV08DY8j97Hcus9ytkWuG5hxx7VO+4MsB3KbV9mmIq404q2Vzk4LEPq3Lh3rLTpt+8PjaAtDgI/7bZ9w==", "gridlex.min.css" : "sha512-EcD8ZpbpdQf+Kv3qZL6KZqaD1FikAKDSiPA+xT/ztHqDOsMdgkkWg5R8sYB6F0wffucZ7FQqn6kkrKjEEFCauA=="} | json_instruct | {"type": "object", "properties": {"gridlex.css": {"type": "string"}, "gridlex.min.css": {"type": "string"}}, "required": ["gridlex.css", "gridlex.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "protozoon", "definition" : "(a) One of the Protozoa. (b) A single zooid of a compound protozoan."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_": {"type": "string"}}, "required": ["_"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_" : "/* ============================= */\n/* Base theme */\n/* ============================= */\n/* ============================= */\n/* Global Base parameters */\n/* ============================= */\n/* =========================== */\n/* Global CSS for 'base' theme */\n/* =========================== */\n/* ============================= */\n/* Base theme */\n/* ============================= */\n.sapUiIcon.sapMInputBaseIcon {\n width: 2.375rem;\n min-width: 2.375rem;\n height: 100%;\n line-height: 2.375rem;\n vertical-align: middle;\n cursor: pointer;\n background: transparent;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n/* ============================= */\n/* Global Belize parameters */\n/* ============================= */\n/* ===================================== */\n/* Quick Theming */\n/* ===================================== */\n/*\n UX COLOR SET\n*/\n/* PRIMARY COLORS */\n/* ACCENT COLORS */\n/* Semantic Background Colors */\n/* Semantic Border Colors */\n/* Semantic Foreground Elements */\n/* Semantic Text */\n/* Semantic Foreground Colors */\n/* ===================================== */\n/* Expert Theming */\n/* ===================================== */\n"} | json_instruct | {"type": "object", "properties": {"_": {"type": "string"}}, "required": ["_"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "dataSource": {"type": "object", "properties": {"type": {"type": "string"}, "endpoint": {"type": "string"}}, "required": ["type", "endpoint"]}, "mapping": {"type": "string"}, "output": {"type": "object", "properties": {"type": {"type": "string"}, "columnDefs": {"type": "array", "items": {"type": "object", "properties": {"headerName": {"type": "string"}, "field": {"type": "string"}}, "required": ["headerName", "field"]}}}, "required": ["type", "columnDefs"]}}, "required": ["title", "description", "dataSource", "mapping", "output"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Recordings of Works (chart)", "description" : "Chart of how many release per work", "dataSource" : {"type" : "remote", "endpoint" : "https://fake-api.now32.now.sh/musicalWork"}, "mapping" : "[].{ label: originalTitle, value: length(associatedISRCs) }", "output" : {"type" : "grid", "columnDefs" : [{"headerName" : "Title", "field" : "label"}, {"headerName" : "Releases", "field" : "value"}]}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "dataSource": {"type": "object", "properties": {"type": {"type": "string"}, "endpoint": {"type": "string"}}, "required": ["type", "endpoint"]}, "mapping": {"type": "string"}, "output": {"type": "object", "properties": {"type": {"type": "string"}, "columnDefs": {"type": "array", "items": {"type": "object", "properties": {"headerName": {"type": "string"}, "field": {"type": "string"}}, "required": ["headerName", "field"]}}}, "required": ["type", "columnDefs"]}}, "required": ["title", "description", "dataSource", "mapping", "output"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.