input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nu... | {"nom" : "Saint-Martin-d'Arc", "circ" : "3\u00e8me circonscription", "dpt" : "Savoie", "inscrits" : 266, "abs" : 178, "votants" : 88, "blancs" : 0, "nuls" : 7, "exp" : 81, "res" : [{"nuance" : "LR", "nom" : "Mme Emilie BONNIVARD", "voix" : 47}, {"nuance" : "REM", "nom" : "M. Philip VIVIER", "voix" : 34}]} | 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"... |
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"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "pro... | {"name" : "foryou-backend", "version" : "1.0.0", "description" : "backend for \"ForYou\"", "main" : "index.js", "author" : "KingCosmic", "license" : "MIT", "scripts" : {"start" : "node index.js"}, "dependencies" : {"body-parser" : "^1.18.3", "express" : "^4.16.3", "mongoose" : "^5.1.5", "shortid" : "^2.2.12"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dep... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "string"}, "kinvey": {"type": "string"}, "appName": {"type": "string"}, "environmentName": {"type": "string"}}, "required": ["version", "kinvey", "appName", "environmentName"], "$schema": "http://... | {"version" : "3.9.59", "kinvey" : "hello Demo", "appName" : "Demo", "environmentName" : "Development"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "kinvey": {"type": "string"}, "appName": {"type": "string"}, "environmentName": {"type": "string"}}, "required": ["version", "kinvey", "appName", "environmentName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http:... | {"viewBox" : "0 0 1024 1792", "font" : "font-awesome", "code" : "f276", "ref" : "_591", "path" : "M384 1073q62 15 128 15t128-15v655q0 26-19 45t-45 19H448q-26 0-45-19t-19-45v-655M150 150l75-75Q300 0 512 0t362 150q150 150 150 362T874 874q-150 150-362 150T150 874Q0 724 0 512t150-362m362 74q14 0 23-9t9-23q0-14-9-23t-23-9q-... | json_instruct | {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "ha... | {"index" : 323, "hash" : 3346813118, "artDyeHash" : 3346813118, "redacted" : false, "dyeManifestHash" : 2248062654, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "bon ton", "definition" : "The height of the fashion; fashionable society."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"compile_duration": {"type": "number"}, "execution_duration": {"type": "number"}, "example_size": {"type": "integer"}, "batch_size": {"type": "integer"}, "model": {"type": "string"}, "correct": {"type": "boolean"},... | {"compile_duration" : 8.783544063568115, "execution_duration" : 0.36319699883461, "example_size" : 16, "batch_size" : 1, "model" : "inception_v3", "correct" : true, "max_error" : 1.5952042303979397e-05, "max_abs_error" : 1.3783574104309082e-06, "fail_ratio" : 0.0} | json_instruct | {"type": "object", "properties": {"compile_duration": {"type": "number"}, "execution_duration": {"type": "number"}, "example_size": {"type": "integer"}, "batch_size": {"type": "integer"}, "model": {"type": "string"}, "correct": {"type": "boolean"}, "max_error": {"type": "number"}, "max_abs_error": {"type": "number"}, "... |
Create a JSON structure that matches this 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"}, "wof:id": {"type... | {"id" : 85770421, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "aea811f0255350a87ea1f3b79f742978", "wof:id" : 85770421, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [151.6, -32.96667, 151.6, -32.96667], "geometry" : {"coordinates" : [... | 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": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1122408, "stations" : ["1122408"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "required"... | {"FeatureEventName" : "Android Workshop", "EventImage" : "https://i.imgur.com/H5nILBbl.jpg", "EventDate" : {"Date" : "25", "Month" : "January", "Year" : "2020"}, "EventTime" : {"StartTime" : "10:00 AM", "EndTime" : "01:00 PM"}, "EventVenue" : "Chandigarh Group of Colleges, Kharar Banur Hwy, Sector 112, Sahibzada Ajit ... | json_instruct | {"type": "object", "properties": {"FeatureEventName": {"type": "string"}, "EventImage": {"type": "string"}, "EventDate": {"type": "object", "properties": {"Date": {"type": "string"}, "Month": {"type": "string"}, "Year": {"type": "string"}}, "required": ["Date", "Month", "Year"]}, "EventTime": {"type": "object", "proper... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}}, "required": ["inquirer... | {"name" : "team-profile-generator", "version" : "1.0.0", "description" : "<!--\r *** Thanks for checking out this README Template. If you have a suggestion that would\r *** make this better, please fork the repo and create a pull request or simply open\r *** an issue with the tag \"enhancement\".\r *** Thanks again! No... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}}, "required": ["inquirer"]}, "devDependencies": {"type": "object", "properties": {}... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "contributors": {"type": "array", "items": {"type": "stri... | {"name" : "interactive-gay-rights-map", "version" : "1.0.2", "description" : "A project generated from aunty's preact-app template.", "license" : "MIT", "private" : true, "contributors" : ["Nathan Hoad <nathan@nathanhoad.net>"], "aunty" : "react-app", "scripts" : {"start" : "aunty serve", "test" : "jest"}, "jest" : {"t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "contributors": {"type": "array", "items": {"type": "string"}}, "aunty": {"type": "string"}, "scripts": {"type": "object", "prope... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"javascript": {"type": "string"}, "java": {"type": "string"}, "python": {"type": "string"}, "php": {"type": "string"}, "html": {"type": "string"}, "kotlin": {"type": "string"}, "cpp": {"type": "string"}, "csharp": {"type": "str... | {"javascript" : "788278501815484467", "java" : "788278475004837888", "python" : "788278408001224785", "php" : "788278371662430209", "html" : "788277247592235058", "kotlin" : "788435987809697822", "cpp" : "788278444692865054", "csharp" : "788436227556638772", "c_" : "788436204156354561", "css" : "788440317841244170"} | json_instruct | {"type": "object", "properties": {"javascript": {"type": "string"}, "java": {"type": "string"}, "python": {"type": "string"}, "php": {"type": "string"}, "html": {"type": "string"}, "kotlin": {"type": "string"}, "cpp": {"type": "string"}, "csharp": {"type": "string"}, "c_": {"type": "string"}, "css": {"type": "string"}}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"900472804": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900472805": {"type": "object", "properties": {"n... | {"900472804" : {"nama" : "TPS 1", "dapil" : [3505, 13506, 2350707]}, "900472805" : {"nama" : "TPS 2", "dapil" : [3505, 13506, 2350707]}, "900472806" : {"nama" : "TPS 3", "dapil" : [3505, 13506, 2350707]}, "900472807" : {"nama" : "TPS 4", "dapil" : [3505, 13506, 2350707]}, "900472808" : {"nama" : "TPS 5", "dapil" : [350... | json_instruct | {"type": "object", "properties": {"900472804": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900472805": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}}, ... | {"$schema" : "strategy", "name" : "Compound Finance Flashmint Folding", "description" : "Supplies and borrows {{token}} on [Compound Finance](https://app.compound.finance) simultaneously to earn COMP. Flashmints are used to mint DAI from [MakerDAO](https://oasis.app) to flashlend and fold the position, boosting the APY... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "name", "description", "addresses", "protocol... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["cellx-react"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$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"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "dependencies": {"type": "obj... | {"name" : "server", "version" : "1.0.0", "main" : "index.js", "repository" : {}, "license" : "MIT", "dependencies" : {"babel-cli" : "^6.22.2", "babel-plugin-transform-runtime" : "^6.22.0", "babel-preset-es2015" : "^6.22.0", "babel-preset-stage-0" : "^6.22.0", "bcryptjs" : "^2.4.3", "body-parser" : "^1.16.0", "connect-m... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-plugin-tra... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "static/media/sideBot.svg": {"type": "string"}, "static/media/landing.svg": {"type": "string"}, "static... | {"files" : {"main.css" : "/static/css/main.79964c80.css", "main.js" : "/static/js/main.ecfb86c0.js", "static/media/sideBot.svg" : "/static/media/sideBot.95beb70aef51ea9345853449ac62c77f.svg", "static/media/landing.svg" : "/static/media/landing.42f4146f1fe95b2560bf0c68b2b55aea.svg", "static/media/logo.svg" : "/static/me... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "static/media/sideBot.svg": {"type": "string"}, "static/media/landing.svg": {"type": "string"}, "static/media/logo.svg": {"type": "string"}, "index.html": {"type": "string"}, "main... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["governify-agreement-manager", "invoice-generator", "serf-build", "surf-build"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string... | {"body" : "Haven't been able to test this yet as the `numexpr` build is broken.\r\n\r\nThis version of pandas drops Python 2 support.", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/12173", "updated_at" : "2019-07-30 22:16:37", "created_at" : "2019-07-28 20:35:38", "closed_at" : "201... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "... | {"type" : "Topology", "arcs" : [[[401, 167], [-69, -49], [-23, -60], [-104, 22], [-13, 4], [-75, -84], [-24, 4], [-6, 1], [-84, 18], [-3, 117], [18, 104], [2, 382], [78, 43], [132, 12], [20, -56], [73, -38], [9, -55], [1, -6], [95, -124], [-111, -100], [84, -135]]], "transform" : {"scale" : [0.00021918786151338423, 0.0... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"browser": {"type": "object", "properties": {"sling:resourceType": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "order": {"type": "integer"}, "css": {"type": "object", "properties": ... | {"browser" : {"sling:resourceType" : "composum/nodes/commons/clientlib", "category" : ["composum.nodes.console.browser"], "order" : 100, "css" : {"jcr:primaryType" : "nt:unstructured", "depends" : ["category:composum.nodes.console.base"], "embed" : ["composum/nodes/console/components/codeeditor/clientlib", "composum/no... | json_instruct | {"type": "object", "properties": {"browser": {"type": "object", "properties": {"sling:resourceType": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "order": {"type": "integer"}, "css": {"type": "object", "properties": {"jcr:primaryType": {"type": "string"}, "depends": {"type": "array", ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mz": {"type": "string"}, "puppeteer": {"type": "string"}, "resemblejs": {"type": "string"}}, "required": ["mz", "pupp... | {"name" : "jakewharton.com", "version" : "1.0.0", "dependencies" : {"mz" : "^2.7.0", "puppeteer" : "^1.20.0", "resemblejs" : "^3.2.2"}, "scripts" : {"capture" : "node scripts/capture.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mz": {"type": "string"}, "puppeteer": {"type": "string"}, "resemblejs": {"type": "string"}}, "required": ["mz", "puppeteer", "resemblejs"]}, "scripts": {"type": "object", "prop... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "packageName": {"type": "string"}, "versionName": {"type": "string"}, "versionCode": {"type": "integer"}}, "re... | {"name" : "ranyongjs", "main" : "main.js", "ignore" : ["build"], "packageName" : "com.ranyong.ranyongjs", "versionName" : "1.0.1", "versionCode" : 1} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "packageName": {"type": "string"}, "versionName": {"type": "string"}, "versionCode": {"type": "integer"}}, "required": ["name", "main", "ignore", "packageName", "versionNam... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e... | {"nom" : "Saulles", "dpt" : "Haute-Marne", "inscrits" : 74, "abs" : 10, "votants" : 64, "blancs" : 11, "nuls" : 4, "exp" : 49, "res" : [{"panneau" : "1", "voix" : 33}, {"panneau" : "2", "voix" : 16}]} | 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"... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "Recquignies", "circ" : "3\u00e8me circonscription", "dpt" : "Nord", "inscrits" : 1707, "abs" : 1180, "votants" : 527, "blancs" : 35, "nuls" : 8, "exp" : 484, "res" : [{"nuance" : "FN", "nom" : "Mme Sylvie GODDYN", "voix" : 271}, {"nuance" : "REM", "nom" : "M. Christophe DI POMPEO", "voix" : 213}]} | 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"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type... | {"description" : "I will present the E-Cell Project, our efforts towards realizing precise whole cell-scale simulations possible. Our simulation platform E-Cell System combines C++ and Python to mitigate biological complexity while maintaining high-productivity and high-performance on various architectures including su... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"linters": {"type": "object", "properties": {"./*.ts": {"type": "array", "items": {"type": "string"}}, "./src/**/*.ts": {"type": "array", "items": {"type": "string"}}, "./test/**/*.ts": {"type": "array", "item... | {"linters" : {"./*.ts" : ["import-sort --write"], "./src/**/*.ts" : ["yarn run lint:src:base --fix", "git add"], "./test/**/*.ts" : ["yarn run lint:test:base --fix", "git add"]}} | json_instruct | {"type": "object", "properties": {"linters": {"type": "object", "properties": {"./*.ts": {"type": "array", "items": {"type": "string"}}, "./src/**/*.ts": {"type": "array", "items": {"type": "string"}}, "./test/**/*.ts": {"type": "array", "items": {"type": "string"}}}, "required": ["./*.ts", "./src/**/*.ts", "./test/**/... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"vue-validator.js": {"type": "string"}, "vue-validator.min.js": {"type": "string"}}, "required": ["vue-validator.js", "vue-validator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vue-validator.js" : "sha256-9BHxKHOO7MdcK6oDiJTAKOsr4kww91nf40cux0qfT60=", "vue-validator.min.js" : "sha256-uD8CeKKVmPjfJgJV2lKkqFlHNBx5e8vAVjkbzozTmeQ="} | json_instruct | {"type": "object", "properties": {"vue-validator.js": {"type": "string"}, "vue-validator.min.js": {"type": "string"}}, "required": ["vue-validator.js", "vue-validator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "popul... | {"type" : "Feature", "properties" : {"name" : "Talbot County", "fips" : "24041", "state_code" : 24, "county_code" : 41, "population" : 37181, "countrylevel_id" : "fips:24041", "census_data" : {"COUNTYNS" : "00592947", "AFFGEOID" : "0500000US24041", "LSAD" : "06", "ALAND" : 695563206, "AWATER" : 539361871}}, "geometry" ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "string"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "string"}}, "required": ["colo... | {"name" : "colors-project", "version" : "0.0.1", "main" : "./index", "private" : "true", "dependencies" : {"colors" : "0.5.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "string"}, "dependencies": {"type": "object", "properties": {"colors": {"type": "string"}}, "required": ["colors"]}}, "required": ["name", "version", "main", "private", "dependenc... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Avatar": {"type": "string"}, "Status": {"type": "string"}, "Subscription": {"type": "string"}, "Plan": {"type": "string"}, "Url": {"type": "string"}, "Recent": {"type": "string"}, "Subscritption": {"type": "string... | {"Avatar" : "https://github.com/loliprotector.png", "Status" : "test", "Subscription" : "1 year", "Plan" : "Python", "Url" : "https://osu.ppy.sh/users/Kao", "Recent" : "..\\..\\Data\\Users..\\..\\Data\\Users\\Kao_README.md", "Subscritption" : "3 months"} | json_instruct | {"type": "object", "properties": {"Avatar": {"type": "string"}, "Status": {"type": "string"}, "Subscription": {"type": "string"}, "Plan": {"type": "string"}, "Url": {"type": "string"}, "Recent": {"type": "string"}, "Subscritption": {"type": "string"}}, "required": ["Avatar", "Status", "Subscription", "Plan", "Url", "Re... |
Based on the schema below, produce a valid JSON object:
{"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": "integ... | {"nom" : "Saint-Christophe-Dodinicourt", "dpt" : "Aube", "inscrits" : 31, "abs" : 1, "votants" : 30, "blancs" : 1, "nuls" : 0, "exp" : 29, "res" : [{"panneau" : "2", "voix" : 15}, {"panneau" : "1", "voix" : 14}]} | 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"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "status": {"type": "string"}, "summary": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "integer"}, "commentCount": {"type": "integer"}, "... | {"id" : 317, "status" : "Fixed", "summary" : "osmarender tile server is no longer active", "labels" : ["Type-Task", "Priority-Medium"], "stars" : 0, "commentCount" : 2, "comments" : [{"id" : 0, "commenterId" : 8937367184059112911, "content" : "The tile source defined as TileSourceFactory.OSMARENDER is retired so we sho... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "status": {"type": "string"}, "summary": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "integer"}, "commentCount": {"type": "integer"}, "comments": {"type": "array", "items": {"type": "object", "properties": {... |
Create an example JSON object that satisfies 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" : "1208170002", "district_id" : "1208170", "name" : "KEDAI LEDANG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.o... | {"variants" : {"" : {"model" : "rechiseled_compat:block/tconstruct_skyroot_planks_small_bricks"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": "array", "items": {"type": "array", "items": {"type": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[141.125, 23.5], [141.125, 23.583333333333332], [141.25, 23.583333333333332], [141.25, 23.5], [141.125, 23.5]]]}, "properties" : {"code" : 354121, "url" : "http://madefor.github.io/0410/api/v1/354121.geojson", "view" : "https://github.com/madefor/... | 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 a JSON structure that matches this schema definition:
{"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"}},... | {"name" : "backend", "version" : "1.0.0", "description" : "server", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node server.js"}, "author" : "david mugalla", "license" : "MIT", "engines" : {"node" : "17.x"}, "dependancies" : {"express" : "^4.18.0", "cors" : "^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"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"pattern": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"ty... | {"pattern" : [{"name" : "button_blue", "value" : [{"name" : "text_size", "value" : "18fp"}, {"name" : "margin", "value" : "5vp"}, {"name" : "background_element", "value" : "$graphic:button_blue"}, {"name" : "text_color", "value" : "#FFFFFF"}]}, {"name" : "content_text", "value" : [{"name" : "text_size", "value" : "17fp... | json_instruct | {"type": "object", "properties": {"pattern": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["name", "va... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1320a76cb4b2a60c7e47fcf5cd105e5a88fff2dd"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"946937743109": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subje... | {"946937743109" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/Mi0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9XT1JMRF9TcGFjZS1FUV9Xb3JsZF9TcGFjZS5odG1sLWFuYWx5dGljcy05NDY5Mzc3NDMwNzI=.json"}, "946937749939" : {"type" : "st"}, "946937749940" : {"t... | json_instruct | {"type": "object", "properties": {"946937743109": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946937749939": {"type": "object", "properties": {"t... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"purescript.outputDirectory": {"type": "string"}, "nixEnvSelector.nixFile": {"type": "string"}, "purescript.pursExe": {"type": "string"}, "purescript.buildCommand": {"type": "string"}}, "required": ["purescript.outputDirectory", ... | {"purescript.outputDirectory" : "static/halogen/output/", "nixEnvSelector.nixFile" : "${workspaceRoot}/default.nix", "purescript.pursExe" : "/nix/store/vd4xvx67kx9czrv2x35vnz9fz0kyq23p-purescript-0.14.4/bin/purs", "purescript.buildCommand" : "/nix/store/l078vmg8z0g50yljwq8n7n2fsvhv93qh-spago-0.20.2/bin/spago build --pu... | json_instruct | {"type": "object", "properties": {"purescript.outputDirectory": {"type": "string"}, "nixEnvSelector.nixFile": {"type": "string"}, "purescript.pursExe": {"type": "string"}, "purescript.buildCommand": {"type": "string"}}, "required": ["purescript.outputDirectory", "nixEnvSelector.nixFile", "purescript.pursExe", "purescri... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "games": {"type": "object", "properties": {"nh": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "string"}},... | {"id" : "broom-and-dustpan", "name" : "Broom And Dustpan", "games" : {"nh" : {"orderable" : true, "sources" : ["Nook's Cranny"], "sellPrice" : {"currency" : "bells", "value" : 227}, "buyPrices" : [{"currency" : "bells", "value" : 910}]}}, "category" : "Furniture"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "games": {"type": "object", "properties": {"nh": {"type": "object", "properties": {"orderable": {"type": "boolean"}, "sources": {"type": "array", "items": {"type": "string"}}, "sellPrice": {"type": "object", "properties": {"currency... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Char": {"type": "string"}, "Name": {"type": "string"}, "Color": {"type": "string"}, "ColorDark": {"type": "string"}, "Layer": {"type": "integer"}, "AlwaysVisible": {"type": "boolean"}, "Blocked": {"type": "boolean"},... | {"Char" : "&", "Name" : "enemy", "Color" : "transparent", "ColorDark" : "transparent", "Layer" : 5, "AlwaysVisible" : true, "Blocked" : true, "BlocksSight" : false, "AIType" : 3, "AITriggered" : true, "HPMax" : 3, "HPCurrent" : 3, "Attack" : 1, "Defense" : 0, "Basic" : 0, "Ballistic" : 0, "Explosive" : 0, "Kinetic" : 0... | json_instruct | {"type": "object", "properties": {"Char": {"type": "string"}, "Name": {"type": "string"}, "Color": {"type": "string"}, "ColorDark": {"type": "string"}, "Layer": {"type": "integer"}, "AlwaysVisible": {"type": "boolean"}, "Blocked": {"type": "boolean"}, "BlocksSight": {"type": "boolean"}, "AIType": {"type": "integer"}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string... | {"Department" : "\u0420\u043e\u043a\u0438\u0442\u043d\u0456\u0432\u0441\u044c\u043a\u0438\u0439 \u0432\u0456\u0434\u0434\u0456\u043b \u0421\u0430\u0440\u043d\u0435\u043d\u0441\u044c\u043a\u043e\u0457 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0457 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u04... | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"ty... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "module_name": {"type": "string"}, "publish_date": {"type... | {"id" : 21, "created_at" : "2015-10-17T19:41:46.382+00:00", "updated_at" : "2016-04-28T20:03:53+00:00", "title" : "Heap Based Buffer Overflow", "author" : "N/A", "module_name" : "libyaml", "publish_date" : "2014-02-04T17:31:34+00:00", "cves" : ["CVE-2013-6393"], "vulnerable_versions" : "<0.2.3", "patched_versions" : ">... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "module_name": {"type": "string"}, "publish_date": {"type": "string"}, "cves": {"type": "array", "items": {"type": "string"}}, "vuln... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "ti... | [{"e_id" : "5057", "title" : "\u7f57\u65af\u798f\u53d6\u6d88\u7f8e\u5143\u7684\u91d1\u672c\u4f4d\u5236", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572888\u5e74\u524d\u7684\u4eca\u5929\uff0c1933\u5e744\u670819\u65e5(\u519c\u53861933\u5e743\u670825\u65e5)\uff0c\u7f57\u65af\u798f\u53d6\u6d88\u7f8e\u5143\u7684\u91d1\u672c\u... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/dr... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {... | {"userId" : 36876, "cartId" : "7d0c0607-48c7-4367-aaea-452ff0148a16", "preferredProducts" : [1886, 136, 914, 3863, 4191, 3620], "productReviews" : [{"productId" : 4706, "reviewText" : "My bass loves to play with it.", "reviewDate" : "2020-01-09T09:22:43.3357503+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "facu... | {"courseCode" : "SC4210", "courseCredit" : "5", "description" : "This module deals with the main contemporary issues and problems that have their roots in migration and its consequences at the individual, societal, and global level. It will focus on the following issues and processes: the migratory process and the form... | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "1019", "provinceId" : "33", "regencyId" : "26", "districtId" : "13", "name" : "Kedungwuni Timur"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"Similarity" : "0.988", "Title" : "Frequency and Contextual Diversity Effects in Cross-Situational Word Learning", "Year" : 2009}, {"Similarity" : "0.988", "Title" : "Temporal Contiguity in Cross-Situational Statistical Learning", "Year" : 2009}, {"Similarity" : "0.987", "Title" : "Cross-Situational Statistical Learn... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "typescript": {"type": "string"}, "typescript-eslint-parser": {"type": "string"}}, "required": ["eslint", "typescrip... | {"license" : "SEE LICENSE IN LICENSE", "dependencies" : {"eslint" : "^4.10.0", "typescript" : "^2.5.3", "typescript-eslint-parser" : "^8.0.1"}, "devDependencies" : {"eslint-config-standard" : "^10.2.1", "eslint-plugin-import" : "^2.8.0", "eslint-plugin-node" : "^5.2.1", "eslint-plugin-promise" : "^3.6.0", "eslint-plugi... | json_instruct | {"type": "object", "properties": {"license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "typescript": {"type": "string"}, "typescript-eslint-parser": {"type": "string"}}, "required": ["eslint", "typescript", "typescript-eslint-parser"]}, "devDependencies": {"type... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "511802114200", "text" : "\u67ab\u6728\u6751\u59d4\u4f1a"}, {"id" : "511802114201", "text" : "\u674e\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "511802114202", "text" : "\u7d2b\u77f3\u6751\u59d4\u4f1a"}, {"id" : "511802114203", "text" : "\u516b\u6b65\u6751\u59d4\u4f1a"}, {"id" : "511802114204", "text" : "\u89c2\u5316\... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e... | {"nom" : "Saint-Clair", "dpt" : "Lot", "inscrits" : 145, "abs" : 14, "votants" : 131, "blancs" : 11, "nuls" : 8, "exp" : 112, "res" : [{"panneau" : "1", "voix" : 92}, {"panneau" : "2", "voix" : 20}]} | 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"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"opts": {"type": "object", "properties": {"template": {"type": "string"}, "destination": {"type": "string"}, "recurse": {"type": "boolean"}, "readme": {"type": "string"}}, "required": ["template", "destination", "re... | {"opts" : {"template" : "./node_modules/ink-docstrap/template", "destination" : "./docs/", "recurse" : true, "readme" : "README.md"}, "source" : {"includePattern" : ".+\\.js(doc|x)?$", "excludePattern" : "node_modules"}, "templates" : {"theme" : "cosmo"}} | json_instruct | {"type": "object", "properties": {"opts": {"type": "object", "properties": {"template": {"type": "string"}, "destination": {"type": "string"}, "recurse": {"type": "boolean"}, "readme": {"type": "string"}}, "required": ["template", "destination", "recurse", "readme"]}, "source": {"type": "object", "properties": {"includ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "341024106204", "text" : "\u96f7\u6e56\u6751\u6751\u59d4\u4f1a"}, {"id" : "341024106205", "text" : "\u661f\u661f\u6751\u6751\u59d4\u4f1a"}, {"id" : "341024106206", "text" : "\u57ce\u5b89\u6751\u6751\u59d4\u4f1a"}, {"id" : "341024106207", "text" : "\u82a6\u8354\u6751\u6751\u59d4\u4f1a"}, {"id" : "341024106212",... | 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": {"packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "source": {"type": "object", "properties": {"type"... | {"packages" : [{"name" : "components/font-awesome", "version" : "5.15.3", "version_normalized" : "5.15.3.0", "source" : {"type" : "git", "url" : "https://github.com/components/font-awesome.git", "reference" : "09f1f2e02ea0cd319569b32f8639b37dfcd7a62d"}, "dist" : {"type" : "zip", "url" : "https://api.github.com/repos/co... | json_instruct | {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "group": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "author": {"type": "string"}, "dateCreated": {"type": "string... | {"title" : "Reorderable ListView", "group" : "ListViews", "keywords" : ["list", "view", "items", "tile", "tiles", "listview", "reorder", "sort"], "description" : "With a single switch, the ListView can become reorderable", "author" : "Jeremy Foster", "dateCreated" : "2012/10/01"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "group": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "author": {"type": "string"}, "dateCreated": {"type": "string"}}, "required": ["title", "group", "keywords", "description", "author",... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "it... | {"required" : true, "minVersion" : "0.8", "package" : "net.melon.slabs.mixin", "compatibilityLevel" : "JAVA_16", "mixins" : ["ComposterMixin", "CactusMixin", "MelonMixin", "TridentMixin", "CriteriaMixin"], "client" : [], "server" : [], "injectors" : {"defaultRequire" : 1}} | json_instruct | {"type": "object", "properties": {"required": {"type": "boolean"}, "minVersion": {"type": "string"}, "package": {"type": "string"}, "compatibilityLevel": {"type": "string"}, "mixins": {"type": "array", "items": {"type": "string"}}, "client": {"type": "array", "items": {}}, "server": {"type": "array", "items": {}}, "inj... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.0a74b1fe.chunk.css"... | {"files" : {"main.js" : "/static/js/main.7390b87b.chunk.js", "main.js.map" : "/static/js/main.7390b87b.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.aef01254.js", "runtime-main.js.map" : "/static/js/runtime-main.aef01254.js.map", "static/css/2.0a74b1fe.chunk.css" : "/static/css/2.0a74b1fe.chunk.css", "sta... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.0a74b1fe.chunk.css": {"type": "string"}, "static/js/2.b6702176.chunk.js": {"type"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"editor.fontSize": {"type": "integer"}, "editor.minimap.enabled": {"type": "boolean"}, "editor.fontFamily": {"type": "string"}, "editor.fontLigatures": {"type": "boolean"}, "workbench.iconTheme": {"type": "string"}, "workben... | {"editor.fontSize" : 18, "editor.minimap.enabled" : false, "editor.fontFamily" : "Fira Code", "editor.fontLigatures" : true, "workbench.iconTheme" : "material-icon-theme", "workbench.colorTheme" : "Atom Dark Syntax"} | json_instruct | {"type": "object", "properties": {"editor.fontSize": {"type": "integer"}, "editor.minimap.enabled": {"type": "boolean"}, "editor.fontFamily": {"type": "string"}, "editor.fontLigatures": {"type": "boolean"}, "workbench.iconTheme": {"type": "string"}, "workbench.colorTheme": {"type": "string"}}, "required": ["editor.font... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"links": {"type": "object", "properties": {"static": {"type": "string"}, "html": {"type": "string"}, "fragment": {"type": "string"}, "self": {"type": "string"}}, "required": ["static", "html", "fragment", "self"]}, "n... | {"links" : {"static" : "docs/api/templating-binding/class/AttributeMap/method/register", "html" : "docs/api/templating-binding/class/AttributeMap/method/register/index.html", "fragment" : "docs/api/templating-binding/class/AttributeMap/method/register/index-fragment.html", "self" : "docs/api/templating-binding/class/At... | json_instruct | {"type": "object", "properties": {"links": {"type": "object", "properties": {"static": {"type": "string"}, "html": {"type": "string"}, "fragment": {"type": "string"}, "self": {"type": "string"}}, "required": ["static", "html", "fragment", "self"]}, "name": {"type": "string"}, "kindString": {"type": "string"}, "flags": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "ids": {"type": "array", "items": {"type": "string"}}}, "required": ["spec", "ids"], "$schema"... | {"spec" : {"title" : "Device Memory", "url" : "https://www.w3.org/TR/device-memory-1/"}, "ids" : ["toc-nav", "toc-jump", "toc-toggle", "title", "subtitle", "abstract", "status", "w3c_process_revision", "toc", "contents", "intro", "example", "sec-device-memory-client-hint-header", "computing-device-memory-value", "examp... | json_instruct | {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "ids": {"type": "array", "items": {"type": "string"}}}, "required": ["spec", "ids"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"source": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "targets": {"type": "object", "properties": {"default": {"type": "object", "properties":... | {"source" : "index.html", "scripts" : {"build" : "rm -rf ./dist && ./node_modules/.bin/parcel build"}, "targets" : {"default" : {"sourceMap" : false}}, "devDependencies" : {"parcel" : "2.3.2", "parcel-transformer-obfuscation" : "file:parcel-transformer-obfuscation"}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "targets": {"type": "object", "properties": {"default": {"type": "object", "properties": {"sourceMap": {"type": "boolean"}}, "required": ["sourceMap"]}}, "re... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/peglaci/lights/lights/talllight2/peglacilighttall2.object": {"type": "array", ... | [{"DeniedAlternatives" : [], "Files" : {"objects/peglaci/lights/lights/talllight2/peglacilighttall2.object" : ["/peglaciDescription"]}, "Texts" : {"Eng" : "A crystal lantern to light one's way on a dark winter's path,"}}, {"DeniedAlternatives" : [], "Files" : {"objects/peglaci/lights/lights/talllight2/peglacilighttall2... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/peglaci/lights/lights/talllight2/peglacilighttall2.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/peglaci/lights/lights/... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"... | {"userId" : 2072, "cartId" : "337cf3c8-ca9e-49fb-b4c5-368799f6f332", "preferredProducts" : [1065, 4736, 2904, 466], "productReviews" : [{"productId" : 3004, "reviewText" : "It only works when I'm Cook Islands.", "reviewDate" : "2016-12-12T23:09:02.8344518+02:00"}, {"productId" : 2667, "reviewText" : "My neighbor Betha ... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["654025405001", "\u6c99\u54c8\u793e\u533a\u751f\u6d3b\u533a", "121", "0"], ["654025405002", "\u5409\u5c14\u683c\u90ce\u793e\u533a\u751f\u6d3b\u533a", "122", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "license": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"... | {"name" : "@suggestify/nuxt", "version" : "0.0.2", "license" : "MIT", "repository" : "suggestifyjs/nuxt", "description" : "Fully accessible search with suggestions", "keywords" : ["nuxt", "nuxt3", "suggestify"], "contributors" : ["Max van der Schee"], "author" : {"name" : "Max van der Schee", "email" : "hello@maxvander... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}, "au... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "upda... | {"created_at" : 1475820551, "tags" : [], "title" : "0 \u7f8e\u5267", "updated_at" : 1475820551, "uuid" : "3F405FC6-31F1-4342-A56E-070B3C255B29"} | json_instruct | {"type": "object", "properties": {"created_at": {"type": "integer"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "updated_at": {"type": "integer"}, "uuid": {"type": "string"}}, "required": ["created_at", "tags", "title", "updated_at", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"angular-multi-select.min.css": {"type": "string"}, "angular-multi-select.min.js": {"type": "string"}}, "required": ["angular-multi-select.min.css", "angular-multi-select.min.js"], "$schema": "http://json-schema.org/... | {"angular-multi-select.min.css" : "sha256-kVkLLuYMD4c9TXkZTluvppl4PQG2k6HZL9Jz/sqtOcU=", "angular-multi-select.min.js" : "sha256-BhNCFJ1Vz7HYMVVfzWNwlZEb9vVOhlOmBhiz6w9Dmb8="} | json_instruct | {"type": "object", "properties": {"angular-multi-select.min.css": {"type": "string"}, "angular-multi-select.min.js": {"type": "string"}}, "required": ["angular-multi-select.min.css", "angular-multi-select.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "ho... | {"author" : "zbryikt", "name" : "ldlazy", "license" : "MIT", "description" : "Vanilla JS Lazy Show Library", "files" : ["dist/**/*"], "version" : "1.0.2", "homepage" : "https://github.com/loadingio/ldlazy", "repository" : {"type" : "git", "url" : "https://github.com/loadingio/ldlazy"}, "engines" : {"node" : ">=10.14.1"... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properti... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"agent": {"type": "object", "properties": {"agent_id": {"type": "string"}, "name": {"type": "string"}, "agent_org": {"type": "string"}, "description": {"type": "string"}}, "required": ["agent_id", "name", "agent_or... | {"agent" : {"agent_id" : "CrossWOZ", "name" : "CrossWOZ", "agent_org" : "CrossWOZ", "description" : "generated from CrossWOZ data set"}, "entities" : [{}], "composites" : [{}], "intents" : [{"meta_id" : "CrossWOZ.\u666f\u70b9", "name" : "\u666f\u70b9", "slots" : [{"attribute_id" : "\u666f\u70b9.\u540d\u79f0", "name" : ... | json_instruct | {"type": "object", "properties": {"agent": {"type": "object", "properties": {"agent_id": {"type": "string"}, "name": {"type": "string"}, "agent_org": {"type": "string"}, "description": {"type": "string"}}, "required": ["agent_id", "name", "agent_org", "description"]}, "entities": {"type": "array", "items": {"type": "ob... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}}, "required": ["backbone.marionette.js", "backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"backbone.marionette.js" : "sha256-eBPvxpYxl4rnMPX70TxY8Brclh70xdsnrzyv9AIn6d0=", "backbone.marionette.min.js" : "sha256-LkS6MySb8XKoCFmqYEngVpUkfgk0ZVlsEnrs3NiyVTg="} | json_instruct | {"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}}, "required": ["backbone.marionette.js", "backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["css", "js"]}, "cachebust": {"type": "string"}}, "required... | {"files" : {"css" : ["lib/bootstrap/css/bootstrap.min.css", "mxclientsystem/mxui/ui/mxui.css", "css/theme.css"], "js" : ["mxclientsystem/mxui/mxui.js", "js/jquerymin.js", "widgets/pushNotifications/lib/PushNotification.js"]}, "cachebust" : "635621064987856279"} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["css", "js"]}, "cachebust": {"type": "string"}}, "required": ["files", "cachebust"], "$schema": "http://json-schema.org/... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Couscous\\": {"type": "string"}}, "required": ["Couscous\\"]}}, "r... | {"name" : "couscous/couscous", "license" : "MIT", "autoload" : {"psr-4" : {"Couscous\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Couscous\\Tests\\" : "tests/"}}, "bin" : ["bin/couscous"], "require" : {"php" : ">=7.1", "symfony/console" : "~3.0|~4.0|~5.0", "symfony/filesystem" : "~3.0|~4.0|~5.0", "symfony/finder" : "~3... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Couscous\\": {"type": "string"}}, "required": ["Couscous\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type":... | {"loss" : [35.045066833496094, 7.341156482696533, 3.9869751930236816, 2.8977346420288086, 2.3212788105010986, 1.943124771118164, 1.691643476486206, 1.5245507955551147, 1.3831002712249756, 1.2611188888549805], "accuracy" : [0.855212926864624, 0.9551016688346863, 0.975286066532135, 0.9822790622711182, 0.9857755899429321,... | json_instruct | {"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy", "val_loss", ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "9418010", "nama" : "KANGGIME"}, {"id" : "9418011", "nama" : "WONIKI"}, {"id" : "9418012", "nama" : "NABUNAGE"}, {"id" : "9418013", "nama" : "GILUBANDU"}, {"id" : "9418014", "nama" : "WAKUO"}, {"id" : "9418015", "nama" : "AWEKU"}, {"id" : "9418016", "nama" : "BOGONUK"}, {"id" : "9418020", "nama" : "KARUBAGA"},... | 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 sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["flamingo", "flamingo-s3", "flamingo-sentry", "graph-crdt", "newman", "node-purestorage", "postman-collection", "postman-runtime", "script_sanitize"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod... | {"userId" : 70140, "cartId" : "b1f3a3e2-6e1f-4a62-bd11-165124a2a6ae", "preferredProducts" : [879, 4681, 69, 2275, 2399, 229, 1167], "productReviews" : [{"productId" : 2576, "reviewText" : "talk about optimism!!!", "reviewDate" : "2019-10-30T05:41:12.4900272+02:00"}, {"productId" : 1556, "reviewText" : "i use it this ti... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "2002", "provinceId" : "64", "regencyId" : "08", "districtId" : "17", "name" : "Beno Harapan"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "name" : "Erlich Bachman"}, {"id" : 2, "name" : "Gilfoyle"}, {"id" : 3, "name" : "Richard Hendriks"}, {"id" : 4, "name" : "Jared Dunn"}, {"id" : 5, "name" : "Dinesh"}, {"id" : 6, "name" : "Big Head"}, {"id" : 7, "name" : "Gavin Belson"}, {"id" : 8, "name" : "Monica"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "... | {"schema_version" : "1.2.0", "id" : "GHSA-mqvp-7rrg-9jxc", "modified" : "2022-03-05T00:00:44Z", "published" : "2022-03-05T00:00:44Z", "aliases" : ["CVE-2022-26336"], "details" : "A shortcoming in the HMEF package of poi-scratchpad (Apache POI) allows an attacker to cause an Out of Memory exception. This package is used... | 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": {}}, "affected": {"type": "a... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "ucsc-bedclip", "downloads" : 23200, "count" : 7946}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version-date": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "supports": {"type": "string"}, "dependencies": {"type": "array", "items": {"t... | {"name" : "farmhash", "version-date" : "2021-10-28", "description" : "FarmHash, a family of hash functions.", "homepage" : "https://github.com/google/farmhash", "supports" : "!arm", "dependencies" : [{"name" : "vcpkg-cmake", "host" : true}, {"name" : "vcpkg-cmake-config", "host" : true}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version-date": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "supports": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "host": {"type": "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "requir... | {"index" : 529, "hash" : 1941802475, "artDyeHash" : 1941802475, "redacted" : false, "dyeManifestHash" : 1932604395, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}, "title": {"type":... | {"class" : ["representation"], "links" : [{"rel" : ["about"], "href" : "/about", "title" : "about"}]} | json_instruct | {"type": "object", "properties": {"class": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "object", "properties": {"rel": {"type": "array", "items": {"type": "string"}}, "href": {"type": "string"}, "title": {"type": "string"}}, "required": ["rel", "href", "title"]}}}, "requ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "s... | {"name" : "ISONIAZIDE TABLET 300 MG INDO FARMA", "harga" : " Rp. 106.594/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "INH / isoniazid", "indikasi" : "Pengobatan semua jenis tuberkulosa dikombinasikan dengan obat anti tuberkulosa lainnya. Dapat digunakan ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool"... | {"contract" : "0x6dfc684055cef68794adde05a8de2f39d8b5413c", "tool" : "solhint", "start" : 1563597765.2875319, "end" : 1563597769.4816663, "duration" : 4.194134473800659, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"query": {"type": "object", "properties": {"prefix": {"type": "object", "properties": {"user": {"type": "object", "properties": {"value": {"type": "string"}, "boost": {"type": "number"}}, "required": ["value", "boost"]}}, "requ... | {"query" : {"prefix" : {"user" : {"value" : "ki", "boost" : 2.0}}}} | json_instruct | {"type": "object", "properties": {"query": {"type": "object", "properties": {"prefix": {"type": "object", "properties": {"user": {"type": "object", "properties": {"value": {"type": "string"}, "boost": {"type": "number"}}, "required": ["value", "boost"]}}, "required": ["user"]}}, "required": ["prefix"]}}, "required": ["... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"employees": {"type": "array", "items": {}}}, "required": ["employees"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"employees" : []} | json_instruct | {"type": "object", "properties": {"employees": {"type": "array", "items": {}}}, "required": ["employees"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "object", "properties": {"text": {"type": "string"}, "package": {"type": "string"}, "id": {"type": "string"}}, "required": ["text", "package", "id"]}, "description": {"type": "object", "proper... | {"name" : {"text" : "Kafka output", "package" : "{E9BCFE2B-304A-4D7F-836F-F3A4FB1A1451}", "id" : "2200"}, "description" : {"text" : "A C# function that will send a message to a specified Kafka Topic", "package" : "{E9BCFE2B-304A-4D7F-836F-F3A4FB1A1451}", "id" : "2201"}, "order" : 1020, "icon" : "vs-2017.3/functionF.png... | json_instruct | {"type": "object", "properties": {"name": {"type": "object", "properties": {"text": {"type": "string"}, "package": {"type": "string"}, "id": {"type": "string"}}, "required": ["text", "package", "id"]}, "description": {"type": "object", "properties": {"text": {"type": "string"}, "package": {"type": "string"}, "id": {"ty... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {... | {"name" : "flio-makeit", "authors" : ["Massimo Menichinelli <info@openp2pdesign.org>"], "description" : "", "main" : "", "license" : "MIT", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"d3" : "^4.5.0", "kjua" : "lrsjng/kjua#^0.1.1", "bootstrap" : "^3.3.7"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "mail": {"type": "string"}, "company": {"type": "string"}}, "required": ["id", "name", "mail", "company... | {"data" : [{"id" : 1, "name" : "Ivan", "mail" : "ivan@gmail.com", "company" : "GreedIvanCompany"}, {"id" : 2, "name" : "Denis", "mail" : "denis@gmail.com", "company" : "GreadDenisCompany"}, {"id" : 3, "name" : "Alex", "mail" : "alex@gmail.com", "company" : "CoolAlexCompany"}]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "mail": {"type": "string"}, "company": {"type": "string"}}, "required": ["id", "name", "mail", "company"]}}}, "required": ["data"], "$schema": "http://json-schema... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "autho... | {"title" : "\u30a2\u30eb\u30c8\u30ea\u30a2 : \u30c9\u30e9\u30de\u30c4\u30eb\u30ae\u30fc", "author" : "chk3D", "description" : "<imgundefinedsrc='https://i.iwara.tv/sites/default/files/styles/medium/public/videos/thumbnails/1410094/thumbnail-1410094_0010.jpg?itok=RLWg5Htm'undefinedalt=''undefinedclass='bb-image'>", "thu... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"usages": {"type": "array", "items": {"type": "string"}}}, "required": ["usages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"usages" : ["JKJ.java", "jkj_.java", "jkj_.kt"]} | json_instruct | {"type": "object", "properties": {"usages": {"type": "array", "items": {"type": "string"}}}, "required": ["usages"], "$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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["tes... | {"name" : "yop-promises", "version" : "1.4.0", "description" : "", "main" : "lib/promises.js", "directories" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ericminio/yop-promises.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/ericminio/yop-promises/i... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"last_check" : "2019-02-06T10:21:47Z", "pypi_version" : "19.0.1"} | json_instruct | {"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"eg.js": {"type": "string"}, "eg.min.js": {"type": "string"}, "pkgd/eg.pkgd.min.js": {"type": "string"}, "pkgd/flicking.pkgd.min.js": {"type": "string"}, "pkgd/infiniteGrid.pkgd.min.js": {"type": "string"}}, "required": ["eg.js... | {"eg.js" : "sha512-1+F9xLeEMUfPP8PGe+afcUN6LjG56p5fpEGrfTlZnzHS64gvoFGn0p4/nYMQe6AfM0o9kKJECfp0DU8ZHnL6lw==", "eg.min.js" : "sha512-VQ1Sw8n5ih70DDEhad24a0xkIKvSqiUW5wcYOjQc++cqx61+oKbpbZHHXEk4Yjcrj2RlFsxEHPeNpnsaiO6z5g==", "pkgd/eg.pkgd.min.js" : "sha512-hG5nyjJeEmpCykjG0zU2aFRveu8OFAQg8+6B02+tC33d6GaiXs0X83Sm5Tyg/BZMl... | json_instruct | {"type": "object", "properties": {"eg.js": {"type": "string"}, "eg.min.js": {"type": "string"}, "pkgd/eg.pkgd.min.js": {"type": "string"}, "pkgd/flicking.pkgd.min.js": {"type": "string"}, "pkgd/infiniteGrid.pkgd.min.js": {"type": "string"}}, "required": ["eg.js", "eg.min.js", "pkgd/eg.pkgd.min.js", "pkgd/flicking.pkgd.... |
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" : "OMRA", "frequency" : 1, "gender" : "female"}] | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"__typename": {"type": "object", "properties": {"S": {"type": "string"}}, "required": ["S"]}, "drivetrain": {"type": "object", "properties": {"S": {"type": "string"}}, "required": ["S"]}, "createdAt": {"type": "object", "properti... | {"__typename" : {"S" : "Car"}, "drivetrain" : {"S" : "FR"}, "createdAt" : {"S" : "2019-01-30T11:51:30.687Z"}, "stability" : {"N" : "6.4"}, "name" : {"S" : "MOTUL AUTECH GT-R"}, "weight" : {"N" : "1020"}, "cornering" : {"N" : "5.5"}, "division" : {"S" : "Gr.2"}, "braking" : {"N" : "5.5"}, "acceleration" : {"N" : "6.4"},... | json_instruct | {"type": "object", "properties": {"__typename": {"type": "object", "properties": {"S": {"type": "string"}}, "required": ["S"]}, "drivetrain": {"type": "object", "properties": {"S": {"type": "string"}}, "required": ["S"]}, "createdAt": {"type": "object", "properties": {"S": {"type": "string"}}, "required": ["S"]}, "stab... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.