input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"...
{"name" : "DR YVONNE GOH AESTHETICS", "tel" : "64622559", "fax" : "64620052", "licensee" : "DR YVONNE GOH MEDICAL AESTHETICS PTE. LTD.", "licensePeriod" : "25/09/2015 to 24/09/2017", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "13C0251", "address" : "BLK 1 ORCHARD BOULEVARD, CAMDEN MEDICAL CENTRE, #09-05 Singapo...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ng-currency.js": {"type": "string"}}, "required": ["ng-currency.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ng-currency.js" : "sha512-6IgbUxuz2L40bZrIo2VVynKCyb6Sc73gQ19VxbMy4C25XYgeZw525e58Ub+8Ssanm6nIdmGr1dmtZSfF+KNPaQ=="}
json_instruct
{"type": "object", "properties": {"ng-currency.js": {"type": "string"}}, "required": ["ng-currency.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "resolutions": {"type": "object...
{"description" : "Wrapping of *Bootstrap CSS* as Polymer web component to be used as shared style in full ShadowDOM mode", "keywords" : ["web-component", "web-components", "polymer", "boostrap"], "homepage" : "https://github.com/lostinbrittany/granite-bootstrap", "name" : "@granite-elements/granite-bootstrap", "version...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "resolutions": {"type": "object", "properties": {}, "required": []}, "main": {"type": "string"}, "au...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"jquery.sidebar.js": {"type": "string"}, "jquery.sidebar.min.js": {"type": "string"}}, "required": ["jquery.sidebar.js", "jquery.sidebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.sidebar.js" : "sha256-OrVIqzGxnPgYfCr4q0Vd8kgFvM6oVYtirMcTuQ198EI=", "jquery.sidebar.min.js" : "sha256-fEU2tVQJfqY3R+Kqwp9t9i5SGUA2f4ojZxvO+QC7uq4="}
json_instruct
{"type": "object", "properties": {"jquery.sidebar.js": {"type": "string"}, "jquery.sidebar.min.js": {"type": "string"}}, "required": ["jquery.sidebar.js", "jquery.sidebar.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "os": ...
[{"appId" : "888790", "cpu" : "Intel Core i7-2600 @ 3.40GHz", "duration" : "severalHours", "gpu" : "AMD TURKS", "gpuDriver" : "3.1 Mesa 18.2.2", "kernel" : "4.18.0-10-generic", "os" : "Ubuntu 18.10", "protonVersion" : "Default", "ram" : "16 GB", "rating" : "Platinum", "timestamp" : 1540887488, "title" : "Sabbat of the ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "duration": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "s...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}}, "required": ["target", "module"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["comp...
{"compilerOptions" : {"target" : "es6", "module" : "es2015"}, "include" : ["./main.ts"]}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "module": {"type": "string"}}, "required": ["target", "module"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include"], "$schema": "http://json-schema.or...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "orientation": {"type": "string"}, "icon": {"type": "string"}, "platforms": {"type": "array", "ite...
{"expo" : {"name" : "SRU", "slug" : "SRU", "version" : "1.0.0", "orientation" : "portrait", "icon" : "./assets/app_logo.png", "platforms" : ["ios", "android"], "updates" : {"fallbackToCacheTimeout" : 0}, "assetBundlePatterns" : ["**/*"], "ios" : {"splash" : {"image" : "./assets/splash/splash.png", "backgroundColor" : "...
json_instruct
{"type": "object", "properties": {"expo": {"type": "object", "properties": {"name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "orientation": {"type": "string"}, "icon": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}, "updates": {"type": "object", "pr...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "component": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "jsfiddle": {"type": "string"}}, "required": ["title", "component", "components", "jsfi...
{"title" : "Form Input", "component" : "bFormInput", "components" : ["bFormInputStatic"], "jsfiddle" : "j08b7c4o"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "component": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "jsfiddle": {"type": "string"}}, "required": ["title", "component", "components", "jsfiddle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": {"...
{"nom" : "Neuvy-Bouin", "circ" : "1\u00e8re circonscription", "dpt" : "Deux-S\u00e8vres", "inscrits" : 349, "abs" : 182, "votants" : 167, "blancs" : 6, "nuls" : 2, "exp" : 159, "res" : [{"nuance" : "REM", "nom" : "M. Guillaume CHICHE", "voix" : 67}, {"nuance" : "FI", "nom" : "Mme Nathalie SEGUIN", "voix" : 26}, {"nuanc...
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"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"ngx-bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type"...
{"requires" : true, "lockfileVersion" : 1, "dependencies" : {"ngx-bootstrap" : {"version" : "5.6.1", "resolved" : "https://registry.npmjs.org/ngx-bootstrap/-/ngx-bootstrap-5.6.1.tgz", "integrity" : "sha512-8fDs3VaaWgKpupakPKS0QaUc+1E/JMBGJDxUUODjyIkLtFr1A8vH4cjXiV3AfrPvhK27GH0oyTPyKWKcCjEtVg=="}, "web-animations-js" : ...
json_instruct
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"ngx-bootstrap": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["v...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "req...
{"h" : [{"d" : [{"e" : ["\ufff9`Marasras~ `i~ `sasera~.\ufffa\ufffb\u6492\u843d\u5728\u571f\u5730\u4e0a\u3002"], "f" : "\u571f\u5730\u4e0a\u3002"}]}], "tag" : "[\u758a 1]", "stem" : "sera", "t" : "sasera"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "p...
{"hash" : "0x7c56bdccf1dd1b2c12973a265e473392ec0906383326719ac4d3c913999555ec", "parentHash" : "0x3301aaa154be839b5cb505d4d9855e8ef5a7282493b4bf1492bfdab2082855ff", "number" : 46784, "timestamp" : 1438929082, "nonce" : "0xcec8348b24e1fd62", "difficulty" : 1460309526756, "gasLimit" : {"_hex" : "0x787a"}, "gasUsed" : {"_...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "node_args": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "node_args", "args"], "$schema": "ht...
{"name" : "cortex-search-server", "script" : "bin/server.js", "node_args" : "--harmony", "args" : ["-c", "config.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "node_args": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "node_args", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code...
{"type" : "Feature", "properties" : {"name" : "Wayne County", "name_long" : "Wayne County, NC", "fips" : "37191", "state_code_int" : 37, "state_code_postal" : "NC", "state_code_iso" : "US-NC", "county_code" : 191, "population" : 123131, "countrylevel_id" : "fips:37191", "census_data" : {"COUNTYNS" : "01026128", "AFFGEO...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required...
{"data" : {"type" : "devices-module/device-connector", "id" : "7c055b2b-60c3-4017-93db-e9478d8aa662", "attributes" : {"username" : "newusername"}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"username": {"type": "string"}}, "required": ["username"]}}, "required": ["type", "id", "attributes"]}}, "required": ["data"], "$schema": "htt...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type"...
{"name" : "grouping2js", "version" : "1.0.0", "description" : "Transforms the xml grouping in an s3d file into a JavaScript", "main" : "index.js", "private" : true, "scripts" : {"test" : "node test/test-nodejs.js"}, "author" : "john.pywtorak@sri.com", "licenses" : {"type" : "Copyright 2015, SRI International"}, "depend...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "lice...
Construct a JSON document that adheres to this schema specification: {"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": {"...
{"nom" : "Biard", "dpt" : "Vienne", "inscrits" : 1182, "abs" : 182, "votants" : 1000, "blancs" : 12, "nuls" : 3, "exp" : 985, "res" : [{"panneau" : "3", "voix" : 296}, {"panneau" : "9", "voix" : 229}, {"panneau" : "11", "voix" : 172}, {"panneau" : "2", "voix" : 128}, {"panneau" : "4", "voix" : 69}, {"panneau" : "1", "v...
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"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "children": {"type": "array", "it...
{"type" : "wiki", "title" : "\ub300\ubb38\uc790\ub97c upper case, \uc18c\ubb38\uc790\ub97c lower case\ub77c \ubd80\ub974\ub294 \uc774\uc720", "summary" : "\uc778\uc1c4 \uc2dd\uc790\uacf5\ub4e4\uc774 \uc18c\ubb38\uc790 \ud65c\uc790\ub97c \uc544\ub798\ucabd \uc0c1\uc790\uc5d0 \ub2f4\uace0, \ub300\ubb38\uc790 \ud65c\uc790...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "parent": {"type": "string"}, "url": {"type": "string"}, "updated": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["type", "title", "summary", "parent", "url", "update...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.287234, 38.742599], [-77.280485, 38.749792], [-77.277056, 38.755453], [-77.272383, 38.751946], [-77.266644, 38.751419], [-77.260268, 38.748924], [-77.255438, 38.745702], [-77.250798, 38.745336], [-77.250746, 38.742875...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d122-162", "text" : "ACTIVE MEMBERS\nCall\nLetters\nCity\nFrequency\nPower\nLicensee\nContact Person\nAddress\nPhone\nOKLAHOMA (Region V)\nWNAD (AM) * 640 kc\n(Norman) 1 kw\nUniversity of Oklahoma\nHugh Mix. Dir.\nEducational Broadcasting\nServices\nNorman, Oklahoma\nJefferson 4-6900, Ext. 424\nWNAD-FM *\n90.9...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["rpc-multistream", "tcp-log-server"]
json_instruct
{"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": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "...
{"userId" : 6215, "cartId" : "87b2204e-cb39-4515-8424-f19943595056", "preferredProducts" : [1417, 722, 4660, 3395, 4081], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema....
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"...
{"id" : 4106, "children" : [{"id" : 4107, "name" : "Saginaw Correctional Facility -- theater workshops"}], "name" : "Saginaw Correctional Facility"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema....
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"typ...
{"name" : "jonathan-palma-website", "private" : true, "description" : "Jonathan Palma's personal website", "version" : "0.1.1", "license" : "MIT", "scripts" : {"build" : "gatsby build", "develop" : "gatsby develop", "format" : "prettier --write src/**/*.{js,jsx}", "serve" : "gatsby serve"}, "dependencies" : {"dotenv" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "develop": {"type": "string"}, "format": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d17-59", "text" : "June 6,1955\nSegreteria General\u00a9 \"Prix Italia\"*,\n% Bence. Nazlonale Del LaVoro-\nPlliale di Korea,\nVia Blssolati,\nHome, Italy.\nDear Sir:\nWe have requested the Chase National Bank of New York\nto forward to you 1,588 Swiss francs, these to be placed\nto your credit at the Banca Na...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ZSchema-browser-min.js" : "sha256-nUHBKnN85cNmwnPUCRp9SJhxEQxbUA8FV83xfAnrcDg=", "ZSchema-browser.js" : "sha256-TRupDOJQt6PX4bJ7VYMk3mMd3e7gK38JFM049lAH5Sg="}
json_instruct
{"type": "object", "properties": {"ZSchema-browser-min.js": {"type": "string"}, "ZSchema-browser.js": {"type": "string"}}, "required": ["ZSchema-browser-min.js", "ZSchema-browser.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinat...
{"coordinate" : {"coordinate" : {"x" : 1, "y" : 27}, "floor" : "floor_0"}, "identification" : 39, "route" : [{"coordinate" : {"x" : 1, "y" : 27}, "floor" : "floor_0"}, {"coordinate" : {"x" : 1, "y" : 26}, "floor" : "floor_0"}, {"coordinate" : {"x" : 1, "y" : 25}, "floor" : "floor_0"}, {"coordinate" : {"x" : 0, "y" : 24...
json_instruct
{"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"coordinate": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "floor": {"type": "string"}}, "required": ["coordinate", "floor"]}, "identification": {"type": "integer"}, "rout...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "filename": {"...
{"languages" : ["C++", "Java", "Javascript", "Python"], "instructions" : [{"name" : "Hello World", "description" : "Classic example of programming: Print the text \"Hello World\"", "filename" : "hello-world", "languages" : ["C++", "Java", "Javascript", "Python"]}, {"name" : "Primitive data types", "description" : "Decl...
json_instruct
{"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}, "languages": {"type": "array", "items": {"type": "str...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "source": {"type":...
{"type" : "Feature", "id" : "way/64971864", "properties" : {"amenity" : "marketplace", "building" : "yes", "name" : "March\u00e9 Central", "source" : "cadastre-dgi-fr source : Direction G\u00e9n\u00e9rale des Imp\u00f4ts - Cadastre;mise \u00e0 jour : 2010", "wikidata" : "Q3289847", "wikipedia" : "fr:March\u00e9 couvert...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}, "wikidata": {"type": "string"}, "wikipedia": {"type": "string"}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "st...
{"files" : {"main.css" : "/static/css/main.df7e26cb.chunk.css", "main.js" : "/static/js/main.52cec099.chunk.js", "main.js.map" : "/static/js/main.52cec099.chunk.js.map", "runtime~main.js" : "/static/js/runtime~main.a8a9905a.js", "runtime~main.js.map" : "/static/js/runtime~main.a8a9905a.js.map", "static/css/2.400796ec.c...
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/css/2.400796ec.chunk.css": {"type": "string"}, "static/...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "prettyplanks:block/pink_pretty_stairs"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"SERVICES_TABLE": {"type": "string"}, "REGION": {"type": "string"}}, "required": ["SERVICES_TABLE", "REGION"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"SERVICES_TABLE" : "{inst_stack_prefix}_services_dev", "REGION" : "{conf-region}"}
json_instruct
{"type": "object", "properties": {"SERVICES_TABLE": {"type": "string"}, "REGION": {"type": "string"}}, "required": ["SERVICES_TABLE", "REGION"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t...
{"name" : "a3-express", "version" : "1.0.0", "description" : "Creating 'search' feature using Express and basic templating to 'list' application", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Jesse Hernandez", "license" : "ISC", "dependencies" : {"body-parser" :...
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.744534, 52.705383]}, "properties" : {"site-address" : "Car Park And Premises, Old Coleham, Shrewsbury, SY3 7BP", "minimum-net-dwellings" : "43", "maximum-net-dwellings" : "43", "hectares" : "0.29", "site" : "17/01697/OUT", "site-plan-url" : "https...
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": {"site-address": {"type": "string"}...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "integer"}, "email": ...
[{"id" : "1", "guid" : "63faa34f-7b7b-4bdd-bace-2df50da08e79", "isActive" : true, "name" : "Robinson Holt", "username" : "admin", "password" : 123, "email" : "bethholt@comvey.com"}, {"id" : "2", "guid" : "3e917701-0fa9-4565-b9d3-1a23e6badf76", "isActive" : false, "name" : "Nancy Terrell", "username" : "client", "passwo...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "name": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "integer"}, "email": {"type": "string"}}, "required": ["id", "guid", "isActive", "name", "u...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "beak", "definition" : "1. (Zo\u00f6l.) (a) The bill or nib of a bird, consisting of a horny sheath, covering the jaws. The form varied much according to the food and habits of the bird, and is largely used in the classification of birds. (b) A similar bill in other animals, as the turtles. (c) The long proje...
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": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"t...
{"\u5de5\u5ee0\u540d\u7a31" : "\u665f\u660c\u6a5f\u68b0\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99650544", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06210000122914", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u57d4\u5fc3\u9109\u74e6\u5357\u6751\u4e09\u6c11\u8def...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["chrobject"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"angular-ie-compat.js": {"type": "string"}, "angular-ie-compat.min.js": {"type": "string"}, "angular-mocks.js": {"type": "string"}, "angular-mocks.min.js": {"type": "string"}, "angular-scenario.js": {"type": "string"}, "angu...
{"angular-ie-compat.js" : "sha256-SWrl3P2ygJou5pMrQf1D/1ZL3K0/ulK0HAvdSWtxx5g=", "angular-ie-compat.min.js" : "sha256-nacr3AWQU6Fire4ezl7v+q8yrRYNbMfEqzC6IHKaIBM=", "angular-mocks.js" : "sha256-ARbgTw0QA91PCPLUqENgQxC3aXeva+4KNK+BbrdjJhA=", "angular-mocks.min.js" : "sha256-jsTjTZtw2QljAQBCFggsQy/QHoBCeOQ8PivW/rkjzfA=",...
json_instruct
{"type": "object", "properties": {"angular-ie-compat.js": {"type": "string"}, "angular-ie-compat.min.js": {"type": "string"}, "angular-mocks.js": {"type": "string"}, "angular-mocks.min.js": {"type": "string"}, "angular-scenario.js": {"type": "string"}, "angular-scenario.min.js": {"type": "string"}, "angular.js": {"type...
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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}...
{"name" : "mern-simplesetup", "version" : "1.0.0", "description" : "A simple and from scratch setup of MERN (MongoDB, ExpressJS, ReactJS and NodeJS) setup environment.", "main" : "template.js", "repository" : "git@github.com:ehimare369/mern-simple-setup.git", "author" : "Ehimare Okosun <ehimare369@gmail.com>", "license...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "p...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_name": {"type": "string"}, "_direction": {"type": "string"}, "$1 was deleted.": {"type": "string"}, "Add": {"type": "string"}, "Add a new $1": {"type": "string"}, "Admin": {"type": "string"}, "Are you sure you want to delete $1...
{"_name" : "\u05e2\u05d1\u05e8\u05d9\u05ea", "_direction" : "rtl", "$1 was deleted." : "$1 \u05e0\u05de\u05d7\u05e7/\u05d4.", "Add" : "\u05d4\u05d5\u05e1\u05e4\u05d4", "Add a new $1" : "\u05d9\u05e6\u05d9\u05e8\u05ea $1", "Admin" : "\u05e0\u05d9\u05d4\u05d5\u05dc", "Are you sure you want to delete $1?" : "\u05dc\u05de\...
json_instruct
{"type": "object", "properties": {"_name": {"type": "string"}, "_direction": {"type": "string"}, "$1 was deleted.": {"type": "string"}, "Add": {"type": "string"}, "Add a new $1": {"type": "string"}, "Admin": {"type": "string"}, "Are you sure you want to delete $1?": {"type": "string"}, "Delete": {"type": "string"}, "De...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "st...
{"responses" : [{"labelAnnotations" : [{"mid" : "/m/01bqvp", "description" : "Sky", "score" : 0.99341238, "topicality" : 0.99341238}, {"mid" : "/m/0csby", "description" : "Cloud", "score" : 0.98200577, "topicality" : 0.98200577}, {"mid" : "/m/05h0n", "description" : "Nature", "score" : 0.96338564, "topicality" : 0.9633...
json_instruct
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"labelAnnotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "description": {"type": "string"}, "score": {"type": "number"}, "topicality": {"type": "number"}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"news-item": {"type": "string"}}, "required": ["news-item"]}}, "required...
{"navigationBarTitleText" : "\u65b0\u95fb\u5feb\u8baf", "enablePullDownRefresh" : true, "usingComponents" : {"news-item" : "/components/news-item"}}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"news-item": {"type": "string"}}, "required": ["news-item"]}}, "required": ["navigationBarTitleText", "enablePullDownRefresh", "usingComponen...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["stashy"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "130705102201", "text" : "\u4e2d\u5d1e\u6751\u6751\u59d4\u4f1a"}, {"id" : "130705102202", "text" : "\u5206\u6c34\u53e3\u6751\u59d4\u4f1a"}, {"id" : "130705102203", "text" : "\u8f9b\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130705102204", "text" : "\u738b\u5e84\u5b50\u6751\u59d4\u4f1a"}, {"id" : "130705102205",...
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "...
[{"label" : "Picture frame", "normalizedVertices" : [{"x" : 0.024352955, "y" : 0.047882363}, {"x" : 0.9897647, "y" : 0.047882363}, {"x" : 0.9897647, "y" : 0.9568235}, {"x" : 0.024352955, "y" : 0.9568235}], "score" : 0.6035106}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"ty...
{"id" : 1422, "category" : {"name" : "Exploration", "subset" : "Duty"}, "help" : {"de" : "Auf einer Expedition zum Diadem eine Bewertung von 400 oder mehr erreicht.", "en" : "Receive an evaluation of 400 or better on an exploratory mission to the Diadem.", "fr" : "Atteindre une \u00e9valuation de 400 dans Le Diad\u00e8...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required":...
{"corpus" : ["\u76ee\u524d", "\u5df2", "\u63ed\u9732", "\u5e74\u5831", "\u7684", "\u91d1\u63a7", "\u4e2d", "\u4ee5", "\u4e2d\u4fe1", "\u91d1\u63a7", "\u7e3d\u7d93\u7406", "\u5433\u4e00\u63c6", "\u5e74\u85aa", "1\u5104", "\u4ee5\u4e0a", "\u6700", "\u9ad8", "\u958b\u767c\u91d1", "\u5e74", "\u5831\u5230", "23\u65e5", "\u7...
json_instruct
{"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Alfaco, Naga City, Cebu, Central Visayas (Region VII), PH", "locale" : "ph.central-visayas-region-vii.cebu.naga-city.alfaco", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "7", "region_refe...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"require": {"type": "object", "properties": {"nexmo/client": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["nexmo/client", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-s...
{"require" : {"nexmo/client" : "^1.6", "vlucas/phpdotenv" : "^2.5"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"nexmo/client": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["nexmo/client", "vlucas/phpdotenv"]}}, "required": ["require"], "$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": [...
{"name" : "bot", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"@discordjs/form-data" : "^3.0.1", "discord-anti-spam" : "2.5.0", "discord.js" : "^13.0.1", "express" : "^4.17.1", "flatt...
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {...
{"ref" : {"min" : 111.9739761352539, "max" : 313.2637023925781, "mean" : 263.66849094345207}, "ref_regrid" : {"min" : 111.9739761352539, "max" : 313.2637023925781, "mean" : 263.66849094345207, "std" : 31.61517472949274}, "test" : {"min" : 111.41442108154297, "max" : 314.9623107910156, "mean" : 262.3190268153721}, "test...
json_instruct
{"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "numbe...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "510723208001", "text" : "\u79c0\u5c71\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208201", "text" : "\u767d\u77f3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208202", "text" : "\u94c1\u57ad\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510723208203", "text" : "\u89c9\u6797\u6751\u6c11\u59d4\u5...
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object",...
{"name" : "sep09", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"@metamask/detect-provider" : "^1.2.0", "body-parser" : "^1.19.0", "cookie-parser" : "~1.4.4", "debug" : "~2.6.9", "ejs" : "~2.6.1", "express" : "~4.16.1", "express-fileupload" : "^1.2.0", "express-session...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"@metamask/detect-provider": {"type": "string"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "i...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Bolinao-Culalabo, Santo Tomas, Isabela, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.isabela.santo-tomas.bolinao-culalabo", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "regi...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["520303001000", "\u4e0a\u6d77\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303002000", "\u6d17\u9a6c\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303003000", "\u5927\u8fde\u8def\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520303004000", "\u9ad8\u6865\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["520...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"ty...
{"station" : [{"pref_cd" : 24, "line_cd" : 31027, "line_name" : "\u8fd1\u9244\u540d\u53e4\u5c4b\u7dda", "station_cd" : 3102725, "station_g_cd" : 3102725, "station_name" : "\u5317\u6960", "lon" : 136.624797, "lat" : 34.916197}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009200": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"},...
{"type" : "Topology", "objects" : {"E01009200" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00046654", "LAD11CD" : "E08000025"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009200": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sn12.19:1.1": {"type": "string"}, "sn12.19:2.1": {"type": "string"}, "sn12.19:3.1": {"type": "string"}, "sn12.19:4.1": {"type": "string"}, "sn12.19:5.1": {"type": "string"}, "sn12.19:6.1": {"type": "string"}}, "requi...
{"sn12.19:1.1" : "cck16.23, csp1ed12.263, csp2ed12.263, dr16.30, ms12S2_112, msdiv19, pts-vp-pli2.24, sc1, vri24.23", "sn12.19:2.1" : "ms12S2_113, ndp13.23, sc2", "sn12.19:3.1" : "ms12S2_114, sc3, sya16.29", "sn12.19:4.1" : "ms12S2_115, sc4", "sn12.19:5.1" : "dr16.31, ms12S2_116, sc5", "sn12.19:6.1" : "bj14.40, cck16.2...
json_instruct
{"type": "object", "properties": {"sn12.19:1.1": {"type": "string"}, "sn12.19:2.1": {"type": "string"}, "sn12.19:3.1": {"type": "string"}, "sn12.19:4.1": {"type": "string"}, "sn12.19:5.1": {"type": "string"}, "sn12.19:6.1": {"type": "string"}}, "required": ["sn12.19:1.1", "sn12.19:2.1", "sn12.19:3.1", "sn12.19:4.1", "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "7310021001", "nama" : "Kalukuang"}, {"id" : "7310022002", "nama" : "Pammas"}, {"id" : "7310022003", "nama" : "Sabaru"}, {"id" : "7310022004", "nama" : "Kanyurang"}, {"id" : "7310022005", "nama" : "Doang Doangan Lompo"}, {"id" : "7310022006", "nama" : "Mara Sende"}, {"id" : "7310022007", "nama" : "Dewakang"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pr...
{"examples" : [{"translation" : "\u4ed6\u70b9\u5934\u8868\u793a\u613f\u610f\u3002", "first" : "He ", "last" : " his willingness with a nod of his head."}, {"translation" : "\u7814\u7a76\u8868\u660e\uff0c\u7537\u4eba\u6bd4\u5973\u4eba\u66f4\u5bb9\u6613\u6212\u70df\u3002", "first" : "Research ", "last" : " that men find ...
json_instruct
{"type": "object", "properties": {"examples": {"type": "array", "items": {"type": "object", "properties": {"translation": {"type": "string"}, "first": {"type": "string"}, "last": {"type": "string"}}, "required": ["translation", "first", "last"]}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "objec...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type"...
{"name" : "coachschd", "version" : "0.1.0", "description" : "REST API to fetch coach schedules and book and appoinment", "main" : "server.js", "scripts" : {"start" : "node server.js", "test" : "cross-env NODE_ENV=test jest --testTimeout=10000", "dev" : "nodemon server.js"}, "repository" : {"type" : "git", "url" : "git+...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "test", "dev...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Radio Est\u00e2ncia de Jacutinga", "src" : "http://server3.webradios.com.br:9454/;?t=1526267523"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin...
{"schema_version" : "1.2.0", "id" : "GHSA-r6rq-vwqp-j4p3", "modified" : "2022-03-25T00:00:47Z", "published" : "2022-03-19T00:01:00Z", "aliases" : ["CVE-2021-39046"], "details" : "IBM Business Automation Workflow 18.0, 19.0, 20.0, and 21.0 and IBM Business Process Manager 8.5 and 8.6 stores user credentials in plain cle...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Cadastro\\Conexao\\": {"type": "string"}, "Cadastro\\Produto\\": {"type": "string"}, "Cadastro\\Decorator\\": {"type": "s...
{"autoload" : {"psr-4" : {"Cadastro\\Conexao\\" : "lib/", "Cadastro\\Produto\\" : "lib/", "Cadastro\\Decorator\\" : "lib/"}}}
json_instruct
{"type": "object", "properties": {"autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Cadastro\\Conexao\\": {"type": "string"}, "Cadastro\\Produto\\": {"type": "string"}, "Cadastro\\Decorator\\": {"type": "string"}}, "required": ["Cadastro\\Conexao\\", "Cadastro\\Produto\\", "Cadas...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"ty...
[{"label" : "Animal", "normalizedVertices" : [{"x" : 0.40405884, "y" : 0.12403406}, {"x" : 0.5752353, "y" : 0.12403406}, {"x" : 0.5752353, "y" : 0.26979876}, {"x" : 0.40405884, "y" : 0.26979876}], "score" : 0.5478354}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"db": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "name": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port...
{"db" : {"host" : "DB_HOST", "port" : "DB_PORT", "name" : "DB_NAME", "user" : "DB_USER", "password" : "DB_PASSWORD"}, "service" : {"ip" : "SERVICE_IP", "port" : "SERVICE_PORT"}}
json_instruct
{"type": "object", "properties": {"db": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "name": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port", "name", "user", "password"]}, "service": {"type": "object", "properties"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009020": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "stri...
{"type" : "Topology", "objects" : {"E01009020" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00045758", "LAD11CD" : "E08000025"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009020": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"},...
{"name" : "blau-syntax", "theme" : "syntax", "version" : "2.2.1", "description" : "Medium contrast theme. Inspired by the colours of FC Barcelona", "keywords" : ["syntax", "blue", "red", "light", "barcelona"], "repository" : "https://github.com/protesilaos/blau-light-syntax", "license" : "MIT", "engines" : {"atom" : ">...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "propert...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media...
{"published" : "2015-09-01T17:57:34Z", "media-type" : "News", "title" : "Serbia says it is willing to host refugees", "id" : "08fa52e7-359e-42c6-bc79-ebb50a34e98e", "content" : "Source: Euronews - 6 days ago \nMerkel says Germany won't tolerate xenophobia\u00a0 01:32 German Chancellor Angela Merkel said on Wednesday (A...
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["command", "directory", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"command" : "cc -c -g -o ./build/parse.o ./src/parse.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/parse.c"}, {"command" : "cc -c -g -o ./build/jpk.o ./src/jpk.c", "directory" : "/home/fulgjon/Dokumenty/Tak", "file" : "/home/fulgjon/Dokumenty/Tak/src/jpk.c"}, {"command" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"command": {"type": "string"}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["command", "directory", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"MasterURL": {"type": "string"}, "KubeConfigPath": {"type": "string"}, "HubHost": {"type": "string"}, "HubUser": {"type": "string"}, "HubUserPassword": {"type": "string"}, "HubPort": {"type": "integer"}, "HubPasswor...
{"MasterURL" : "https://192.168.99.100:8443", "KubeConfigPath" : "/Users/mfenwick/.kube/config", "HubHost" : "the-hub-hub.54.67.89.98.xip.io", "HubUser" : "sysadmin", "HubUserPassword" : "blackduck", "HubPort" : 443, "HubPasswordSecretName" : "hub-password", "HubPasswordSecretKey" : "hub-user-password", "ScannerMemory"...
json_instruct
{"type": "object", "properties": {"MasterURL": {"type": "string"}, "KubeConfigPath": {"type": "string"}, "HubHost": {"type": "string"}, "HubUser": {"type": "string"}, "HubUserPassword": {"type": "string"}, "HubPort": {"type": "integer"}, "HubPasswordSecretName": {"type": "string"}, "HubPasswordSecretKey": {"type": "str...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"platforms": {"type": "object", "properties": {"platform": {"type": "array", "items": {"type": "object", "properties": {"vendor": {"type": "string"}, "name": {"type": "string"}, "software-version": {"type": "string"}, "software...
{"platforms" : {"platform" : [{"vendor" : "huawei", "name" : "ne8000-m8", "software-version" : "V800R013C00", "software-flavor" : "ALL", "netconf-capabilities" : ["urn:ietf:params:xml:ns:netconf:base:1.0", "urn:ietf:params:xml:ns:netconf:base:1.1", "urn:ietf:params:netconf:capability:writable-running:1.0", "urn:ietf:pa...
json_instruct
{"type": "object", "properties": {"platforms": {"type": "object", "properties": {"platform": {"type": "array", "items": {"type": "object", "properties": {"vendor": {"type": "string"}, "name": {"type": "string"}, "software-version": {"type": "string"}, "software-flavor": {"type": "string"}, "netconf-capabilities": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"response": {"type": "object", "properties": {"language": {"type": "string"}, "languageIsReliable": {"type": "boolean"}, "topics": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}...
{"response" : {"language" : "eng", "languageIsReliable" : true, "topics" : [{"id" : 0, "label" : "Epidermal growth factor receptor", "wikiLink" : "http://en.wikipedia.org/Epidermal_growth_factor_receptor", "score" : 0.132226}], "entities" : [{"id" : 0, "matchingTokens" : [3], "entityId" : "Knock-down kit", "confidenceS...
json_instruct
{"type": "object", "properties": {"response": {"type": "object", "properties": {"language": {"type": "string"}, "languageIsReliable": {"type": "boolean"}, "topics": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "label": {"type": "string"}, "wikiLink": {"type": "string"}, "score...
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"}, "test": {"type": "s...
{"name" : "basic-express-server", "version" : "1.0.0", "description" : "\u251c\u2500\u2500 .gitignore \u251c\u2500\u2500 .eslintrc.json \u251c\u2500\u2500 __tests__ \u2502 \u251c\u2500\u2500 server.test.js \u2502 \u251c\u2500\u2500 validator.test.js \u2502 \u251c\u2500\u2500 logger.test.js \u251c\u2500\u2500 src ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-watch": {"type": "string"}}, "required": ["start", "test...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1973, 19], [1974, 11], [1975, 7], [1976, 9], [1978, 8], [1994, 7], [2003, 6], [2008, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"lerna": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["lerna", "packages", "version"], "$schema": "http://json-schema.org/draft-07/...
{"lerna" : "3.10.8", "packages" : ["babel-plugin-wasm", "use-wasm", "emscripten"], "version" : "0.0.2"}
json_instruct
{"type": "object", "properties": {"lerna": {"type": "string"}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["lerna", "packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "...
{"name" : "techtalk-integration-tests-postman", "version" : "1.0.0", "description" : "Small test api to demonstrate integration tests with postman", "main" : "app.js", "scripts" : {"start" : "nodemon", "test" : "newman -c integration-tests.json", "testWithData" : "newman -c integration-tests-with-data.json -d test-data...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "testWithData": {"type": "string"}}, "required": ["start", "te...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "strin...
{"web" : [{"value" : ["\u623f\u8f66", "\u8c6a\u534e\u8f7f\u8f66", "\u67e0\u6aac"], "key" : "limo"}, {"value" : ["\u660e\u661f\u9ad8\u7ea7\u8f7f\u8f66"], "key" : "Superstar Limo"}, {"value" : ["\u804c\u4e1a"], "key" : "limo rental"}], "query" : "limo", "translation" : ["\u8c6a\u534e\u8f7f\u8f66"], "errorCode" : "0", "di...
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}}, "required": ["symbol", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "CAT", "address" : "0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}}, "required": ["symbol", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "imagemap_desc": {"type": "string"}, "imagemap_no_image": {"type": "string"}, "imagemap_invali...
{"@metadata" : {"authors" : ["Pyt"]}, "imagemap_desc" : "Moaket d\u00e4t muugelk ferwies-sensitive Grafike ''(image maps)'' tou moakjen m\u00e4d H\u00e4lpe fon ju <code>&lt;imagemap&gt;</code>-Syntax", "imagemap_no_image" : "Failer: In ju eerste Riege mout ne Bielde ounroat w\u00e4ide", "imagemap_invalid_image" : "Fail...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "imagemap_desc": {"type": "string"}, "imagemap_no_image": {"type": "string"}, "imagemap_invalid_image": {"type": "string"}, "imagemap_bad_image": {"type"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "event": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "game": {"type": "string"}, "players": ...
{"id" : "2012-06-23-06-02", "createdAt" : "2012-06-24T02:00:00.000Z", "updatedAt" : "2012-06-24T02:00:00.000Z", "event" : "West Coast 18xx Tournament, 2012", "description" : "1830", "location" : "Portland Oregon", "game" : "18xx", "players" : ["steve-yu", "jonathan-work", "jonathan-anderson", "allen-stancius"], "result...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "event": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "game": {"type": "string"}, "players": {"type": "array", "items": {"type": "string"}}, "results": ...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1970, 5], [1971, 5], [1973, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "ite...
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease and flour two 9 x 5 inch loaf pans.", "Beat together eggs, sugar, and oil. Blend in applesauce, and then sour cream or buttermilk. Mix in flour, baking powder, soda, and cinnamon. Stir in raisins. Pour batter into prepared pans.", "Bake for 80 m...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "middle": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "middle", "top"]}}, "required": ["par...
{"parent" : "block/door_bottom", "textures" : {"bottom" : "dramaticdoors:blocks/tall_andesite_door_bottom", "middle" : "dramaticdoors:blocks/tall_andesite_door_middle", "top" : "dramaticdoors:blocks/tall_andesite_door_top"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"bottom": {"type": "string"}, "middle": {"type": "string"}, "top": {"type": "string"}}, "required": ["bottom", "middle", "top"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-75.320089, 39.733284], [-75.319807, 39.739524], [-75.31552, 39.745804], [-75.316736, 39.755559], [-75.307239, 39.754334], [-75.307147, 39.752955], [-75.304751, 39.750631], [-75.303072, 39.751177], [-75.302972, 39.749139]...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "...
{"from" : "Solon, IA USA", "name" : "Solon Team #1", "num" : 367, "comps" : [{"name" : "IA FTC Qualifying Tournament", "place" : "Linn-Mar High School", "date" : "03-Nov-12", "highest" : 10, "QP" : 6, "RP" : 12, "matches" : 6}, {"name" : "IA FTC Qualifying Tournament", "place" : "Solon Qualifier", "date" : "01-Dec-12"...
json_instruct
{"type": "object", "properties": {"from": {"type": "string"}, "name": {"type": "string"}, "num": {"type": "integer"}, "comps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "place": {"type": "string"}, "date": {"type": "string"}, "highest": {"type": "integer"}, "QP": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "req...
{"name" : "devhouse", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"start" : "node ./src/routes/server.js", "dev" : "nodemon ./src/routes/server.js"}, "devDependencies" : {"eslint" : "^7.0.0", "nodemon" : "^2.0.3"}, "dependencies" : {"cors" : "^2.8.5", "csvtojson" : "^2.0.10", "dotenv" : "^...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "devDependencies": {"type": "object...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "readme": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"},...
{"name" : "ng2-loading-pane", "version" : "1.3.0", "description" : "A simple loading pane implementation for angular 5 based on promises.", "readme" : "readme.md", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "repository" : "https://github.com/tristanmenzel/ng2-loading-pane.git", "scripts" : {"package" : "n...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "readme": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"package": {"type": "str...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type"...
{"h" : [{"d" : [{"s" : ["`sapita'eselaw~"], "e" : ["\ufff9`Sapitiselaw~ `ako~ `to~ `demak~ `ira~.\ufffa\ufffb\u6211\u5e0c\u671b\u6d1e\u5bdf\u4ed6\u7684\u884c\u70ba\u3002"], "f" : "\u60f3\u7a7f\u900f\u3001\u60f3\u6d1e\u5bdf\u3002"}]}], "stem" : "tisel", "t" : "sapitiselaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e",...
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"}, "test": {"type": "s...
{"name" : "btcpermabullbot", "version" : "0.0.1", "description" : "A twitter bot that's bullish on Bitcoin.", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "./node_modules/.bin/mocha --reporter spec", "lint" : "node_modules/.bin/goodparts *.js src/**", "reply" : "node reply.js"}, "keywords" : ["...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "reply": {"type": "string"}}, "req...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"require": {"type": "object", "properties": {"google/apiclient-services": {"type": "string"}, "google/apiclient": {"type": "string"}}, "required": ["google/apiclient-services", "google/apiclient"]}}, "required": ["re...
{"require" : {"google/apiclient-services" : "dev-master as 0.122", "google/apiclient" : "^2.4"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"google/apiclient-services": {"type": "string"}, "google/apiclient": {"type": "string"}}, "required": ["google/apiclient-services", "google/apiclient"]}}, "required": ["require"], "$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"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "inlined-build": {...
{"name" : "my-vue-app", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "vite build", "preview" : "vite build && vite preview", "inlined-build" : "vite build --config vite.config.inlined.ts", "inlined-preview" : "vite build --config vite.config.inlined.ts && start ./dist/index.html"}, "dependencies" : {"pri...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}, "inlined-build": {"type": "string"}, "inlined-preview": {"type": "string"}}, "required": ["dev"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "re...
{"h" : [{"d" : [{"e" : ["\ufff9`O~ `so'elin~`ay~ `a~ `demak~ `konini~.\ufffa1. This thing really happened. 2. This is the way that activity is / the nature of the activity.\ufffb1. \u9019\u662f\u771f\u5be6\u7684\u4e8b\u60c5 2. \u9019\u500b\u6d3b\u52d5\u662f\u81ea\u7136\u6d3b\u8e8d\u7684\u52d5\u4f5c (FIXME)"], "f" : "...
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "v...
{"description" : "DjangoCon US 2017 - Lightning Talks Day 2 by Various Speakers\n\n00:00 Filipe Ximenes\n05:42 Paul Bailey \n10:53 Richard Latimer \n14:30 ??? \n19:14 James Bennett \n24:11 Wayne Merry \n28:54 Tim Allen\n34:23 Vic Yang \n35:26 Dan Dietz", "language" : "eng", "recorded" : "2017-08-14", "speakers" : ["Fi...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "prop...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors":...
{"title" : "Inferring traffic shaping and policy parameters using end host measurements.", "fields" : ["internet access", "planetlab", "bandwidth allocation", "internet traffic", "traffic shaping"], "abstract" : "The increasing adoption of high speed Internet connectivity in homes has led to the development of bandwidt...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "country": {"type": "string"}, "name": {"type": "string"}}, "required": ["@context", "@id", "country", "name"], "$schema": "http://json-schema.org/draft-07/s...
{"@context" : "https://api.eurocris.org/dris/contexts/orgunits.jsonld", "@id" : "https://api.eurocris.org/dris/orgunits/ou00451", "country" : "https://api.eurocris.org/dris/vocabs/countries/country00779", "name" : "Free University of Amsterdam"}
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "country": {"type": "string"}, "name": {"type": "string"}}, "required": ["@context", "@id", "country", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "soc": {"type": "object", "properties": {"fc": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}}, "required": ["fc"]}}, "required":...
{"includes" : ["chips/pulpissimo/pulpissimo.json"], "soc" : {"fc" : {"core" : "ri5ky_v2_fpu_1_10_rnnext"}}}
json_instruct
{"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "soc": {"type": "object", "properties": {"fc": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}}, "required": ["fc"]}}, "required": ["includes", "soc"], "$schema": "http://json-schema.org/dr...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}...
{"upper_left_x" : 1163.3122714865044, "upper_left_y" : 0, "bottom_right_x" : 1982.587059572937, "bottom_right_y" : 1088.0100844391757, "time" : 1480178413974, "is_final" : true, "event_type" : "zoom", "op_order" : 19, "id" : 19}
json_instruct
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "object...
{"name" : "node-red-contrib-crypto-js-dynamic", "version" : "0.1.21", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"crypto-js" : {"version" : "3.3.0", "resolved" : "https://registry.npmjs.org/crypto-js/-/crypto-js-3.3.0.tgz", "integrity" : "sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "stri...