input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbr... | {"place_name" : "Pike", "state_name" : "New Hampshire", "state_abbrv" : "NH", "lat" : "44.0255", "long" : "-72.0096"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema":... | [{"name" : "MARNIC", "frequency" : 2514, "males" : "100.0 %", "females" : "0.0 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "obje... | {"city" : {"name" : "DIAMANTE DO SUL", "state" : "PR"}, "borders" : [[{"lat" : -24.92936513339413, "lng" : -52.65580172696809}, {"lat" : -24.964541174535555, "lng" : -52.59192813947203}, {"lat" : -24.9806229826645, "lng" : -52.620242306637124}, {"lat" : -25.012218019645843, "lng" : -52.60478858232716}, {"lat" : -25.037... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "nu... | {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [96.251968503937, 34.9090909090909, 0.879145368933678, 113.385826771654, 77.4981818181818, 0.693899318575859, 75.5905511811024, 79.36, 0.6308653652668, 63.748031496063, 145.454545454545, 0.4367024715757, 38.0472440944882, 210.385454545455, 0.41972... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_k... |
Generate sample JSON data that conforms to the following 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", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-93.363376, 44.746909], [-93.359171, 44.750322], [-93.359206, 44.764742], [-93.352013, 44.764897], [-93.344401, 44.768095], [-93.328722, 44.767925], [-93.328704, 44.74643], [-93.363376, 44.746909]]]}, "type" : "Feature", ... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/s... | [{"name" : "NIEL", "frequency" : 24, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$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": "null"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "i... | {"categories" : ["Algorithms", "Computer Science", "Computing", "Engineering"], "desc" : "\n", "details" : {"authors" : null, "format" : "pdf", "isbn-10" : "3319911856", "isbn-13" : "978-3319911854", "pages" : "486 pages", "publication date" : "July 22, 2018", "publisher" : "Springer", "size" : "56.85Mb"}, "img" : "htt... | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "null"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type... | {"geometry" : {"type" : "Point", "coordinates" : [-80.83, 37.79]}, "type" : "Feature", "id" : "25966", "properties" : {"other_cities" : "Grn Sphr Spgs, Meadow Bridge", "city" : "Green Sulphur Springs", "state" : "WV", "county" : "Summers 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_c... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"no-any": {"type": "null"}}, "required": ["no-any"]}}, "required": ["$schema", "extends", "rul... | {"$schema" : "http://json.schemastore.org/tslint", "extends" : ["./node_modules/@loopback/build/config/tslint.build.json"], "rules" : {"no-any" : null}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "object", "properties": {"no-any": {"type": "null"}}, "required": ["no-any"]}}, "required": ["$schema", "extends", "rules"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "s... | {"name" : "q8-prayers-api", "version" : "1.2.0", "description" : "Kuwait Prayer Times API", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/m2kio/q8-prayers-api"}, "author" : {"name" : "MYK", "email" : "m2kio@pm.me"}, "homepage" : "https://api.q8prayers.com", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "object", "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {}}, "speakers... | {"copyright_text" : "Creative Commons Attribution license (reuse allowed)", "description" : "Dmitry Trofimov - Can Rust make Python shine?\n[EuroPython 2015]\n[20 July 2015]\n[Bilbao, Euskadi, Spain]\n\nRust is a new programming language from Mozilla. It is fast, safe and\nbeautiful. It is also a very good option when ... | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"totalYes": {"type": "integer"}, "totalNo": {"type": "integer"}, "totalNa": {"type": "integer"}, "totalReceived": {"type": "integer"}, "totalProcessed": {"type": "integer"}, "totalDuplicated": {"type": "integer"}}, "r... | {"totalYes" : 0, "totalNo" : 0, "totalNa" : 0, "totalReceived" : 0, "totalProcessed" : 0, "totalDuplicated" : 0} | json_instruct | {"type": "object", "properties": {"totalYes": {"type": "integer"}, "totalNo": {"type": "integer"}, "totalNa": {"type": "integer"}, "totalReceived": {"type": "integer"}, "totalProcessed": {"type": "integer"}, "totalDuplicated": {"type": "integer"}}, "required": ["totalYes", "totalNo", "totalNa", "totalReceived", "totalP... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "tweetId": {"type": "string"}, "tweetUserName": {"type": "string"}}, "required": ["text", "created", "type", "tweetId", "twe... | {"text" : "If you think making others feel your pain is going to ease your pain, you're mistaken, and wasting effort. It just makes them tune you out. ", "created" : "Tue, 19 Sep 2017 14:21:55 GMT", "type" : "tweet", "tweetId" : "910147434000654337", "tweetUserName" : "davewiner"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "tweetId": {"type": "string"}, "tweetUserName": {"type": "string"}}, "required": ["text", "created", "type", "tweetId", "tweetUserName"], "$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"}, "visible": {"type": "boolean"}, "sort": {"type": "integer"}, "commands": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "p... | {"name" : "st", "description" : "Commands related with Devonfw St & Serverless programming", "visible" : true, "sort" : -1, "commands" : [{"name" : "init", "path" : "init.js", "description" : "Create Serverless project", "context" : "NONE", "proxyParams" : false, "parameters" : [{"name" : "path", "description" : "Path ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "visible": {"type": "boolean"}, "sort": {"type": "integer"}, "commands": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "description": {"type": "string"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"@pushcorn": {"type": "object", "properties": {"hocon-parser": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["hocon-parser"]}}, "... | {"@pushcorn" : {"hocon-parser" : {"plugins" : ["test-plugin"]}}} | json_instruct | {"type": "object", "properties": {"@pushcorn": {"type": "object", "properties": {"hocon-parser": {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"]}}, "required": ["hocon-parser"]}}, "required": ["@pushcorn"], "$schema": "http://json-schema.org/draft-07... |
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": ["star... | {"name" : "react", "version" : "0.0.1", "description" : "react", "main" : "dist/react.js", "scripts" : {"start" : "parcel ./index.html"}, "devDependencies" : {"babel-core" : "^6.26.0", "babel-plugin-transform-react-jsx" : "^6.24.1", "babel-preset-env" : "^1.6.1", "parcel-bundler" : "^1.7.1"}} | 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"]}, "devDependencies": {"type": "object", "properties": {"babel-core"... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required":... | [{"title" : "Erg\u00e4nzungen", "entries" : [{"name" : "Lehrangebot der Fakult\u00e4t Informatik", "url" : "https://tu-dresden.de/ing/informatik/studium/lehre/lehrangebotskataloge"}, {"name" : "Auditorium", "url" : "https://auditorium.inf.tu-dresden.de/"}, {"name" : "jExam", "url" : "https://jexam.inf.tu-dresden.de/de.... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["title", "entries"]}, "$schema": "http://json-schema.org/... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "properties": {"type": "object", "properties": {"apiVersion": {"type": "object", "properties": {"description": {"type": "string"}, "minLength": {"type": "integer"}, "type": {... | {"description" : "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties" : {"apiVersion" : {"description" : "The version of the schema for the object representa... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "properties": {"type": "object", "properties": {"apiVersion": {"type": "object", "properties": {"description": {"type": "string"}, "minLength": {"type": "integer"}, "type": {"type": "string"}}, "required": ["description", "minLength", "type"]}, "block... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"request": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "queryStringParameters": {"type": "object", "properties": {"q": {"type": "array", "items": {"type": "string"}}, "... | {"request" : {"method" : "GET", "path" : "/location/search", "queryStringParameters" : {"q" : ["s\u00e3o paulo"], "format" : ["json"]}}, "response" : {"statusCode" : 200, "headers" : {"Content-Type" : ["application/json"]}, "body" : "[\n {\n \"place_id\": 286306071,\n \"licence\": \"Data \u00a9 OpenStreetMap con... | json_instruct | {"type": "object", "properties": {"request": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "queryStringParameters": {"type": "object", "properties": {"q": {"type": "array", "items": {"type": "string"}}, "format": {"type": "array", "items": {"type": "string"}}}, "required": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3d786fbccfec7de50f20220a7965ac874f0416fd"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Altyn Gesichtsschild", "ShortName" : "GSchild", "Description" : "Speziell gepanzertes Gesichtsschild f\u00fcr den Altyn Helm. Erh\u00f6ht die \u00dcberlebenswahrscheinlichkeit nach Treffern durch Geschosse und Splitter."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://... | {"PRODUCT_NAME" : "Glycerine", "MANUFACTURER" : "Goodson Product Inputs", "BRANDNAME" : "Goodson", "WEIGHT" : "50ml"} | json_instruct | {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "fead4026d6004719683c5f08b2120baf22a1ea91"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": ... | {"name" : "gimmo/laravel-interkassa", "description" : "Interkassa payments for Laravel", "keywords" : ["interkassa", "laravel"], "license" : "MIT", "homepage" : "https://github.com/Gimmo/laravel-interKassa", "authors" : [{"name" : "Gimmo", "email" : "xbtc.bot@gmail.com"}], "require" : {"php" : ">=7.2.5", "laravel/frame... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "story": {"type": "string"}}, "required": ["name", "description", "story"], "$schema": "http://json-schema.org/draft-07/sche... | {"name" : "Animais H\u00edbridos Fant\u00e1sticos", "description" : ["Quando a batalha come\u00e7a, aumenta o DAN a inimigos n\u00e3o Her\u00f3is em 12% e recebe 12% de DAN reduzido por 200 seg.", "Quando a batalha come\u00e7a, aumenta o DAN a inimigos n\u00e3o Her\u00f3is em 14% e recebe 14% de DAN reduzido por 200 se... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "story": {"type": "string"}}, "required": ["name", "description", "story"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}... | {"stationId" : 1130215, "stationGroupId" : 1130215, "name" : "\u99d2\u8fbc", "lineId" : 11302, "zipCode" : "170-0003", "pref" : "\u6771\u4eac\u90fd", "city" : "\u8c4a\u5cf6\u533a", "town" : "\u99d2\u8fbc", "longitude" : 139.748053, "latitude" : 35.736825, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"DTD_z0p01_bw500_0.55<mwd<0.65_2.1e-08<mdot": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p01_bw500_0.55<mwd<0.65_2.1e-08<mdot", "arrbool"], "$schema": "h... | {"DTD_z0p01_bw500_0.55<mwd<0.65_2.1e-08<mdot" : [7.237501061957808e-05, 0.0002227034796148798, 0.0001103912602381207, 0.00017079133491001964, 0.0012502555971187633, 0.003496536509541792, 0.00394115305635763, 0.0023480927022957974, 0.0024406035735434536, 0.002911344886461135, 0.0017268952965390182, 0.002739315092411647,... | json_instruct | {"type": "object", "properties": {"DTD_z0p01_bw500_0.55<mwd<0.65_2.1e-08<mdot": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p01_bw500_0.55<mwd<0.65_2.1e-08<mdot", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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"}... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[122.5, 37.916666666666664], [122.5, 38.0], [122.625, 38.0], [122.625, 37.916666666666664], [122.5, 37.916666666666664]]]}, "properties" : {"code" : 562274, "url" : "http://madefor.github.io/0410/api/v1/562274.geojson", "view" : "https://github.co... | 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": "ob... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"ty... | {"name" : "PolkaParty", "symbol" : "POLP", "id" : "0x48592de8CdED16f6Bb56c896Fe1Affc37630889C", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/polkaparty", "market_cap_usd" : 1524326, "market_cap_rank" : 2136, "24_hr_volume_usd" : 571.22, "logoURI" : "https://raw.githubusercontent.com/poolsharks... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "integer"}, "market_cap_rank": {"type": "integer"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"... |
Construct a JSON document that adheres to this schema specification:
{"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"}... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.0, 44.583333333333336], [130.0, 44.666666666666664], [130.125, 44.666666666666664], [130.125, 44.583333333333336], [130.0, 44.583333333333336]]]}, "properties" : {"code" : 663070, "url" : "http://madefor.github.io/0410/api/v1/663070.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": "ob... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 17}, "AGE_AT_FIRST_DI... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "r... | {"latest_version" : ["0.2.1"], "meta" : {"description" : "GLWindow", "homepage" : "https://github.com/cprogrammer1994/GLWindow", "license" : "MIT"}, "versions" : {"0.2.0" : {"sha256" : "3a9e3cc00e82584720d358c553d5320c1f8ce296a16db9d8058294c1f7a1f007", "url" : "https://files.pythonhosted.org/packages/07/15/716728820a1c... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"expoServerPort": {"type": "integer"}, "packagerPort": {"type": "integer"}, "packagerPid": {"type": "integer"}, "devToolsPort": {"type": "integer"}, "expoServerNgrokUrl": {"type": "string"}, "packagerNgrokUrl": {"type": "string... | {"expoServerPort" : 19000, "packagerPort" : 19001, "packagerPid" : 18778, "devToolsPort" : 19002, "expoServerNgrokUrl" : "https://t6-rdk.abadia962.opensource.exp.direct", "packagerNgrokUrl" : "https://packager.t6-rdk.abadia962.opensource.exp.direct", "ngrokPid" : 16862} | json_instruct | {"type": "object", "properties": {"expoServerPort": {"type": "integer"}, "packagerPort": {"type": "integer"}, "packagerPid": {"type": "integer"}, "devToolsPort": {"type": "integer"}, "expoServerNgrokUrl": {"type": "string"}, "packagerNgrokUrl": {"type": "string"}, "ngrokPid": {"type": "integer"}}, "required": ["expoSer... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cursor": {"type": "string"}, "number": {"type": "string"}, "parens": {"type": "string"}, "result": {"type": "string"}, "comment": {"type": "string"}, "matched": {"type": "string"}, "function": {"type": "string"}, ... | {"cursor" : "#dda4a9", "number" : "#dda4a9", "parens" : "#9B2551", "result" : "#E2122E", "comment" : "#9a7276", "matched" : "#E2122E", "function" : "#5D284F", "operator" : "#9B0830", "variable" : "#5A475F", "scrollbar" : "#9B0830", "separator" : "#9B0830", "background" : "#0b0a18", "editorbackground" : "#0b0a18"} | json_instruct | {"type": "object", "properties": {"cursor": {"type": "string"}, "number": {"type": "string"}, "parens": {"type": "string"}, "result": {"type": "string"}, "comment": {"type": "string"}, "matched": {"type": "string"}, "function": {"type": "string"}, "operator": {"type": "string"}, "variable": {"type": "string"}, "scrollb... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"genres": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}, "label": {"type": "string"}}, "required": ["value", "label"]}}}, "required": ["genres"], "$schema": "http://... | {"genres" : [{"value" : 0, "label" : "\u0436\u0430\u043d\u0440"}, {"value" : 106, "label" : "\u041f\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0438\u044f"}, {"value" : 72, "label" : "\u0420\u0430\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439"}, {"value" : 55, "label" : "\u042d\u044... | json_instruct | {"type": "object", "properties": {"genres": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}, "label": {"type": "string"}}, "required": ["value", "label"]}}}, "required": ["genres"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1205191001", "nama" : "Batang Serangan"}, {"id" : "1205192002", "nama" : "Sei Bamban"}, {"id" : "1205192003", "nama" : "Sei Musam"}, {"id" : "1205192004", "nama" : "Sei Serdang"}, {"id" : "1205192005", "nama" : "Namo Sialang"}, {"id" : "1205192006", "nama" : "Kwala Musam"}, {"id" : "1205192007", "nama" : "Kar... | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "object", "properties": {"protocol": {"type": "string"}, "path": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "requi... | {"modules" : [{"protocol" : "https", "path" : "deno.land/std", "version" : "0.104.0", "files" : ["/encoding/utf8.ts", "/flags/mod.ts", "/http/server.ts", "/testing/asserts.ts"]}], "aliases" : {}} | json_instruct | {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "object", "properties": {"protocol": {"type": "string"}, "path": {"type": "string"}, "version": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["protocol", "path", "version", "files"]}}, "aliases"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"mjmlParse": {"type": "object", "properties": {"name": {"type": "object", "properties": {"label": {"type": "string"}, "placeholder": {"type": "string"}}, "required": ["label", "placeholder"]}, "message": {"type": "o... | {"mjmlParse" : {"name" : {"label" : "naam", "placeholder" : "Naam van de node"}, "message" : {"status" : {"error" : "Het invoerbericht is geen tekenreeks.", "success" : "Geslaagd"}}}} | json_instruct | {"type": "object", "properties": {"mjmlParse": {"type": "object", "properties": {"name": {"type": "object", "properties": {"label": {"type": "string"}, "placeholder": {"type": "string"}}, "required": ["label", "placeholder"]}, "message": {"type": "object", "properties": {"status": {"type": "object", "properties": {"err... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"yes": {"type": "string"}, "no": {"type": "string"}, "something_wrong": {"type": "string"}, "random": {"type": "string"}, "latest_comic": {"type": "string"}, "explain_current": {"type": "string"}, "my_favorites": {"type": "s... | {"yes" : "\u0414\u0430", "no" : "\u041d\u0435\u0442", "something_wrong" : "\u0423\u043f\u0441... \u0447\u0442\u043e-\u0442\u043e \u043f\u043e\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a!", "random" : "\u0421\u041b\u0423\u0427\u0410\u0419\u041d\u042b\u0419", "latest_comic" : "\u041d\u043e\u0432\u0435\u0439\u0448\u... | json_instruct | {"type": "object", "properties": {"yes": {"type": "string"}, "no": {"type": "string"}, "something_wrong": {"type": "string"}, "random": {"type": "string"}, "latest_comic": {"type": "string"}, "explain_current": {"type": "string"}, "my_favorites": {"type": "string"}, "settings": {"type": "string"}, "images": {"type": "s... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sales": {"type": "integer"}}, "required": ["name", "sales"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Product A", "sales" : 247099}, {"name" : "Product B", "sales" : 375857}, {"name" : "Product C", "sales" : 549385}, {"name" : "Product D", "sales" : 453004}, {"name" : "Product E", "sales" : 177001}, {"name" : "Product F", "sales" : 928202}, {"name" : "Product G", "sales" : 362838}, {"name" : "Product H", "s... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sales": {"type": "integer"}}, "required": ["name", "sales"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "str... | {"id" : 11049, "source" : "ellicott", "verse_id" : 18013, "verse_count" : 1, "reference" : "19:8", "title" : "", "html" : " <p> (8) The fishers also shall mourn.\u2014With the failure of the river, one at least of the industries of Egypt failed also. Fish had at all times formed part of the diet of the working-classes ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"test" : "JSON"} | json_instruct | {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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#"}
| [[1990, 7], [1992, 5], [1993, 9], [1994, 5], [1995, 6], [1996, 5], [1998, 5], [2000, 5], [2001, 6], [2002, 7], [2003, 7], [2004, 6], [2005, 6], [2006, 5], [2007, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sch... | {"word" : "Sack", "definitions" : ["Dismiss from employment.", "Tackle (a quarterback) behind the line of scrimmage.", "Put into a sack or sacks."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "has... | {"id" : "hummingbird-finance", "symbol" : "hmng", "name" : "Hummingbird Finance", "platforms" : {"binance-smart-chain" : "0x14357d294fbabbe0fbf59503370c772d563b35b6"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Hummingbird Finance ($HMNG) is SHIB and RFI fork with better tokenomics. With HM... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "i... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}, "hash": {"type": "array", "items": {"type": "string"}}, "bin":... | {"homepage" : "http://www.mingw.org/wiki/MSYS", "version" : "3.1.7", "license" : "GPL3", "url" : ["http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/gawk/gawk-3.1.7-2/gawk-3.1.7-2-msys-1.0.13-bin.tar.lzma", "http://ufpr.dl.sourceforge.net/project/mingw/MSYS/Base/msys-core/msys-1.0.18-1/msysCORE-1.0.18-1-msys-1.0.1... | json_instruct | {"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "array", "items": {"type": "string"}}, "hash": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "array", "items": {"type": "string"}}}, "required": ["homepage", ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "n... | {"title" : "Bible (KJV) NT 20: James", "description" : "The writer of this letter instructs the early Christians on the value of showing patience, controlling an unruly tongue and treating all people with kindness without respect to their social position. It also provides the basis for the practice of blessing the sick... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 62}, "AGE_AT_FIRST_DI... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["610621103001", "\u5f20\u5bb6\u6ee9\u5c45\u59d4\u4f1a", "121", "0"], ["610621103200", "\u5f20\u5bb6\u6ee9\u6751\u59d4\u4f1a", "122", "0"], ["610621103202", "\u6768\u5bb6\u6751\u59d4\u4f1a", "220", "0"], ["610621103203", "\u4e0b\u76d8\u77f3\u6751\u59d4\u4f1a", "220", "0"], ["610621103205", "\u5cad\u4e8e\u6751\u59d4\u4... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=201f562f17b5ceef561b", "/css/app.css" : "/css/app.css?id=99bb964c34fbf0372f70"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"timeZone": {"type": "string"}, "exceptionLogging": {"type": "string"}, "runtimeVersion": {"type": "string"}, "dependencies": {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "prop... | {"timeZone" : "America/New_York", "exceptionLogging" : "STACKDRIVER", "runtimeVersion" : "V8", "dependencies" : {"libraries" : [{"userSymbol" : "OAuth2", "libraryId" : "1B7FSrk5Zi6L1rSxxTDgDEUsPzlukDsi4KGuTMorsTQHhGBzBkMun4iDF", "version" : "38"}], "enabledAdvancedServices" : [{"userSymbol" : "Drive", "version" : "v2",... | json_instruct | {"type": "object", "properties": {"timeZone": {"type": "string"}, "exceptionLogging": {"type": "string"}, "runtimeVersion": {"type": "string"}, "dependencies": {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "properties": {"userSymbol": {"type": "string"}, "libraryId": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"quote": {"type": "string"}, "author": {"type": "string"}}, "required": ["quote", "author"]}}}, "required": ["data"], "$schema": "http://jso... | {"data" : [{"quote" : "One of the most tragic things I know about human nature is that all of us tend to put off living. We are all dreaming of some magical rose garden over the horizon \u2013 instead of enjoying the roses that are blooming outside our windows today.", "author" : "Dale Carneige"}, {"quote" : "True peac... | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"quote": {"type": "string"}, "author": {"type": "string"}}, "required": ["quote", "author"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Assab": {"type": "string"}}, "required": ["Assab"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Assab" : "ASA"} | json_instruct | {"type": "object", "properties": {"Assab": {"type": "string"}}, "required": ["Assab"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}},... | {"n_dim" : 5, "n_trials" : 80, "objective" : "markowitz_analytic_on_cube", "white" : "optuna_random", "black" : "dlib_default", "traceback" : ["passing", "passing"], "best_val" : [0.4257101294309696, 0.2298575336907588], "best_x" : [[0.3956130934059692, 0.04246613515833597, 0.22677895067109288, 0.17849733031765325, 0.2... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/d... | {"name" : "datajs", "description" : "The datajs package for server, which contains almost all of the javascript the server uses.", "version" : "1.0.0", "main" : "data.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"gmt_offeset": {"type": "string"}, "dst": {"type": "string"}, "abbrev": {"type": "string"}}, "required": ["gmt_offeset", "dst", "abbrev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gmt_offeset" : "-30600", "dst" : "0", "abbrev" : "PNT"} | json_instruct | {"type": "object", "properties": {"gmt_offeset": {"type": "string"}, "dst": {"type": "string"}, "abbrev": {"type": "string"}}, "required": ["gmt_offeset", "dst", "abbrev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1918, 8], [1928, 5], [1929, 5], [2000, 5], [2001, 7], [2002, 8], [2003, 11], [2004, 12], [2005, 10], [2006, 16], [2007, 20], [2008, 17], [2009, 18], [2010, 18], [2011, 20], [2012, 13], [2013, 17], [2014, 17]] | 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": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 54000, "date" : "2015-05-29 18:54:11", "user" : "Serverlux", "post" : "Serverlux is proud to announce that we are ready to launch our VPS products.\r\n \r\n<p>We will be giving out 200 beta accounts within the next 4 Weeks.</p>\r\n<p>All VPS accounts will terminate after 1 Month, but you can r... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"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" : "8207040001", "district_id" : "8207040", "name" : "LIBANO"}, {"id" : "8207040002", "district_id" : "8207040", "name" : "HAPO"}, {"id" : "8207040003", "district_id" : "8207040", "name" : "TITIGOGOLI"}, {"id" : "8207040004", "district_id" : "8207040", "name" : "BERE BERE KECIL"}, {"id" : "8207040005", "district_... | json_instruct | {"type": "array", "items": {"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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["bumble", "fireball"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}... | {"name" : "real-time-pos-system", "version" : "1.0.0", "description" : "Node.js app that connect the react-pos app to the Database", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Prajwal Bati", "license" : "MIT", "dependencies" : {"create-react-app" : "^1.5.2", "... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"icon": {"type": "string"}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {}, "required": []}, "hoot:featuretype": {"type": "string"}, "hoot:tagschema": {"type": "string"}, "... | {"icon" : "maki-airport", "geometry" : ["point", "area"], "tags" : {}, "hoot:featuretype" : "Land Aerodrome", "hoot:tagschema" : "TDSv70", "hoot:fcode" : "GB005", "name" : "Land Aerodrome (GB005)"} | json_instruct | {"type": "object", "properties": {"icon": {"type": "string"}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {}, "required": []}, "hoot:featuretype": {"type": "string"}, "hoot:tagschema": {"type": "string"}, "hoot:fcode": {"type": "string"}, "name": {"type": "string... |
Please provide a valid JSON object following this schema:
{"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" : "1302012002", "district_id" : "1302012", "name" : "LUNANG SELATAN"} | 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": {"title": {"type": "string"}, "description": {"type": "string"}, "price": {"type": "integer"}, "image": {"type": "string"}}, "required": ["title", "description", "price", "image"], "$schema": "http://json-schema.org/draft-07/... | {"title" : "Beet and Grain Salad", "description" : "Pickled beets, quinoa, farro, green peas, tarragon emulsion", "price" : 12, "image" : ""} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "price": {"type": "integer"}, "image": {"type": "string"}}, "required": ["title", "description", "price", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location"... | {"id" : 4915, "title" : ["[Gyldemar Forest, Among the Oaks]"], "description" : ["The endless panorama of trees lends no clues to your position in the dark forest. A few dead branches lie scattered across the forest floor, awaiting an unsuspecting traveller to trip."], "paths" : ["Obvious paths: north, east, west"], "l... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"4916":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"read_set": {"type": "array", "items": {"type": "string"}}, "write_set": {"type": "array", "items": {"type": "string"}}, "code": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required... | {"read_set" : ["0", "1", "2"], "write_set" : ["3", "4", "5"], "code" : [["COPY", "0", "3"], ["COPY", "1", "4"], ["COPY", "2", "5"]]} | json_instruct | {"type": "object", "properties": {"read_set": {"type": "array", "items": {"type": "string"}}, "write_set": {"type": "array", "items": {"type": "string"}}, "code": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["read_set", "write_set", "code"], "$schema": "http://json-schema.or... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:i... | {"id" : 85774463, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "9147fa0833c155e5180a8e1f2082281d", "wof:id" : 85774463, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [151.20895385699998, -33.87269600799992, 151.2147370248161, -33.86927529704... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/d... | {"symbol" : "DATA", "name" : "Streamr", "decimals" : 18, "address" : "0x0cf0ee63788a0849fe5297f3407f701e122cc023"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Library of Orthanc (9R+39)", "text" : "Set:\tReflections\nKind:\tShadow\nCulture:\tIsengard\nTwilight:\t2\nCard Type:\tArtifact \u2022 Support Area\nGame Text:\tShadow: Play an [Isengard] minion to stack the top card of your draw deck on this card. Skirmish: Remove(1) and discard a Free Peoples card stacked... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid 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" : "130984401598", "text" : "\u6cb3\u95f4\u7ecf\u6d4e\u5f00\u53d1\u533a\u865a\u62df\u751f\u6d3b\u533a"}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "objec... | {"name" : "KeyedCodable", "version" : "1.1.0", "license" : "MIT", "summary" : "Elegant way of manual swift Codable implementation with easy key mappings", "description" : "KeyedCodable is an addition to swift's Codable introduced in swift 4. It?s great we can use automatic implementation of Codable methods but when we ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Dariusz Grzeszczak": {"type": "string"}}, "required"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items":... | {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [69.488, 47.0046, 0.82752, 69.8736, 54.7742, 0.908168, 64.0476, 54.7666, 0.880844, 55.9225, 57.8699, 0.825877, 46.6096, 57.8424, 0.852761, 75.6877, 55.1425, 0.840087, 76.8539, 64.834, 0.734868, 78.7777, 73.7505, 0.787245, 70.2504, 76.0767, 0.80767... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"spec": {"type": "object", "properties": {"repos": {"type": "object", "properties": {"kubernetes/kubernetes": {"type": "string"}, "containerd/containerd": {"type": "string"}, "istio/istio": {"type": "string"}, "envoyp... | {"spec" : {"repos" : {"kubernetes/kubernetes" : "", "containerd/containerd" : "", "istio/istio" : "", "envoyproxy/envoy" : "", "helm/helm" : "", "prometheus/prometheus" : "", "moby/moby" : "", "coredns/coredns" : "", "projectcalico/calico" : "", "opencontainers/runc" : "", "kubernetes/ingress-nginx" : "", "flannel-io/f... | json_instruct | {"type": "object", "properties": {"spec": {"type": "object", "properties": {"repos": {"type": "object", "properties": {"kubernetes/kubernetes": {"type": "string"}, "containerd/containerd": {"type": "string"}, "istio/istio": {"type": "string"}, "envoyproxy/envoy": {"type": "string"}, "helm/helm": {"type": "string"}, "pr... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ban-trustedtypes-createpolicy": {"type": "array", "items": {"type": "string"}}}, "required": ["ban-trustedtypes-createpolicy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ban-trustedtypes-createpolicy" : ["**/*.ts"]} | json_instruct | {"type": "object", "properties": {"ban-trustedtypes-createpolicy": {"type": "array", "items": {"type": "string"}}}, "required": ["ban-trustedtypes-createpolicy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": "int... | {"nom" : "Cairon", "dpt" : "Calvados", "inscrits" : 1729, "abs" : 346, "votants" : 1383, "blancs" : 129, "nuls" : 29, "exp" : 1225, "res" : [{"panneau" : "1", "voix" : 1008}, {"panneau" : "2", "voix" : 217}]} | 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"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"foundation-sites": {"type": "string"}, "motion-ui": {"type": "string"}}, "required": ["foundation-sites", "motion-ui"... | {"name" : "foundation-rails", "version" : "6.2.1.0", "dependencies" : {"foundation-sites" : "6.2.3", "motion-ui" : "1.2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"foundation-sites": {"type": "string"}, "motion-ui": {"type": "string"}}, "required": ["foundation-sites", "motion-ui"]}}, "required": ["name", "version", "dependencies"], "$sch... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : ["Fisherman Association", "mangingisda ng Palawan", "Business Owners Palawan"]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "string"}}}, "required": ["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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "st... | {"name" : "project", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node index.js"}, "author" : "", "license" : "ISC", "dependencies" : {"ejs" : "^2.6.1", "express" : "^4.16.4", "firebase" : "^5.11.1", "firebase-admin" : "^7.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"MonkeyKingLite": {"type": "array", "items": {"type": "string"}}}, "required": ["MonkeyKingLite"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MonkeyKingLite" : ["MultiplayerOnlineBattleArena", "StockShonenHero", "AnimalMotifs", "IdiotHero", "BigEater", "SimpleStaff", "TelescopingStaff", "FlyingOnACloud", "MesACrowd", "DoppelgangerAttack", "Expy", "Expy", "Expy", "TheTrickster", "SimpleStaff", "TelescopingStaff", "FlyingOnACloud", "MesACrowd", "Doppelganger... | json_instruct | {"type": "object", "properties": {"MonkeyKingLite": {"type": "array", "items": {"type": "string"}}}, "required": ["MonkeyKingLite"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "null"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json... | {"poem" : {"title" : null, "author" : "Peter McCarey etc.", "text" : "Good King Wenceslas looked out\nOn the feast of Steven\nWhen the snowly roundabout\nDeep and crisp and odd.\nAn odd and an odd is an even;\nAn odd and an even's an odd.\nParanoid his prosody\nNever checked his spelling.\nYonder peasant Squoo is he,\n... | json_instruct | {"type": "object", "properties": {"poem": {"type": "object", "properties": {"title": {"type": "null"}, "author": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "author", "text"]}}, "required": ["poem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"access_token": {"type": "null"}, "version": {"type": "integer"}, "sbTopic": {"type": "string"}}, "required": ["access_token", "version", "sbTopic"]}, "actions": {"type": "ar... | {"meta" : {"access_token" : null, "version" : 1, "sbTopic" : "actions"}, "actions" : [{"deviceMac" : "e4:f2:05:7e:e8:68", "serviceUuid" : null, "value" : null, "characteristicUuid" : null, "actionId" : "00000002", "timeOut" : 60, "type" : "bleDisconnect"}], "receiver" : {"apMac" : "90:4c:81:cf:38:86", "all" : false}} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"access_token": {"type": "null"}, "version": {"type": "integer"}, "sbTopic": {"type": "string"}}, "required": ["access_token", "version", "sbTopic"]}, "actions": {"type": "array", "items": {"type": "object", "properties": {"deviceMac": {"type":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items... | {"name" : "lblog", "description" : "This is the test project for Laravel+gulp+bower", "main" : "", "authors" : ["suxindao <xindao.su@healthcrosscn.com>"], "license" : "MIT", "keywords" : ["Laravel", "bower", "gulp"], "moduleType" : [], "homepage" : "lblog.com", "ignore" : ["**/.*", "node_modules", "bower_components", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "moduleType": {"type": "array", "items": {}},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "flInCalendar": {"type": "boolean"}}, "required": ["text", "created", "type", "flInCalendar"], "$schema": "http://json-schema.org/draft-07/s... | {"text" : "The other day I <a href=\"http://scripting.com/2021/04/18.html#a140711\">reported</a> that I had the project I'm working on \"stabilized\" after major brain surgery. In software it's always a good idea to be prepared for the worst possible outcome. In this case, I forgot that I hadn't deployed the new versio... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "flInCalendar": {"type": "boolean"}}, "required": ["text", "created", "type", "flInCalendar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"paths": {"type": "object", "properties": {"amber-roast": {"type": "string"}}, "required": ["amber-roast"]}}, "required": ["paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"paths" : {"amber-roast" : "src"}} | json_instruct | {"type": "object", "properties": {"paths": {"type": "object", "properties": {"amber-roast": {"type": "string"}}, "required": ["amber-roast"]}}, "required": ["paths"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "strin... | [{"namaKab" : "KOTA BANDUNG", "originalFilename" : "OJI - PAS FOTO (OK).jpg", "namaPartai" : "Persatuan Indonesia", "id" : 141868, "noUrut" : 1, "nama" : "OJI NANANG SOMANTRI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BANDUNG", "originalFilename" : "TONNY JAS - PAS FOTO (OK).jpg", "namaPartai" : "Persatu... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
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": {"run:dev": {"type": "string"}, "lint:fix": {"ty... | {"name" : "bp-server", "version" : "1.0.0", "description" : "", "main" : "index.ts", "scripts" : {"run:dev" : "nodemon --watch '*.ts' --ext 'ts,json' --exec 'ts-node' -r tsconfig-paths/register index.ts", "lint:fix" : "eslint --fix --ext .ts"}, "author" : "", "license" : "ISC", "dependencies" : {"dotenv" : "^16.0.1", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"run:dev": {"type": "string"}, "lint:fix": {"type": "string"}}, "required": ["run:dev", "lint:fix"]}, "author": {"type"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"skeleton.js": {"type": "string"}, "skeleton.min.js": {"type": "string"}}, "required": ["skeleton.js", "skeleton.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"skeleton.js" : "sha512-Eh7/JW7cEqrF20LR+rFlJ4qSlQSejKbNPYFGalyMblEC6UFq0VkJXESwJ0VJQw8A47TGYPzWgjGazi26x/LEMQ==", "skeleton.min.js" : "sha512-CvzJTld6aXXCag07jrVCrIIP2aEtPU4iUsMcYOd05mDSh0lkRf1HzeC+o58+JG/Fb8+fLFSRr6HK2ztji8Dmgg=="} | json_instruct | {"type": "object", "properties": {"skeleton.js": {"type": "string"}, "skeleton.min.js": {"type": "string"}}, "required": ["skeleton.js", "skeleton.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "architectonic:block/wide_dark_oak_planks_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"bindings/inputmask.binding.js": {"type": "string"}, "bindings/inputmask.binding.min.js": {"type": "string"}, "inputmask.js": {"type": "string"}, "inputmask.min.js": {"type": "string"}, "jquery.inputmask.js": ... | {"bindings/inputmask.binding.js" : "sha512-yRj2qMR1e6h1lEvNYG5dkMPThf1Ydxni0YrU1jbY2cyoGZL2ZHnjY78WhNHbclVfu/GXZlOyZcGdHX7oa+GpfQ==", "bindings/inputmask.binding.min.js" : "sha512-TGXLFBp6KE2kQHdH2lH1ysWKWKeuV013LpSktndHu9j3fT8tI7kqz4bWiOIIyFdn3Q65RcdrT/OkdL4LJPEGXQ==", "inputmask.js" : "sha512-ak3v1MEB6H3fBM1b+E9N/cSJ... | json_instruct | {"type": "object", "properties": {"bindings/inputmask.binding.js": {"type": "string"}, "bindings/inputmask.binding.min.js": {"type": "string"}, "inputmask.js": {"type": "string"}, "inputmask.min.js": {"type": "string"}, "jquery.inputmask.js": {"type": "string"}, "jquery.inputmask.min.js": {"type": "string"}}, "required... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hooks": {"type": "object", "properties": {"expressConfigure": {"type": "string"}, "authenticate": {"type": "stri... | {"parts" : [{"name" : "ep_dataporten", "hooks" : {"expressConfigure" : "ep_dataporten/ep_dataporten", "authenticate" : "ep_dataporten/ep_dataporten", "authorize" : "ep_dataporten/ep_dataporten"}}]} | json_instruct | {"type": "object", "properties": {"parts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "hooks": {"type": "object", "properties": {"expressConfigure": {"type": "string"}, "authenticate": {"type": "string"}, "authorize": {"type": "string"}}, "required": ["expressConfigure", "a... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "... | {"id" : 404418081, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "ec706fd449676c6edfee59be2a4ec149", "wof:id" : 404418081, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.92740877986049, 43.11010347718345, 1.99105982988559, 43.14660446858544... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
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" : "0x4845b8112acf5c40932ac3635ee54e76faf37c94187b868e005ed9b5ac16f6b2", "parentHash" : "0xf5332db11d9ea7058a45c448fbaec155702d6090f93e054135e1f6bef06a60e2", "number" : 122289, "timestamp" : 1440191644, "nonce" : "0xa35151710417b244", "difficulty" : 4455589284602, "gasLimit" : {"_hex" : "0x2fefd8"}, "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"]... |
Create a JSON structure that matches this 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" : "7203030022", "district_id" : "7203030", "name" : "BAHORURU"} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rechiseled_compat:block/genericeco_robinia_planks_dotted_connecting"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty... | {"name" : "soundcloud-dl", "version" : "0.0.0", "description" : "", "repository" : {"type" : "git", "url" : "git+https://github.com/NotTobi/soundcloud-dl.git"}, "author" : "NotTobi", "license" : "MIT", "bugs" : {"url" : "https://github.com/NotTobi/soundcloud-dl/issues"}, "homepage" : "https://github.com/NotTobi/soundcl... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["a", "b"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"a" : 2, "b" : 3} | json_instruct | {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["a", "b"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "prope... | {"name" : "jumptwentyfour/php-coding-standards", "description" : "Coding standards for our PHP applications.", "keywords" : ["php", "standards", "code standards"], "license" : "MIT", "authors" : [{"role" : "Lead Developer", "name" : "Alex Williams", "email" : "alex@jump24.co.uk", "homepage" : "https://jump24.co.uk"}, {... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "name": {"type": "string"}, "ema... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["descri... | {"latest_version" : ["0.1"], "meta" : {"description" : "Projeto de Exemplo para curso no Hotel Urbano", "homepage" : "https://github.com/renzon/hotel-urbano", "license" : "BSD"}, "versions" : {"0.1" : {"sha256" : "43e133a8118754dc5a4f83ec96f431f6d6f6e33f5bc5bb5da1b99abfd42fb3c7", "url" : "https://files.pythonhosted.org... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"quiz": {"type": "string"}, "answer": {"type": "string"}}, "required": ["quiz", "answer"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"quiz" : "DB \uae30\ubcf8\ud0a4\uac00 \uc5ec\ub7ec \uac1c\uc778 \uacbd\uc6b0\ub294?", "answer" : ""}, {"quiz" : "\ubc31\uc5c5 \ubc29\ubc95", "answer" : ""}, {"quiz" : "\ub9c8\uc774\uadf8\ub808\uc774\uc158 \ubc29\ubc95", "answer" : ""}, {"quiz" : "\uc870\uc778 \ubc29\ubc95 \ubc0f \uc885\ub958", "answer" : "inner join,... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"quiz": {"type": "string"}, "answer": {"type": "string"}}, "required": ["quiz", "answer"]}, "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, ... | {"name" : "example-page", "version" : "1.1.1", "description" : "Example page highlighting the different flavours of substyle", "main" : "src/index.js", "author" : "Philipp Giese", "license" : "MIT", "private" : true, "scripts" : {"start" : "webpack-dev-server", "build" : "echo OK", "test" : "echo OK", "copy-types" : "e... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.