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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "hectares": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "hectares", "name", "site-plan-url", "ownership-status", "start-date", "site", "planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "planning-permission-status", "organisation", "point", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.47, 50.65]}, "properties" : {"site-address" : "Dorset Vehicle Rentals, Dorchester Road", "hectares" : "0.19", "name" : "LA/WEYM/025", "site-plan-url" : "https://www.dorsetcouncil.gov.uk/planning-buildings-land/planning-policy/brownfield-land-register.aspx", "ownership-status" : "not owned by a public authority", "start-date" : "2020-01-04", "site" : "LA/WEYM/025", "planning-permission-history" : "https://www.dorsetcouncil.gov.uk/planning-buildings-land/planning/planning-application-search-and-comment.aspx", "maximum-net-dwellings" : "6", "minimum-net-dwellings" : "6", "planning-permission-status" : "not permissioned", "organisation" : "local-authority-eng:DST", "point" : "POINT(-2.47 50.65)", "slug" : "/brownfield-land/local-authority-eng/DST/LA-WEYM-025", "entity" : 481433, "entry-date" : "2020-01-04"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-address": {"type": "string"}, "hectares": {"type": "string"}, "name": {"type": "string"}, "site-plan-url": {"type": "string"}, "ownership-status": {"type": "string"}, "start-date": {"type": "string"}, "site": {"type": "string"}, "planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "organisation": {"type": "string"}, "point": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-address", "hectares", "name", "site-plan-url", "ownership-status", "start-date", "site", "planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "planning-permission-status", "organisation", "point", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-header": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-header", "gulp-rename", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "exploded-dom-js", "version" : "1.3.4", "description" : "A lightweight library to add 3D effects to HTML elements.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/JoshHills/exploded-dom-js.git"}, "keywords" : ["css", "3d", "dom", "hover", "effect", "animation"], "author" : "Josh Hills", "license" : "MIT", "bugs" : {"url" : "https://github.com/JoshHills/exploded-dom-js/issues"}, "homepage" : "https://github.com/JoshHills/exploded-dom-js#readme", "devDependencies" : {"gulp" : "^3.9.1", "gulp-header" : "^1.8.8", "gulp-rename" : "^1.2.2", "gulp-uglify" : "^2.1.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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-header": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-header", "gulp-rename", "gulp-uglify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"batch_size": {"type": "integer"}, "checkpoint_dir": {"type": "string"}, "dataset_dir": {"type": "string"}, "dataset_info": {"type": "boolean"}, "device": {"type": "string"}, "epochs": {"type": "integer"}, "img_h": {"type": "integer"}, "img_w": {"type": "integer"}, "loss": {"type": "string"}, "lr_patience": {"type": "integer"}, "lr_rate": {"type": "number"}, "model_name": {"type": "string"}, "model": {"type": "string"}, "optimizer": {"type": "string"}, "slice_factor": {"type": "number"}, "stop_patience": {"type": "integer"}, "val_split": {"type": "number"}, "workers": {"type": "integer"}}, "required": ["batch_size", "checkpoint_dir", "dataset_dir", "dataset_info", "device", "epochs", "img_h", "img_w", "loss", "lr_patience", "lr_rate", "model_name", "model", "optimizer", "slice_factor", "stop_patience", "val_split", "workers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"batch_size" : 2, "checkpoint_dir" : "checkpoints", "dataset_dir" : "../dataset/", "dataset_info" : false, "device" : "cuda", "epochs" : 10, "img_h" : 224, "img_w" : 224, "loss" : "bce_logbdl", "lr_patience" : 2, "lr_rate" : 0.001, "model_name" : "linknet", "model" : "linknet", "optimizer" : "adam", "slice_factor" : 1.0, "stop_patience" : 5, "val_split" : 0.15, "workers" : 4} | json_instruct | {"type": "object", "properties": {"batch_size": {"type": "integer"}, "checkpoint_dir": {"type": "string"}, "dataset_dir": {"type": "string"}, "dataset_info": {"type": "boolean"}, "device": {"type": "string"}, "epochs": {"type": "integer"}, "img_h": {"type": "integer"}, "img_w": {"type": "integer"}, "loss": {"type": "string"}, "lr_patience": {"type": "integer"}, "lr_rate": {"type": "number"}, "model_name": {"type": "string"}, "model": {"type": "string"}, "optimizer": {"type": "string"}, "slice_factor": {"type": "number"}, "stop_patience": {"type": "integer"}, "val_split": {"type": "number"}, "workers": {"type": "integer"}}, "required": ["batch_size", "checkpoint_dir", "dataset_dir", "dataset_info", "device", "epochs", "img_h", "img_w", "loss", "lr_patience", "lr_rate", "model_name", "model", "optimizer", "slice_factor", "stop_patience", "val_split", "workers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xe4707dac5f8a942f98b2181129346ef37d075a69", "tool" : "honeybadger", "start" : 1565888490.2803533, "end" : 1565888595.03072, "duration" : 104.75036668777466, "analysis" : [{"errors" : [], "file" : "/unique_chucks/5/0xe4707dac5f8a942f98b2181129346ef37d075a69.sol", "name" : "Cryptlo"}, {"errors" : [], "file" : "/unique_chucks/5/0xe4707dac5f8a942f98b2181129346ef37d075a69.sol", "name" : "Owned"}, {"errors" : [], "file" : "/unique_chucks/5/0xe4707dac5f8a942f98b2181129346ef37d075a69.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}}, "required": ["lib"]}, "files": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "../../tsconfig.json", "compilerOptions" : {"lib" : ["es2017", "webworker"]}, "files" : ["service-worker.ts"], "exclude" : ["../index.ts"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}}, "required": ["lib"]}, "files": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"dataset": {"type": "string"}, "algorithm": {"type": "string"}, "config": {"type": "object", "properties": {"source": {"type": "string"}, "seeds": {"type": "array", "items": {"type": "integer"}}, "count": {"type": "integer"}}, "required": ["source", "seeds", "count"]}, "metrics": {"type": "object", "properties": {"train": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}, "val": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}, "test": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}}, "required": ["train", "val", "test"]}}, "required": ["dataset", "algorithm", "config", "metrics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataset" : "yahoo", "algorithm" : "mlp", "config" : {"source" : "output/yahoo/mlp/tuned_2", "seeds" : [5, 6, 7, 8, 9], "count" : 5}, "metrics" : {"train" : {"rmse" : 0.6936316147324019, "score" : -0.6936316147324019}, "val" : {"rmse" : 0.7668894450573257, "score" : -0.7668894450573257}, "test" : {"rmse" : 0.7527146501893512, "score" : -0.7527146501893512}}} | json_instruct | {"type": "object", "properties": {"dataset": {"type": "string"}, "algorithm": {"type": "string"}, "config": {"type": "object", "properties": {"source": {"type": "string"}, "seeds": {"type": "array", "items": {"type": "integer"}}, "count": {"type": "integer"}}, "required": ["source", "seeds", "count"]}, "metrics": {"type": "object", "properties": {"train": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}, "val": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}, "test": {"type": "object", "properties": {"rmse": {"type": "number"}, "score": {"type": "number"}}, "required": ["rmse", "score"]}}, "required": ["train", "val", "test"]}}, "required": ["dataset", "algorithm", "config", "metrics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "CustomerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "PIN": {"type": "integer"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "CustomerID", "FirstName", "LastName", "Email", "Postal", "Phone", "PIN", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ObjectID" : {"$oid" : "5cd0da4d595825787d473917"}, "CustomerID" : "26c35880-c570-4b3f-a2cb-0e08b16d5e6f", "FirstName" : "Dixie", "LastName" : "Mccall", "Email" : "dixiemccall@comvex.com", "Postal" : "37626-2354", "Phone" : "(854) 438-2555", "PIN" : 4453, "Updated" : "2010-01-25T05:52:41"} | json_instruct | {"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "CustomerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "PIN": {"type": "integer"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "CustomerID", "FirstName", "LastName", "Email", "Postal", "Phone", "PIN", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1901272519, "name" : "\u4ece\u524d\u90a3\u4e2a\u5c11\u5e74", "dt" : 55073, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137104214, "name" : "\u8ff7\u4eba\u7684\u5371\u9669", "picUrl" : "https://p2.music.126.net/PvR5FW0uLrx59nC64a5kjg==/109951166700778248.jpg"}}, {"id" : 1900687288, "name" : "\u4f73\u4f73", "dt" : 44486, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137041430, "name" : "\u4f73\u4f73", "picUrl" : "https://p2.music.126.net/_WqoeVrakr2V2-GfMI6Dnw==/109951166692552987.jpg"}}, {"id" : 1902066097, "name" : "Ea7 \u98ce\u683c", "dt" : 106501, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137268992, "name" : "Ea7\u98ce\u683c", "picUrl" : "https://p1.music.126.net/rcuVMUZ7fvlXJqRBLDY1Tg==/109951166711637497.jpg"}}, {"id" : 1901755062, "name" : "\u5173\u5c71\u9152 (416\u5973\u56e2)", "dt" : 24894, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137135965, "name" : "416\u5973\u56e2\uff08\u6296\u97f3\uff09", "picUrl" : "https://p2.music.126.net/4xaGTWd23no3HS7RVrURwQ==/109951166702174209.jpg"}}, {"id" : 1901755935, "name" : "\u63a2\u7a97.Live (416\u5973\u56e2)", "dt" : 32626, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137135965, "name" : "416\u5973\u56e2\uff08\u6296\u97f3\uff09", "picUrl" : "https://p2.music.126.net/4xaGTWd23no3HS7RVrURwQ==/109951166702174209.jpg"}}, {"id" : 1901388748, "name" : "\u63a2\u7a97 \uff08416\u5973\u56e2\uff09", "dt" : 188264, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137135965, "name" : "416\u5973\u56e2\uff08\u6296\u97f3\uff09", "picUrl" : "https://p1.music.126.net/4xaGTWd23no3HS7RVrURwQ==/109951166702174209.jpg"}}, {"id" : 1901315778, "name" : "\u7a7a\u53f0\u620f\uff08416\u5973\u56e2\uff09", "dt" : 220525, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137135965, "name" : "416\u5973\u56e2\uff08\u6296\u97f3\uff09", "picUrl" : "https://p1.music.126.net/4xaGTWd23no3HS7RVrURwQ==/109951166702174209.jpg"}}, {"id" : 1901205220, "name" : "\u60f3\u4f60\u8fd9\u4ef6\u4e8b", "dt" : 71447, "ar" : {"id" : 50630442, "name" : "Rekip.E\u2121"}, "al" : {"id" : 137105237, "name" : "\u60f3\u4f60\u8fd9\u4ef6\u4e8b", "picUrl" : "https://p2.music.126.net/0o7vEwNwac1Q8rnPcisZ2w==/109951166700831272.jpg"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "autolinker"}, {"name" : "basis_universal", "license" : ["Apache-2.0"], "version" : "1.15", "url" : "https://github.com/BinomialLLC/basis_universal"}, {"name" : "bitmap-sdf"}, {"name" : "dompurify", "license" : ["Apache-2.0"], "notes" : "dompurify is available as both MPL-2.0 OR Apache-2.0"}, {"name" : "draco3d"}, {"name" : "earcut"}, {"name" : "grapheme-splitter"}, {"name" : "jsep"}, {"name" : "kdbush"}, {"name" : "Knockout", "license" : ["MIT"], "version" : "3.5.1", "url" : "https://knockoutjs.com/"}, {"name" : "Knockout ES5 plugin", "license" : ["MIT"], "version" : "0.4.6", "url" : "https://github.com/SteveSanderson/knockout-es5"}, {"name" : "ktx-parse"}, {"name" : "lerc"}, {"name" : "mersenne-twister"}, {"name" : "meshoptimizer"}, {"name" : "nosleep.js"}, {"name" : "pako", "license" : ["MIT"], "notes" : "pako is MIT, and its dependency zlib is attributed separately"}, {"name" : "protobufjs"}, {"name" : "rbush"}, {"name" : "requirejs", "license" : ["MIT"], "version" : "2.1.20", "url" : "https://www.npmjs.com/package/requirejs"}, {"name" : "topojson-client"}, {"name" : "tween.js"}, {"name" : "urijs"}, {"name" : "@zip.js/zip.js"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$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"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}}, "required": ["release"]}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}}, "required": ["loader-utils"]}, "devDependencies": {"type": "object", "properties": {"standard-version": {"type": "string"}}, "required": ["standard-version"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "author", "description", "license", "main", "files", "engines", "scripts", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bundle-loader", "version" : "0.5.6", "author" : "Tobias Koppers @sokra", "description" : "bundle loader module for webpack", "license" : "MIT", "main" : "index.js", "files" : ["index.js"], "engines" : {"node" : ">= 4"}, "scripts" : {"release" : "standard-version"}, "dependencies" : {"loader-utils" : "^1.1.0"}, "devDependencies" : {"standard-version" : "^4.0.0"}, "repository" : "https://github.com/webpack-contrib/bundle-loader.git", "bugs" : "https://github.com/webpack-contrib/bundle-loader/issues", "homepage" : "https://webpack.js.org/loaders/bundle-loader"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}}, "required": ["release"]}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}}, "required": ["loader-utils"]}, "devDependencies": {"type": "object", "properties": {"standard-version": {"type": "string"}}, "required": ["standard-version"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "version", "author", "description", "license", "main", "files", "engines", "scripts", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"package_name": {"type": "string"}, "non_idl_tuples": {"type": "array", "items": {"type": "string"}}}, "required": ["package_name", "non_idl_tuples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"package_name" : "more_interfaces", "non_idl_tuples" : ["/home/samir/Samir/Projects_Others/ros2_ws/ros2_foxy_tutorial_ws/dev_ws/src/more_interfaces:msg/AddressBook.msg"]} | json_instruct | {"type": "object", "properties": {"package_name": {"type": "string"}, "non_idl_tuples": {"type": "array", "items": {"type": "string"}}}, "required": ["package_name", "non_idl_tuples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"custodyArrangementExchangeActionTaskReference": {"type": "string"}, "custodyArrangementSelectedOption": {"type": "string"}, "custodyArrangementExchangeActionTaskRecord": {"type": "object", "properties": {}, "required": []}, "custodyArrangementParameterType": {"type": "string"}, "custodyArrangementSchedule": {"type": "string"}, "custodyArrangementStatus": {"type": "string"}, "custodyArrangementExchangeActionResponse": {"type": "string"}}, "required": ["custodyArrangementExchangeActionTaskReference", "custodyArrangementSelectedOption", "custodyArrangementExchangeActionTaskRecord", "custodyArrangementParameterType", "custodyArrangementSchedule", "custodyArrangementStatus", "custodyArrangementExchangeActionResponse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"custodyArrangementExchangeActionTaskReference" : "CAEATR772611", "custodyArrangementSelectedOption" : "custodyArrangementSelectedOption", "custodyArrangementExchangeActionTaskRecord" : {}, "custodyArrangementParameterType" : "custodyArrangementParameterType", "custodyArrangementSchedule" : "custodyArrangementSchedule", "custodyArrangementStatus" : "custodyArrangementStatus", "custodyArrangementExchangeActionResponse" : "custodyArrangementExchangeActionResponse"} | json_instruct | {"type": "object", "properties": {"custodyArrangementExchangeActionTaskReference": {"type": "string"}, "custodyArrangementSelectedOption": {"type": "string"}, "custodyArrangementExchangeActionTaskRecord": {"type": "object", "properties": {}, "required": []}, "custodyArrangementParameterType": {"type": "string"}, "custodyArrangementSchedule": {"type": "string"}, "custodyArrangementStatus": {"type": "string"}, "custodyArrangementExchangeActionResponse": {"type": "string"}}, "required": ["custodyArrangementExchangeActionTaskReference", "custodyArrangementSelectedOption", "custodyArrangementExchangeActionTaskRecord", "custodyArrangementParameterType", "custodyArrangementSchedule", "custodyArrangementStatus", "custodyArrangementExchangeActionResponse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "description": {"type": "string"}, "caseSensitive": {"type": "boolean"}, "valueSet": {"type": "string"}, "content": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}, "definition": {"type": "string"}}, "required": ["code", "display", "definition"]}}}, "required": ["resourceType", "id", "meta", "text", "extension", "url", "version", "name", "status", "experimental", "description", "caseSensitive", "valueSet", "content", "concept"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "CodeSystem", "id" : "note-type", "meta" : {"lastUpdated" : "2016-03-31T08:01:25.570+11:00"}, "text" : {"status" : "generated", "div" : "<div><h2>NoteType</h2><p>The presentation types of notes.</p><p>This code system http://hl7.org/fhir/note-type defines the following codes:</p><table class=\"codes\"><tr><td><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td>display<a name=\"display\"> </a></td><td>Display</td><td>Display the note.</td></tr><tr><td>print<a name=\"print\"> </a></td><td>Print (Form)</td><td>Print the note on the form.</td></tr><tr><td>printoper<a name=\"printoper\"> </a></td><td>Print (Operator)</td><td>Print the note for the operator.</td></tr></table></div>"}, "extension" : [{"url" : "http://hl7.org/fhir/StructureDefinition/valueset-oid", "valueUri" : "urn:oid:2.16.840.1.113883.4.642.1.8"}], "url" : "http://hl7.org/fhir/note-type", "version" : "1.4.0", "name" : "NoteType", "status" : "draft", "experimental" : false, "description" : "The presentation types of notes.", "caseSensitive" : true, "valueSet" : "http://hl7.org/fhir/ValueSet/note-type", "content" : "complete", "concept" : [{"code" : "display", "display" : "Display", "definition" : "Display the note."}, {"code" : "print", "display" : "Print (Form)", "definition" : "Print the note on the form."}, {"code" : "printoper", "display" : "Print (Operator)", "definition" : "Print the note for the operator."}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"}}, "required": ["status", "div"]}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueUri": {"type": "string"}}, "required": ["url", "valueUri"]}}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "description": {"type": "string"}, "caseSensitive": {"type": "boolean"}, "valueSet": {"type": "string"}, "content": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}, "definition": {"type": "string"}}, "required": ["code", "display", "definition"]}}}, "required": ["resourceType", "id", "meta", "text", "extension", "url", "version", "name", "status", "experimental", "description", "caseSensitive", "valueSet", "content", "concept"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.97": {"type": "integer"}, "1.0": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "0.09": {"type": "integer"}, "0.13": {"type": "integer"}, "0.64": {"type": "integer"}}, "required": ["0.97", "1.0", "0.96", "0.99", "0.09", "0.13", "0.64"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hour positive count" : 12, "hour neutral count" : 1, "hour negative count" : 2, "hour distri" : {"0.97" : 1, "1.0" : 7, "0.96" : 1, "0.99" : 3, "0.09" : 1, "0.13" : 1, "0.64" : 1}} | json_instruct | {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.97": {"type": "integer"}, "1.0": {"type": "integer"}, "0.96": {"type": "integer"}, "0.99": {"type": "integer"}, "0.09": {"type": "integer"}, "0.13": {"type": "integer"}, "0.64": {"type": "integer"}}, "required": ["0.97", "1.0", "0.96", "0.99", "0.09", "0.13", "0.64"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["In a large pot of boiling salted water, cook angel hair pasta until al dente. Drain.", "In a large saute pan, heat butter over medium heat until melted. Stir in the Cajun seasoning and heavy cream. Cook until sauce is reduced by half.", "Stir in the green onions and crayfish or shrimp. Heat thoroughly. Serve over hot angel hair pasta."], "ingredients" : ["2 (8 ounce) packages angel hair pasta", "1/2 cup butter", "6 cups heavy whipping cream", "1 cup chopped green onions", "1 1/2 pounds cooked shrimp - peeled and deveined", "3 tablespoons Cajun seasoning"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Crayfish or Shrimp Pasta", "url" : "http://allrecipes.com/recipe/12778/crayfish-or-shrimp-pasta/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "\u1ea4n Nham", "description" : "D\u1ea5u \u1ea5n nh\u1eadn \u0111\u01b0\u1ee3c khi c\u00f3 \u0111\u01b0\u1ee3c s\u1ef1 ch\u1ea5p nh\u1eadn c\u1ee7a nham th\u1ea1ch v\u00f9ng Liyue.\nD\u00f9ng \u0111\u1ec3 \u0111\u1ed5i v\u1eadt ph\u1ea9m \u0111\u1eb7c bi\u1ec7t \u1edf c\u1ea3ng Liyue.", "sortorder" : 456, "rarity" : "3", "category" : "CONSUME", "materialtype" : "Con D\u1ea5u 7 \u0110\u1ea5t N\u01b0\u1edbc", "source" : ["Th\u01b0\u1edfng Th\u00e1m Hi\u1ec3m Khu V\u1ef1c Liyue"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "rarity", "category", "materialtype", "source"], "$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": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "LGE", "market_name" : "G4 Beat", "codename" : "p1bssn", "model" : "LG-H735"}, {"manufacturer" : "LGE", "market_name" : "G4 vigor", "codename" : "p1bssn", "model" : "LG-H731"}, {"manufacturer" : "LGE", "market_name" : "LG G4 Beat", "codename" : "p1bssn", "model" : "LG-H735"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Martin Barnes"}, {"author" : "Pritha Sharma"}, {"author" : "Vikas Kumar"}, {"author" : "Alan Kaell"}, {"author" : "William LiPera"}], "doi" : "10.1186/s13256-020-02404-x", "publication_date" : "2020-07-14", "id" : "EN110810", "url" : "https://pubmed.ncbi.nlm.nih.gov/32654665", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 72-year-old Caucasian (white) man diagnosed with monoclonal immunoglobin M kappa lymphoplasmacytic lymphoma/Waldenstrom's macroglobulinemia monitored without treatment for 2 years, presented with dyspnea and a left pleural effusion. At presentation, computed tomography scans of his chest, abdomen, and pelvis showed layering left pleural effusion and para-aortic lymphadenopathy. Pleural fluid cytology demonstrated B-cell lymphoma of the lymphoplasmacytic subtype, with monoclonal kappa B-cell population on flow and a positive MYD88 L265P mutation. The pleural effusion recurred post-thoracentesis and he achieved a lasting complete remission as defined by National Comprehensive Cancer Network guideline with 240\u2009mg ibrutinib."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "name", "state"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "properties", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "properties" : {"kind" : "state", "state" : "LA"}, "features" : [{"type" : "Feature", "properties" : {"kind" : "county", "name" : "Red River", "state" : "LA"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-93.4716, 32.2353], [-93.4277, 32.2353], [-93.2141, 32.2353], [-93.1868, 32.1477], [-93.1375, 32.0546], [-93.1594, 32.0053], [-93.121, 31.9724], [-93.2361, 31.9724], [-93.2415, 31.9012], [-93.2799, 31.8848], [-93.3511, 31.9012], [-93.3565, 31.9341], [-93.4825, 32.0327], [-93.5428, 32.1039], [-93.5099, 32.1313], [-93.5263, 32.186], [-93.614, 32.2353]]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "state"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["kind", "name", "state"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "properties", "features"], "$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"}, "imdbId": {"type": "string"}, "title": {"type": "string"}, "tmdbId": {"type": "integer"}, "releaseDate": {"type": "string"}, "directors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "__typename": {"type": "string"}}, "required": ["id", "name", "__typename"]}}, "asins": {"type": "array", "items": {}}}, "required": ["id", "imdbId", "title", "tmdbId", "releaseDate", "directors", "asins"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 2532, "imdbId" : "tt8399664", "title" : "Babyteeth", "tmdbId" : 522098, "releaseDate" : "2019-09-04", "directors" : [{"id" : 5029, "name" : "Shannon Murphy", "__typename" : "MoviesPerson"}], "asins" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "imdbId": {"type": "string"}, "title": {"type": "string"}, "tmdbId": {"type": "integer"}, "releaseDate": {"type": "string"}, "directors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "__typename": {"type": "string"}}, "required": ["id", "name", "__typename"]}}, "asins": {"type": "array", "items": {}}}, "required": ["id", "imdbId", "title", "tmdbId", "releaseDate", "directors", "asins"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"context": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "filetypes": {"type": "object", "properties": {"patternProperties": {"type": "object", "properties": {"\\..*": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["\\..*"]}, "additionalProperties": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["patternProperties", "additionalProperties", "type"]}, "generateScopedName": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "webpackHotModuleReloading": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "themePath": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["context", "filetypes", "generateScopedName", "webpackHotModuleReloading", "themePath"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"additionalProperties" : false, "properties" : {"context" : {"type" : "string"}, "filetypes" : {"patternProperties" : {"\\..*" : {"type" : "string"}}, "additionalProperties" : false, "type" : "object"}, "generateScopedName" : {"type" : "string"}, "webpackHotModuleReloading" : {"type" : "boolean"}, "themePath" : {"type" : "string"}}, "type" : "object"} | json_instruct | {"type": "object", "properties": {"additionalProperties": {"type": "boolean"}, "properties": {"type": "object", "properties": {"context": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "filetypes": {"type": "object", "properties": {"patternProperties": {"type": "object", "properties": {"\\..*": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["\\..*"]}, "additionalProperties": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["patternProperties", "additionalProperties", "type"]}, "generateScopedName": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "webpackHotModuleReloading": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "themePath": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["context", "filetypes", "generateScopedName", "webpackHotModuleReloading", "themePath"]}, "type": {"type": "string"}}, "required": ["additionalProperties", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Programming"], "desc" : "Beginning with the basic concept of programming, the book gives an exhaustive coverage of arrays, strings, functions, pointers, and data structures. Separate chapters on linked lists and stacks, queues, and trees, with their implementation in C, have been provided to simplify the learning of complex concepts. Some advanced features of C such as memory models, command-line arguments, and bitwise operators have also been included. Case studies demonstrating the use of C in solving mathematical as well as real-life problems have also been presented. This edition also highlights C99 features wherever relevant in the text.", "details" : {"authors" : "Manas Ghosh", "format" : "pdf", "isbn-10" : "0198065280", "isbn-13" : "978-0198065289", "pages" : "528 pages", "publication date" : "January 12, 2012", "publisher" : "Oxford University Press", "size" : "12.00Mb"}, "img" : "http://23.95.221.108/covers/21/2137f6a4a36c4929e6af560efa663fbd.jpg", "link" : "https://rapidhosting.info/files/af8", "title" : "Programming in C 2/e (Oxford Higher Education)"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Milo, IA"], "state" : "IA", "postal_code" : "50166", "locality" : "Milo, IA", "lat" : 41.282712, "region" : {"fips" : "19", "abbr" : "IA", "name" : "Iowa"}, "city" : "Milo", "type" : "STANDARD", "lng" : -93.430749, "counties" : [{"fips" : "181", "name" : "Warren County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[11, 21], [21, 1], [11, 21], [9, 21], [13, 18], [22, 21], [16, 5], [21, 22], [3, 21], [21, 9], [22, 21], [20, 21], [11, 21], [9, 21], [21, 7], [6, 21], [4, 21], [20, 29], [21, 9], [28, 21], [21, 0], [3, 21], [14, 21], [21, 11], [21, 9], [8, 21], [2, 21], [2, 21], [21, 9], [26, 10], [30, 21], [17, 23], [9, 22], [2, 21], [21, 25], [3, 21], [21, 8], [21, 12], [21, 19], [21, 15], [21, 22], [21, 2], [3, 21], [21, 24], [27, 21]], "features" : {"0" : "1", "1" : "1", "2" : "4", "3" : "4", "4" : "1", "5" : "1", "6" : "1", "7" : "1", "8" : "2", "9" : "7", "10" : "1", "11" : "4", "12" : "1", "13" : "1", "14" : "1", "15" : "1", "16" : "1", "17" : "1", "18" : "1", "19" : "1", "20" : "2", "21" : "39", "22" : "5", "23" : "1", "24" : "1", "25" : "1", "26" : "1", "27" : "1", "28" : "1", "29" : "1", "30" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"swagger": {"type": "object", "properties": {"outputDirectory": {"type": "string"}, "entryFile": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "produces": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["outputDirectory", "entryFile", "name", "description", "license", "produces", "version"]}}, "required": ["swagger"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"swagger" : {"outputDirectory" : "./swagger", "entryFile" : "./src/index.ts", "name" : "WebRTC Pool Service", "description" : "A restful service that manage multiple WebRTC clients", "license" : "MIT", "produces" : ["application/json"], "version" : "0.0.1"}} | json_instruct | {"type": "object", "properties": {"swagger": {"type": "object", "properties": {"outputDirectory": {"type": "string"}, "entryFile": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "produces": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["outputDirectory", "entryFile", "name", "description", "license", "produces", "version"]}}, "required": ["swagger"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "jest-fetch-mock": {"type": "string"}, "jest-react-native": {"type": "string"}, "react-native-scripts": {"type": "string"}, "react-test-renderer": {"type": "string"}, "babel-preset-react-native": {"type": "string"}, "babel-preset-env": {"type": "string"}, "react-native-dotenv": {"type": "string"}}, "required": ["jest", "jest-fetch-mock", "jest-react-native", "react-native-scripts", "react-test-renderer", "babel-preset-react-native", "babel-preset-env", "react-native-dotenv"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "eject": {"type": "string"}, "android": {"type": "string"}, "ios": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "eject", "android", "ios", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}, "automock": {"type": "boolean"}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["preset", "automock", "setupFiles", "transformIgnorePatterns"]}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "pure-src": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-navigation": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["expo", "pure-src", "react", "react-native", "react-navigation", "react-redux", "redux", "redux-thunk"]}}, "required": ["name", "version", "private", "devDependencies", "main", "scripts", "jest", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mobile-app", "version" : "0.1.0", "private" : true, "devDependencies" : {"jest" : "23.6.0", "jest-fetch-mock" : "1.6.6", "jest-react-native" : "18.0.0", "react-native-scripts" : "1.14.0", "react-test-renderer" : "16.3.1", "babel-preset-react-native" : "4.0.1", "babel-preset-env" : "1.7.0", "react-native-dotenv" : "0.2.0"}, "main" : "./node_modules/expo/AppEntry.js", "scripts" : {"start" : "expo start", "eject" : "expo eject", "android" : "expo android", "ios" : "expo ios", "test" : "jest"}, "jest" : {"preset" : "jest-react-native", "automock" : false, "setupFiles" : ["./jest/setup.js"], "transformIgnorePatterns" : ["node_modules/(?!(react-native|pure-src)/)"]}, "dependencies" : {"expo" : "^27.0.1", "pure-src" : "^1.0.5", "react" : "16.3.1", "react-native" : "~0.55.2", "react-navigation" : "2.11.2", "react-redux" : "^5.0.7", "redux" : "^4.0.0", "redux-thunk" : "^2.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "jest-fetch-mock": {"type": "string"}, "jest-react-native": {"type": "string"}, "react-native-scripts": {"type": "string"}, "react-test-renderer": {"type": "string"}, "babel-preset-react-native": {"type": "string"}, "babel-preset-env": {"type": "string"}, "react-native-dotenv": {"type": "string"}}, "required": ["jest", "jest-fetch-mock", "jest-react-native", "react-native-scripts", "react-test-renderer", "babel-preset-react-native", "babel-preset-env", "react-native-dotenv"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "eject": {"type": "string"}, "android": {"type": "string"}, "ios": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "eject", "android", "ios", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}, "automock": {"type": "boolean"}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["preset", "automock", "setupFiles", "transformIgnorePatterns"]}, "dependencies": {"type": "object", "properties": {"expo": {"type": "string"}, "pure-src": {"type": "string"}, "react": {"type": "string"}, "react-native": {"type": "string"}, "react-navigation": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["expo", "pure-src", "react", "react-native", "react-navigation", "react-redux", "redux", "redux-thunk"]}}, "required": ["name", "version", "private", "devDependencies", "main", "scripts", "jest", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"2200": {"type": "string"}, "2198": {"type": "string"}}, "required": ["2200", "2198"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"2200" : "2201", "2198" : "2199"} | json_instruct | {"type": "object", "properties": {"2200": {"type": "string"}, "2198": {"type": "string"}}, "required": ["2200", "2198"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "511902210001", "text" : "\u592a\u9633\u5e99\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210200", "text" : "\u77f3\u7b0b\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210201", "text" : "\u7891\u57ad\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210202", "text" : "\u77f3\u7f8a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210203", "text" : "\u9996\u5e02\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210204", "text" : "\u9999\u6a1f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210205", "text" : "\u4e09\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210206", "text" : "\u68b3\u6728\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210207", "text" : "\u9e3f\u9e44\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "511902210208", "text" : "\u697c\u623f\u6751\u6c11\u59d4\u5458\u4f1a"}] | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "897a9223-8393-496c-8dfe-39ada3dd7a4e", "playerTags" : ["0813d43c-b938-49da-acef-65b73f27b099"], "teamTags" : ["c73b705c-40ad-4633-a6ed-d357ee2e2bcf", "bb4a9de5-c924-4923-a0cb-9d1445f1ee5d"], "gameTags" : ["169e519d-857e-4ac9-ab30-5b979d691497"], "metadata" : {"play" : 179, "subPlay" : -1}, "created" : "2021-04-15T10:15:04.777Z", "season" : 15, "tournament" : -1, "type" : 10, "day" : 64, "phase" : 4, "category" : 0, "description" : "S--atc- D-le--e hits a Double!", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"line" : 7, "column" : 24, "msg" : "'p' is defined as an accessor in class 'A', but is overridden here in 'B' as an instance property."}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "msg": {"type": "string"}}, "required": ["line", "column", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xbabfbef030015a4f593fce5b2d91f87a781a96dc7bb3df7f1d4d44c00c9bff33", "parentHash" : "0x225638212191c6ff4cc1b9c926237467862c4e71facef9ce895d97aecb8a2d7b", "number" : 41846, "timestamp" : 1438845543, "nonce" : "0x43751476b12f4172", "difficulty" : 1371301797633, "gasLimit" : {"_hex" : "0x13c4"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xab84940B570d6358ed6A9Dbf7e0bc8Ec8F5A6E89", "extraData" : "0x7c2d2d3e20202020207c", "transactions" : []} | 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"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u3010MMD\u3011Luvatorry-Erza Fairy Woman+Model Dl ", "author" : "Metalryu", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/RzaZEXJ65Vs.jpg?itok=cF3EBZQV", "download" : "https://www.iwara.tv/api/video/nqwamiqo3hprlew5", "origin" : "https://www.iwara.tv/videos/nqwamiqo3hprlew5"} | 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://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "bkmk": {"type": "string"}, "name": {"type": "string"}, "busstop": {"type": "string"}, "line": {"type": "string"}, "destination": {"type": "string"}, "notes": {"type": "object", "properties": {}, "required": []}, "weekday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}, "saturday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}, "holiday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}}, "required": ["id", "bkmk", "name", "busstop", "line", "destination", "notes", "weekday", "saturday", "holiday"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "906033", "bkmk" : "kmtb-b906033", "name" : "\u98db\u9ce5\u4e95\u753a \u767a 65\u53f7\u7cfb\u7d71 \u718a\u91ce\u795e\u793e\u3000\u70cf\u4e38\u4e38\u592a\u753a \u56db\u6761\u70cf\u4e38\u884c\u304d", "busstop" : "\u98db\u9ce5\u4e95\u753a", "line" : "65\u53f7\u7cfb\u7d71", "destination" : "\u56db\u6761\u70cf\u4e38\u884c\u304d", "notes" : {}, "weekday" : [{"t" : "07:01", "note" : " "}, {"t" : "07:45", "note" : " "}, {"t" : "08:24", "note" : " "}, {"t" : "09:04", "note" : " "}, {"t" : "09:44", "note" : " "}, {"t" : "10:44", "note" : " "}, {"t" : "11:44", "note" : " "}, {"t" : "12:44", "note" : " "}, {"t" : "13:44", "note" : " "}, {"t" : "14:44", "note" : " "}, {"t" : "15:34", "note" : " "}, {"t" : "16:24", "note" : " "}, {"t" : "17:14", "note" : " "}, {"t" : "18:04", "note" : " "}, {"t" : "18:49", "note" : " "}, {"t" : "19:31", "note" : " "}, {"t" : "20:18", "note" : " "}, {"t" : "21:38", "note" : " "}], "saturday" : [{"t" : "07:36", "note" : " "}, {"t" : "08:43", "note" : " "}, {"t" : "09:44", "note" : " "}, {"t" : "10:44", "note" : " "}, {"t" : "11:44", "note" : " "}, {"t" : "12:44", "note" : " "}, {"t" : "13:44", "note" : " "}, {"t" : "14:44", "note" : " "}, {"t" : "15:44", "note" : " "}, {"t" : "16:44", "note" : " "}, {"t" : "17:44", "note" : " "}, {"t" : "18:44", "note" : " "}, {"t" : "19:46", "note" : " "}, {"t" : "20:46", "note" : " "}], "holiday" : [{"t" : "07:36", "note" : " "}, {"t" : "09:44", "note" : " "}, {"t" : "10:44", "note" : " "}, {"t" : "11:44", "note" : " "}, {"t" : "12:44", "note" : " "}, {"t" : "13:44", "note" : " "}, {"t" : "14:44", "note" : " "}, {"t" : "15:44", "note" : " "}, {"t" : "16:44", "note" : " "}, {"t" : "17:44", "note" : " "}, {"t" : "18:44", "note" : " "}, {"t" : "20:46", "note" : " "}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "bkmk": {"type": "string"}, "name": {"type": "string"}, "busstop": {"type": "string"}, "line": {"type": "string"}, "destination": {"type": "string"}, "notes": {"type": "object", "properties": {}, "required": []}, "weekday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}, "saturday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}, "holiday": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string"}, "note": {"type": "string"}}, "required": ["t", "note"]}}}, "required": ["id", "bkmk", "name", "busstop", "line", "destination", "notes", "weekday", "saturday", "holiday"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["611025402598", "\u82d7\u5703\u865a\u62df\u6751\u59d4\u4f1a", "123", "0"]] | 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": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "doom:block/e1m1_block25"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"borough": {"type": "string"}, "ref:gss": {"type": "string"}, "ons_code": {"type": "string"}, "designation": {"type": "string"}, "council_name": {"type": "string"}, "council_style": {"type": "string"}, "official_name": {"type": "string"}}, "required": ["borough", "ref:gss", "ons_code", "designation", "council_name", "council_style", "official_name"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Cheshire West and Chester", "iso2" : "GB-CHW", "admin_level" : 6, "osm_id" : 153488, "wikidata_id" : "Q1070591", "wikipedia_id" : "en:Cheshire West and Chester", "population" : 340502, "countrylevel_id" : "iso2:GB-CHW", "osm_data" : {"localname" : "Cheshire West and Chester", "official_name" : "Borough of Cheshire West and Chester", "alltags" : {"borough" : "yes", "ref:gss" : "E06000050", "ons_code" : "00EW", "designation" : "unitary_authority", "council_name" : "Cheshire West and Chester Council", "council_style" : "borough", "official_name" : "Borough of Cheshire West and Chester"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-3.087, 53.258], [-3.087, 53.258], [-3.087, 53.258], [-3.087, 53.258]]], [[[-3.089, 53.259], [-3.089, 53.259], [-3.089, 53.259], [-3.089, 53.259]]], [[[-3.108, 53.298], [-3.108, 53.298], [-3.108, 53.298], [-3.096, 53.305], [-3.096, 53.305], [-3.094, 53.304], [-3.096, 53.305], [-2.929, 53.308], [-2.928, 53.308], [-2.752, 53.314], [-2.752, 53.315], [-2.595, 53.322], [-2.518, 53.342], [-2.699, 52.995], [-2.727, 52.983], [-2.937, 53.121], [-2.937, 53.121], [-2.964, 53.133], [-3.074, 53.254], [-3.075, 53.254], [-3.076, 53.254], [-3.076, 53.254], [-3.079, 53.255], [-3.08, 53.255], [-3.083, 53.256], [-3.092, 53.26], [-3.093, 53.26], [-3.093, 53.261], [-3.095, 53.261], [-3.095, 53.261], [-3.096, 53.262], [-3.096, 53.262], [-3.101, 53.267], [-3.109, 53.297], [-3.108, 53.298]]], [[[-3.095, 53.27], [-3.095, 53.27], [-3.095, 53.27], [-3.095, 53.27]]], [[[-3.111, 53.296], [-3.109, 53.297], [-3.11, 53.297], [-3.111, 53.296], [-3.111, 53.296]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"borough": {"type": "string"}, "ref:gss": {"type": "string"}, "ons_code": {"type": "string"}, "designation": {"type": "string"}, "council_name": {"type": "string"}, "council_style": {"type": "string"}, "official_name": {"type": "string"}}, "required": ["borough", "ref:gss", "ons_code", "designation", "council_name", "council_style", "official_name"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"botToken": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["botToken", "prefix"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"botToken" : "NDU3MzI0ODY2MTgyNDQ3MTI2.Dg_ANg.wKr6my58fxNdg0ljWJz3H53DDKQ", "prefix" : "/"} | json_instruct | {"type": "object", "properties": {"botToken": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["botToken", "prefix"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {"type": "integer"}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "LAT441H1F20199", "code" : "LAT441H1F", "name" : "Latin Historians II", "description" : "Advanced readings from one or more Latin historians.", "division" : "Faculty of Arts and Science", "department" : "Classics", "prerequisites" : "One FCE in the LAT 300-series", "exclusions" : "", "level" : 400, "campus" : "UTSG", "term" : "2019 Fall", "breadths" : [1], "meeting_sections" : [{"code" : "L0101", "instructors" : ["C Bruun"], "times" : [{"day" : "TUESDAY", "start" : 39600, "end" : 46800, "duration" : 7200, "location" : "LI 205"}, {"day" : "THURSDAY", "start" : 39600, "end" : 46800, "duration" : 7200, "location" : "LI 205"}], "size" : 10, "enrolment" : 0}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {"type": "integer"}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$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"}, "private": {"type": "boolean"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:utility": {"type": "string"}, "build:clean": {"type": "string"}, "build:prepare": {"type": "string"}, "build:copy-static-assets": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "build:utility", "build:clean", "build:prepare", "build:copy-static-assets", "lint"]}, "dependencies": {"type": "object", "properties": {"uuid": {"type": "string"}}, "required": ["uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/uuid": {"type": "string"}}, "required": ["@types/uuid"]}, "sideEffects": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "private", "author", "version", "description", "main", "types", "keywords", "repository", "license", "scripts", "dependencies", "devDependencies", "sideEffects", "publishConfig", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@bimyar-mobile/utility", "private" : true, "author" : "@tajpouria", "version" : "1.0.1", "description" : "Utility", "main" : "lib/index.js", "types" : "lib/index.d.ts", "keywords" : ["BimYar"], "repository" : {"type" : "git"}, "license" : "MIT", "scripts" : {"build" : "npm run build:prepare && tsc", "build:utility" : "tsc -w", "build:clean" : "rimraf lib && npm run build:copy-static-assets", "build:prepare" : "npm run build:copy-static-assets", "build:copy-static-assets" : "node ./commands/copy-static-assets.js", "lint" : "tslint -c ./tslint.json './src/**/*.ts'"}, "dependencies" : {"uuid" : "^3.3.3"}, "devDependencies" : {"@types/uuid" : "^3.4.5"}, "sideEffects" : false, "publishConfig" : {"access" : "private"}, "engines" : {"node" : ">=10.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:utility": {"type": "string"}, "build:clean": {"type": "string"}, "build:prepare": {"type": "string"}, "build:copy-static-assets": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "build:utility", "build:clean", "build:prepare", "build:copy-static-assets", "lint"]}, "dependencies": {"type": "object", "properties": {"uuid": {"type": "string"}}, "required": ["uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/uuid": {"type": "string"}}, "required": ["@types/uuid"]}, "sideEffects": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "private", "author", "version", "description", "main", "types", "keywords", "repository", "license", "scripts", "dependencies", "devDependencies", "sideEffects", "publishConfig", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "modulePaths": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}, "testMatch": {"type": "array", "items": {"type": "string"}}, "testURL": {"type": "string"}, "transform": {"type": "object", "properties": {"^.+\\.[t|j]sx?$": {"type": "string"}}, "required": ["^.+\\.[t|j]sx?$"]}, "moduleNameMapper": {"type": "object", "properties": {"\\.(css|less|scss|sss|styl)$": {"type": "string"}, "^@test/(.*)$": {"type": "string"}}, "required": ["\\.(css|less|scss|sss|styl)$", "^@test/(.*)$"]}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "globals": {"type": "object", "properties": {"prefixCls": {"type": "boolean"}}, "required": ["prefixCls"]}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "snapshotSerializers": {"type": "array", "items": {"type": "string"}}, "collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "coverageDirectory": {"type": "string"}}, "required": ["roots", "modulePaths", "testEnvironment", "testMatch", "testURL", "transform", "moduleNameMapper", "transformIgnorePatterns", "globals", "setupFiles", "snapshotSerializers", "collectCoverage", "collectCoverageFrom", "coverageDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"roots" : ["<rootDir>"], "modulePaths" : ["<rootDir>"], "testEnvironment" : "jest-environment-jsdom-global", "testMatch" : ["**/src/**/__tests__/**/*.[jt]s?(x)", "**/src/**/?(*.)+(spec|test).[jt]s?(x)"], "testURL" : "http://localhost", "transform" : {"^.+\\.[t|j]sx?$" : "babel-jest"}, "moduleNameMapper" : {"\\.(css|less|scss|sss|styl)$" : "jest-css-modules", "^@test/(.*)$" : "<rootDir>/test/$1"}, "transformIgnorePatterns" : ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$"], "globals" : {"prefixCls" : true}, "setupFiles" : ["./setupTests.js"], "snapshotSerializers" : ["enzyme-to-json/serializer"], "collectCoverage" : true, "collectCoverageFrom" : ["src/components/**/*.{js,jsx,ts,tsx}"], "coverageDirectory" : "./coverage/"} | json_instruct | {"type": "object", "properties": {"roots": {"type": "array", "items": {"type": "string"}}, "modulePaths": {"type": "array", "items": {"type": "string"}}, "testEnvironment": {"type": "string"}, "testMatch": {"type": "array", "items": {"type": "string"}}, "testURL": {"type": "string"}, "transform": {"type": "object", "properties": {"^.+\\.[t|j]sx?$": {"type": "string"}}, "required": ["^.+\\.[t|j]sx?$"]}, "moduleNameMapper": {"type": "object", "properties": {"\\.(css|less|scss|sss|styl)$": {"type": "string"}, "^@test/(.*)$": {"type": "string"}}, "required": ["\\.(css|less|scss|sss|styl)$", "^@test/(.*)$"]}, "transformIgnorePatterns": {"type": "array", "items": {"type": "string"}}, "globals": {"type": "object", "properties": {"prefixCls": {"type": "boolean"}}, "required": ["prefixCls"]}, "setupFiles": {"type": "array", "items": {"type": "string"}}, "snapshotSerializers": {"type": "array", "items": {"type": "string"}}, "collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "coverageDirectory": {"type": "string"}}, "required": ["roots", "modulePaths", "testEnvironment", "testMatch", "testURL", "transform", "moduleNameMapper", "transformIgnorePatterns", "globals", "setupFiles", "snapshotSerializers", "collectCoverage", "collectCoverageFrom", "coverageDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"births": {"type": "array", "items": {"type": "object", "properties": {"registrationDistrict": {"type": "string"}, "subjects": {"type": "object", "properties": {"child": {"type": "object", "properties": {"birthPlace": {"type": "string"}, "sex": {"type": "string"}}, "required": ["birthPlace", "sex"]}, "informant": {"type": "object", "properties": {"fullName": {"type": "string"}}, "required": ["fullName"]}}, "required": ["child", "informant"]}, "id": {"type": "string"}, "deathCode": {"type": "integer"}, "status": {"type": "integer"}}, "required": ["registrationDistrict", "subjects", "id", "deathCode", "status"]}}}, "required": ["births"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"births" : [{"registrationDistrict" : "Edinburgh", "subjects" : {"child" : {"birthPlace" : "Edinburgh", "sex" : "M"}, "informant" : {"fullName" : "J Smith"}}, "id" : "2017734003", "deathCode" : 0, "status" : 1}]} | json_instruct | {"type": "object", "properties": {"births": {"type": "array", "items": {"type": "object", "properties": {"registrationDistrict": {"type": "string"}, "subjects": {"type": "object", "properties": {"child": {"type": "object", "properties": {"birthPlace": {"type": "string"}, "sex": {"type": "string"}}, "required": ["birthPlace", "sex"]}, "informant": {"type": "object", "properties": {"fullName": {"type": "string"}}, "required": ["fullName"]}}, "required": ["child", "informant"]}, "id": {"type": "string"}, "deathCode": {"type": "integer"}, "status": {"type": "integer"}}, "required": ["registrationDistrict", "subjects", "id", "deathCode", "status"]}}}, "required": ["births"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "KARAWANG", "originalFilename" : "leli herlina.jpg", "namaPartai" : "Partai NasDem", "id" : 233974, "noUrut" : 1, "nama" : "LELI HERLINA, SH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BANDUNG", "originalFilename" : "IR. H. SUMINTO ALEXANDER H, MM.jpg", "namaPartai" : "Partai NasDem", "id" : 242840, "noUrut" : 2, "nama" : "Ir. H. SUMINTO ALEXANDER H, MM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PURWAKARTA", "originalFilename" : "PHOTO_BIRU.jpg", "namaPartai" : "Partai NasDem", "id" : 239589, "noUrut" : 3, "nama" : "RIA PURNAMA DEWI, SH", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KARAWANG", "originalFilename" : "soleh.jpg", "namaPartai" : "Partai NasDem", "id" : 242097, "noUrut" : 4, "nama" : "RIADUSSHOLIHIN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KARAWANG", "originalFilename" : "dr. ARGEN R.S ROMBOT.jpg", "namaPartai" : "Partai NasDem", "id" : 238328, "noUrut" : 5, "nama" : "Dr. ARGEN R. S. ROMBOT", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KARAWANG", "originalFilename" : "photo.jpg", "namaPartai" : "Partai NasDem", "id" : 243770, "noUrut" : 6, "nama" : "CATI SURYATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KARAWANG", "originalFilename" : "RIYAN_PHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 272892, "noUrut" : 7, "nama" : "RIYAN HIDAYAT", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KARAWANG", "originalFilename" : "scan 001.jpg", "namaPartai" : "Partai NasDem", "id" : 237106, "noUrut" : 8, "nama" : "ADANG RUDIANTO", "stringJenisKelamin" : "Laki-Laki"}] | 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", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-89.51, 30.32]}, "type" : "Feature", "id" : "39521", "properties" : {"other_cities" : "Bay St Louis", "city" : "Bay Saint Louis", "state" : "MS", "county" : "Hancock County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 13069, "info" : {"name" : "twitpic - remove ads", "description" : "Removes the ad from twitpic - the twitter photo posting site", "additionalInfo" : null, "format" : "uso", "category" : "twitpic", "createdAt" : "2008-12-18T16:41:45.000Z", "updatedAt" : "2008-12-18T16:41:45.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 17812, "name" : "kevinyezbick"}}, "stats" : {"installs" : {"total" : 1123, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "13069_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 1, "commentsCount" : 1}, "data" : [{"id" : 12712, "title" : "Neat, but suggest you also add div#view-photo-ad {", "createdAt" : "2009-07-05T00:37:10.000Z", "author" : {"id" : 25606, "name" : "spotrick"}}]}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"twitpic.com\") {div#ad {display:none}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "createdAt": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["id", "title", "createdAt", "author"]}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "integer"}, "scale": {"type": "integer"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"animations" : [{"loop" : true, "offsets" : [95, 147], "anim" : "idle", "fps" : 24, "name" : "Idle", "indices" : []}, {"loop" : false, "offsets" : [114, 191], "anim" : "singUP", "fps" : 24, "name" : "Up", "indices" : []}, {"offsets" : [231, 144], "loop" : false, "fps" : 24, "anim" : "singLEFT", "indices" : [], "name" : "Left"}, {"offsets" : [48, 151], "loop" : false, "fps" : 24, "anim" : "singRIGHT", "indices" : [], "name" : "Right"}, {"offsets" : [89, 138], "loop" : false, "fps" : 24, "anim" : "singDOWN", "indices" : [], "name" : "Down"}, {"offsets" : [60, 116], "indices" : [], "fps" : 24, "anim" : "error", "loop" : false, "name" : "error"}], "no_antialiasing" : false, "image" : "characters/scrapface", "position" : [200, 320], "healthicon" : "scrapface", "flip_x" : false, "healthbar_colors" : [120, 20, 20], "camera_position" : [110, -90], "sing_duration" : 4, "scale" : 1} | json_instruct | {"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "integer"}, "scale": {"type": "integer"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "uac-node", "version" : "0.0.1", "description" : "UniversalAC Node that joins the UAC Network", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/UniversalAC/uac-node.git"}, "keywords" : ["ipfs", "docker", "blockchain"], "author" : "@Burke9077", "license" : "MIT", "bugs" : {"url" : "https://github.com/UniversalAC/uac-node/issues"}, "homepage" : "https://github.com/UniversalAC/uac-node#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "down": {"type": "string"}, "up": {"type": "string"}, "north": {"type": "string"}, "east": {"type": "string"}, "south": {"type": "string"}, "west": {"type": "string"}}, "required": ["particle", "down", "up", "north", "east", "south", "west"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/cube", "textures" : {"particle" : "ea:blocks/slab/arcanite_slab_side", "down" : "ea:blocks/slab/arcanite_slab_bottom", "up" : "ea:blocks/slab/arcanite_slab_top", "north" : "ea:blocks/slab/arcanite_slab_side", "east" : "ea:blocks/slab/arcanite_slab_side", "south" : "ea:blocks/slab/arcanite_slab_side", "west" : "ea:blocks/slab/arcanite_slab_side"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "down": {"type": "string"}, "up": {"type": "string"}, "north": {"type": "string"}, "east": {"type": "string"}, "south": {"type": "string"}, "west": {"type": "string"}}, "required": ["particle", "down", "up", "north", "east", "south", "west"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-06-27T22:00:00Z", "Temp" : 24, "RelHum" : 57, "WindSpeed" : 0.8, "WindDir" : 112} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["formide-client", "minejs"] | 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": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cordova-android": {"type": "string"}, "cordova-browser": {"type": "string"}, "cordova-plugin-fetch": {"type": "string"}, "cordova-plugin-whitelist": {"type": "string"}}, "required": ["cordova-android", "cordova-browser", "cordova-plugin-fetch", "cordova-plugin-whitelist"]}, "cordova": {"type": "object", "properties": {"plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {}, "required": []}, "cordova-plugin-fetch": {"type": "object", "properties": {}, "required": []}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-fetch"]}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins", "platforms"]}}, "required": ["name", "displayName", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "cordova"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ru.psqq.apps.anything", "displayName" : "Anything", "version" : "1.0.0", "description" : "An application that can be anything.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["ecosystem:cordova"], "author" : "Pestov SA", "license" : "MIT", "devDependencies" : {"cordova-android" : "^9.1.0", "cordova-browser" : "^6.0.0", "cordova-plugin-fetch" : "github:aporat/cordova-plugin-fetch", "cordova-plugin-whitelist" : "^1.3.4"}, "cordova" : {"plugins" : {"cordova-plugin-whitelist" : {}, "cordova-plugin-fetch" : {}}, "platforms" : ["browser", "android"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cordova-android": {"type": "string"}, "cordova-browser": {"type": "string"}, "cordova-plugin-fetch": {"type": "string"}, "cordova-plugin-whitelist": {"type": "string"}}, "required": ["cordova-android", "cordova-browser", "cordova-plugin-fetch", "cordova-plugin-whitelist"]}, "cordova": {"type": "object", "properties": {"plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {}, "required": []}, "cordova-plugin-fetch": {"type": "object", "properties": {}, "required": []}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-fetch"]}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins", "platforms"]}}, "required": ["name", "displayName", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "cordova"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"wallpaper": {"type": "string"}, "alpha": {"type": "string"}, "special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type": "object", "properties": {"color0": {"type": "string"}, "color1": {"type": "string"}, "color2": {"type": "string"}, "color3": {"type": "string"}, "color4": {"type": "string"}, "color5": {"type": "string"}, "color6": {"type": "string"}, "color7": {"type": "string"}, "color8": {"type": "string"}, "color9": {"type": "string"}, "color10": {"type": "string"}, "color11": {"type": "string"}, "color12": {"type": "string"}, "color13": {"type": "string"}, "color14": {"type": "string"}, "color15": {"type": "string"}}, "required": ["color0", "color1", "color2", "color3", "color4", "color5", "color6", "color7", "color8", "color9", "color10", "color11", "color12", "color13", "color14", "color15"]}}, "required": ["wallpaper", "alpha", "special", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"wallpaper" : "/home/reorr/Pictures/solid_bg/akiyama_yukari3.png", "alpha" : "100", "special" : {"background" : "#feffff", "foreground" : "#2B3645", "cursor" : "#2B3645"}, "colors" : {"color0" : "#feffff", "color1" : "#63A6B3", "color2" : "#7BBDC5", "color3" : "#A1A3A4", "color4" : "#DFA69E", "color5" : "#F2B6A9", "color6" : "#CEC4BD", "color7" : "#2B3645", "color8" : "#989999", "color9" : "#63A6B3", "color10" : "#7BBDC5", "color11" : "#A1A3A4", "color12" : "#DFA69E", "color13" : "#F2B6A9", "color14" : "#CEC4BD", "color15" : "#2B3645"}} | json_instruct | {"type": "object", "properties": {"wallpaper": {"type": "string"}, "alpha": {"type": "string"}, "special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type": "object", "properties": {"color0": {"type": "string"}, "color1": {"type": "string"}, "color2": {"type": "string"}, "color3": {"type": "string"}, "color4": {"type": "string"}, "color5": {"type": "string"}, "color6": {"type": "string"}, "color7": {"type": "string"}, "color8": {"type": "string"}, "color9": {"type": "string"}, "color10": {"type": "string"}, "color11": {"type": "string"}, "color12": {"type": "string"}, "color13": {"type": "string"}, "color14": {"type": "string"}, "color15": {"type": "string"}}, "required": ["color0", "color1", "color2", "color3", "color4", "color5", "color6", "color7", "color8", "color9", "color10", "color11", "color12", "color13", "color14", "color15"]}}, "required": ["wallpaper", "alpha", "special", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["It", "do", "n't", "stop", ",", "it", "do", "n't", "stop"], ["I", "was", "raised", "in", "the", "inner", "city", "by", "ballers", "with", "diamonds"], ["Climbin", "'", "the", "Benzes", ",", "rollin", "'", "Philles", ",", "we", "younger", "minors"], ["Me", ",", "I", "be", "the", "one", "that", "'s", "only", "12", "years", "old"], ["Crankin", "'", "off", "the", "hook", "from", "cousin", ",", "let", "me", "sport", "his", "gold"], ["And", "I", "was", "told", "to", "put", "it", "down", "and", "keep", "it", "real"], ["Like", "3", "time", "crazy", "young", "player", "about", "the", "scrill"], ["Them", "playas", "is", "havin", "'", "money", "man", "in", "plushed", "out", "cribs"], ["Survivin", "'", "in", "the", "city", "is", "a", "serious", "task"], ["Did", "n't", "know", "the", "wanted", ",", "did", "n't", "have", "time", "to", "ask"], ["'Cuz", "I", "'m", "'bout", "it", ",", "'bout", "it", "like", "the", "TRU"], ["One", "love", "to", "real", "hustlers", ",", "straight", "dollars", "for", "two"], ["We", "at", "the", "after", "party", "chillin", "'", "'cuz", "we", "ai", "n't", "no", "punks"], ["Some", "cats", "is", "in", "the", "back", "with", "Macks", "and", "gold", "fronts"], ["With", "sacks", "they", "post", "up", ",", "you", "know", "we", "be", "watchin", "'"], ["Thinkin", "'", "they", "got", "it", "crankin", "'", ",", "playa", "we", "got", "it", "poppin", "'"], ["Now", "bitin", "'", "over", "dirty", "work", ",", "that", "ai", "n't", "cool"], ["With", "cats", "in", "drop", "'Vettes", "in", "mobs", "and", "old", "schools"], ["We", "rob", "them", "old", "fools", ",", "wo", "n't", "you", "amount", "your", "scratch", "?"], ["Respect", "them", "young", "G", "'s", ",", "they", "the", "ones", "that", "'s", "strapped", ",", "ya", "know"], ["Dogg", "Pound", ",", "that", "'s", "the", "sound", ",", "check", "around", ",", "we", "hold", "it", "down"], ["It", "'s", "the", "super", "duper", ",", "yes", ",", "the", "Snoop-a"], ["Comin", "'", "through", ",", "in", "all", "gray", "and", "blue"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"feedback": {"type": "array", "items": {"type": "integer"}}, "filtered": {"type": "array", "items": {"type": "integer"}}, "following": {"type": "array", "items": {"type": "integer"}}, "finalize": {"type": "array", "items": {"type": "integer"}}, "free": {"type": "array", "items": {"type": "integer"}}, "function": {"type": "array", "items": {"type": "integer"}}, "first": {"type": "array", "items": {"type": "integer"}}, "finishes": {"type": "array", "items": {"type": "integer"}}, "filtering": {"type": "array", "items": {"type": "integer"}}}, "required": ["feedback", "filtered", "following", "finalize", "free", "function", "first", "finishes", "filtering"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedback" : [1, 65537, 131073, 196609, 262145, 327681, 393217, 458753, 524289, 589825, 655361, 720897, 786433, 851969, 917505, 983041, 1048577, 1114113, 1179649, 1245185, 1310721, 1376257, 1441793, 1507329, 1572865, 1638401, 1703937, 1769473, 1835009, 1900545, 1966081, 2031617, 2097153, 2162689, 2228225, 2293761, 2359297, 2424833, 2490369, 2555905, 2621441, 2686977, 2752513, 2818049, 2883585, 2949121, 3014657, 3080193, 3145729, 3211265, 3276801, 3342337, 3407873, 3473409, 3538945, 3604481, 3670017, 3735553, 3801089, 3866625, 3932161, 3997697, 4063233, 4128769, 4194305, 4259841, 4325377, 4390913, 4456449, 4521985, 4587521, 4653057, 4718593, 4784129, 4849665, 4915201, 4980737, 5046273, 5111809, 5177345, 5242881, 5308417, 5373953, 5439489, 5505025, 5570561, 5636097, 5701633, 5767169, 5832705, 5898241, 5963777, 6029313, 6094849, 6160385, 6225921, 6291457, 6356993, 6422529, 6488065], "filtered" : [65539, 131075, 262147, 393219, 655363, 851971, 917507, 1179651, 1441795, 1572867, 1638403, 2162691, 2228227, 2555907, 2686979, 2818051, 2883587, 2949123, 3145731, 3407875, 3538947, 3670019, 3932163, 4521987, 4587523, 4718595, 4784131, 4849667, 4915203, 4980739, 5046275, 5308419, 5505027, 5701635, 5898243], "following" : [65537, 131073, 262145, 393217, 655361, 851969, 917505, 1179649, 1441793, 1572865, 1638401, 2162689, 2228225, 2555905, 2686977, 2818049, 2883585, 2949121, 3145729, 3407873, 3538945, 3670017, 3932161, 4521985, 4587521, 4718593, 4784129, 4849665, 4915201, 4980737, 5046273, 5308417, 5505025, 5701633, 5898241], "finalize" : [131073, 655361, 917505, 1179649, 1441793, 1572865, 2162689, 2555905, 2686977, 2883585, 2949121, 3145729, 3407873, 4521985, 4718593, 4849665, 4915201, 4980737, 5308417, 5505025, 5701633, 5898241], "free" : [131073, 655361, 917505, 1179649, 1441793, 1572865, 2162689, 2555905, 2686977, 2883585, 2949121, 3145729, 3407873, 4521985, 4718593, 4849665, 4915201, 4980737, 5308417, 5505025, 5701633, 5898241], "function" : [131073, 655361, 917505, 1179649, 1441793, 1572865, 2162689, 2555905, 2686977, 2883585, 2949121, 3145729, 3407873, 4521985, 4718593, 4849665, 4915201, 4980737, 5308417, 5439489, 5505025, 5701633, 5898241], "first" : [2228225, 4980737], "finishes" : [2228229, 4980741], "filtering" : [3407873, 4980737]} | json_instruct | {"type": "object", "properties": {"feedback": {"type": "array", "items": {"type": "integer"}}, "filtered": {"type": "array", "items": {"type": "integer"}}, "following": {"type": "array", "items": {"type": "integer"}}, "finalize": {"type": "array", "items": {"type": "integer"}}, "free": {"type": "array", "items": {"type": "integer"}}, "function": {"type": "array", "items": {"type": "integer"}}, "first": {"type": "array", "items": {"type": "integer"}}, "finishes": {"type": "array", "items": {"type": "integer"}}, "filtering": {"type": "array", "items": {"type": "integer"}}}, "required": ["feedback", "filtered", "following", "finalize", "free", "function", "first", "finishes", "filtering"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"pool": {"type": "object", "properties": {"lb_algorithm": {"type": "string"}, "protocol": {"type": "string"}, "description": {"type": "string"}, "admin_state_up": {"type": "boolean"}, "session_persistence": {"type": "object", "properties": {"cookie_name": {"type": "string"}, "type": {"type": "string"}}, "required": ["cookie_name", "type"]}, "listener_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["lb_algorithm", "protocol", "description", "admin_state_up", "session_persistence", "listener_id", "name"]}}, "required": ["pool"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pool" : {"lb_algorithm" : "ROUND_ROBIN", "protocol" : "HTTP", "description" : "Super Round Robin Pool", "admin_state_up" : true, "session_persistence" : {"cookie_name" : "ChocolateChip", "type" : "APP_COOKIE"}, "listener_id" : "023f2e34-7806-443b-bfae-16c324569a3d", "name" : "super-pool"}} | json_instruct | {"type": "object", "properties": {"pool": {"type": "object", "properties": {"lb_algorithm": {"type": "string"}, "protocol": {"type": "string"}, "description": {"type": "string"}, "admin_state_up": {"type": "boolean"}, "session_persistence": {"type": "object", "properties": {"cookie_name": {"type": "string"}, "type": {"type": "string"}}, "required": ["cookie_name", "type"]}, "listener_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["lb_algorithm", "protocol", "description", "admin_state_up", "session_persistence", "listener_id", "name"]}}, "required": ["pool"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, "required": ["bug_id", "target", "tool", "correctness", "project", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bug_id" : "103", "target" : ["org/apache/commons/math/special/Gamma.java:170", "org/apache/commons/math/special/Gamma.java:180"], "tool" : "RSRepair-A", "correctness" : "Incorrect", "project" : "Math", "ID" : "517_NFL_RSRepair-A_Patch_1758_558"} | json_instruct | {"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, "required": ["bug_id", "target", "tool", "correctness", "project", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "@inabagumi/eslint-config-react": {"type": "string"}, "@inabagumi/prettier-config": {"type": "string"}, "@types/react": {"type": "string"}, "eslint": {"type": "string"}, "husky": {"type": "string"}, "is-ci": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "@inabagumi/eslint-config-react", "@inabagumi/prettier-config", "@types/react", "eslint", "husky", "is-ci", "lint-staged", "prettier", "typescript"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "root": {"type": "boolean"}}, "required": ["extends", "root"]}, "packageManager": {"type": "string"}, "prettier": {"type": "string"}, "private": {"type": "boolean"}, "resolutions": {"type": "object", "properties": {"cheerio": {"type": "string"}, "trim": {"type": "string"}}, "required": ["cheerio", "trim"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "format": {"type": "string"}, "format-check": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "format", "format-check", "lint", "prepare"]}, "workspaces": {"type": "array", "items": {"type": "string"}}}, "required": ["devDependencies", "eslintConfig", "packageManager", "prettier", "private", "resolutions", "scripts", "workspaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"@commitlint/cli" : "^17.0.2", "@commitlint/config-conventional" : "^17.0.2", "@inabagumi/eslint-config-react" : "^9.0.1", "@inabagumi/prettier-config" : "^2.0.0", "@types/react" : "^17.0.45", "eslint" : "^8.16.0", "husky" : "^8.0.1", "is-ci" : "^3.0.1", "lint-staged" : "^13.0.0", "prettier" : "^2.6.2", "typescript" : "^4.7.2"}, "eslintConfig" : {"extends" : ["@inabagumi/react"], "root" : true}, "packageManager" : "yarn@1.22.18", "prettier" : "@inabagumi/prettier-config", "private" : true, "resolutions" : {"cheerio" : "^1.0.0-rc.11", "trim" : "^1.0.1"}, "scripts" : {"build" : "yarn workspace @manael/website build", "format" : "prettier --write './**/*.{json,yml}'", "format-check" : "prettier -c './**/*.{json,yml}'", "lint" : "eslint .", "prepare" : "is-ci || husky install"}, "workspaces" : ["website"]} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "@inabagumi/eslint-config-react": {"type": "string"}, "@inabagumi/prettier-config": {"type": "string"}, "@types/react": {"type": "string"}, "eslint": {"type": "string"}, "husky": {"type": "string"}, "is-ci": {"type": "string"}, "lint-staged": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "@inabagumi/eslint-config-react", "@inabagumi/prettier-config", "@types/react", "eslint", "husky", "is-ci", "lint-staged", "prettier", "typescript"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "root": {"type": "boolean"}}, "required": ["extends", "root"]}, "packageManager": {"type": "string"}, "prettier": {"type": "string"}, "private": {"type": "boolean"}, "resolutions": {"type": "object", "properties": {"cheerio": {"type": "string"}, "trim": {"type": "string"}}, "required": ["cheerio", "trim"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "format": {"type": "string"}, "format-check": {"type": "string"}, "lint": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "format", "format-check", "lint", "prepare"]}, "workspaces": {"type": "array", "items": {"type": "string"}}}, "required": ["devDependencies", "eslintConfig", "packageManager", "prettier", "private", "resolutions", "scripts", "workspaces"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.292444, 34.117729], [-118.286135, 34.118502], [-118.285237, 34.107691], [-118.291789, 34.107676], [-118.291863, 34.112665], [-118.290136, 34.114764], [-118.290924, 34.116607], [-118.292444, 34.117729]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 4116}}]} | 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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cdf_smooth" : {"x" : [0.15363312429527623, 0.9041793996130083, 1.7571476248573765, 2.61643894103114, 3.5293708947624487, 4.379383505184489, 5.288045284047448, 6.210074513282992, 7.262310733414134, 8.36084751780822, 9.726464241851671, 11.51910549106687, 13.665314299061539, 16.27518614294881, 20.49126256511511, 27.138565814571123, 60.68767799974347], "c" : [[-0.04136019489623156, 0.0932507533509118, 0.0, 0.005139], [0.000298121253751774, 0.00012253267356565324, 0.07008097203984875, 0.040181999999999995], [-0.0025776675961070436, 0.0008853965437264982, 0.07094070363549439, 0.10023299999999999], [0.004829692990663313, -0.005759505600225402, 0.06675242404916103, 0.16021], [-0.005205624689858558, 0.0074680375734405904, 0.06831219748148076, 0.220025], [0.00276337180431451, -0.00580650232107169, 0.0697245233986551, 0.28029000000000004], [-0.0032753373359618574, 0.0017264086970327792, 0.06601709826830851, 0.34092500000000003], [0.002968966024907537, -0.007333461581057169, 0.06084723161936859, 0.400695], [-0.0024386194398197327, 0.002038699182182277, 0.055275890846283995, 0.46006], [0.0006497862344224682, -0.005998040291159121, 0.05092640899610921, 0.52001], [0.0004110140590449879, -0.0033359634448174853, 0.038179737391975485, 0.580025], [3.97613509524682e-05, -0.0011255611760632438, 0.030181824322195495, 0.640115], [-9.886415110250699e-05, -0.0008695526911673777, 0.02589989336739282, 0.7001], [0.00010392607240740495, -0.0016436209841641238, 0.01934083215334643, 0.760015], [4.755916582517655e-06, -0.000329140193588499, 0.011023520265258572, 0.82013], [2.5003678184743814e-06, -0.00023429813432916332, 0.007278174837223424, 0.88026]]}} | json_instruct | {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["google-spreadsheet-reader", "json-schema-docs", "muonjs", "patreon", "virtual-credit-cards"] | json_instruct | {"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": {"name": {"type": "string"}, "weight": {"type": "integer"}, "run_speed": {"type": "number"}, "walk_speed": {"type": "number"}, "air_speed": {"type": "number"}, "fall_speed": {"type": "number"}, "fast_fall_speed": {"type": "number"}, "air_acceleration": {"type": "number"}, "gravity": {"type": "number"}, "sh_air_time": {"type": "integer"}, "jumps": {"type": "integer"}, "wall_jump": {"type": "boolean"}, "wall_cling": {"type": "boolean"}, "crawl": {"type": "boolean"}, "tether": {"type": "boolean"}, "jumpsquat": {"type": "integer"}, "soft_landing_lag": {"type": "integer"}, "hard_landing_lag": {"type": "integer"}, "fh_air_time": {"type": "integer"}, "traction": {"type": "number"}, "gravity2": {"type": "number"}, "air_friction": {"type": "number"}, "initial_dash": {"type": "number"}, "run_acceleration": {"type": "number"}, "run_deceleration": {"type": "number"}, "jump_height": {"type": "number"}, "hop_height": {"type": "number"}, "air_jump_height": {"type": "number"}}, "required": ["name", "weight", "run_speed", "walk_speed", "air_speed", "fall_speed", "fast_fall_speed", "air_acceleration", "gravity", "sh_air_time", "jumps", "wall_jump", "wall_cling", "crawl", "tether", "jumpsquat", "soft_landing_lag", "hard_landing_lag", "fh_air_time", "traction", "gravity2", "air_friction", "initial_dash", "run_acceleration", "run_deceleration", "jump_height", "hop_height", "air_jump_height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Villager", "weight" : 97, "run_speed" : 1.27, "walk_speed" : 1.04, "air_speed" : 0.94, "fall_speed" : 1.32, "fast_fall_speed" : 2.112, "air_acceleration" : 0.05, "gravity" : 0.078, "sh_air_time" : 40, "jumps" : 2, "wall_jump" : true, "wall_cling" : false, "crawl" : false, "tether" : false, "jumpsquat" : 5, "soft_landing_lag" : 2, "hard_landing_lag" : 4, "fh_air_time" : 61, "traction" : 0.06, "gravity2" : 0.01, "air_friction" : 0.01, "initial_dash" : 1.5, "run_acceleration" : 0.0998, "run_deceleration" : 0.04, "jump_height" : 32.5, "hop_height" : 15.689452, "air_jump_height" : 32.5} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}, "run_speed": {"type": "number"}, "walk_speed": {"type": "number"}, "air_speed": {"type": "number"}, "fall_speed": {"type": "number"}, "fast_fall_speed": {"type": "number"}, "air_acceleration": {"type": "number"}, "gravity": {"type": "number"}, "sh_air_time": {"type": "integer"}, "jumps": {"type": "integer"}, "wall_jump": {"type": "boolean"}, "wall_cling": {"type": "boolean"}, "crawl": {"type": "boolean"}, "tether": {"type": "boolean"}, "jumpsquat": {"type": "integer"}, "soft_landing_lag": {"type": "integer"}, "hard_landing_lag": {"type": "integer"}, "fh_air_time": {"type": "integer"}, "traction": {"type": "number"}, "gravity2": {"type": "number"}, "air_friction": {"type": "number"}, "initial_dash": {"type": "number"}, "run_acceleration": {"type": "number"}, "run_deceleration": {"type": "number"}, "jump_height": {"type": "number"}, "hop_height": {"type": "number"}, "air_jump_height": {"type": "number"}}, "required": ["name", "weight", "run_speed", "walk_speed", "air_speed", "fall_speed", "fast_fall_speed", "air_acceleration", "gravity", "sh_air_time", "jumps", "wall_jump", "wall_cling", "crawl", "tether", "jumpsquat", "soft_landing_lag", "hard_landing_lag", "fh_air_time", "traction", "gravity2", "air_friction", "initial_dash", "run_acceleration", "run_deceleration", "jump_height", "hop_height", "air_jump_height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 1, "pts" : 430, "connections" : 114511, "capacity" : 3015285, "investments" : 35976949}, {"tech" : 3, "pts" : 37, "connections" : 2704, "capacity" : 228416, "investments" : 1256293}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"js.js": {"type": "string"}}, "required": ["js.js"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cfg-graph": {"type": "string"}, "cfg-ir": {"type": "string"}, "cfg.js": {"type": "string"}, "disasm": {"type": "string"}, "esprima": {"type": "string"}, "heap.js": {"type": "string"}, "jit.js": {"type": "string"}, "linearscan": {"type": "string"}, "ssa.js": {"type": "string"}, "weak": {"type": "string"}}, "required": ["cfg-graph", "cfg-ir", "cfg.js", "disasm", "esprima", "heap.js", "jit.js", "linearscan", "ssa.js", "weak"]}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}}, "required": ["name", "version", "description", "bin", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "js.js", "version" : "0.0.0", "description" : "JS JIT Compiler", "bin" : {"js.js" : "bin/js"}, "main" : "lib/js.js", "scripts" : {"test" : "mocha --reporter=spec test/*-test.js && jshint lib/**/*.js"}, "repository" : {"type" : "git", "url" : "git@github.com:indutny/js.js"}, "keywords" : ["JIT", "JS"], "author" : "Fedor Indutny <fedor@indutny.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/indutny/js.js/issues"}, "homepage" : "https://github.com/indutny/js.js", "dependencies" : {"cfg-graph" : "^1.1.0", "cfg-ir" : "^0.4.4", "cfg.js" : "^0.9.0", "disasm" : "^1.2.0", "esprima" : "~1.2.2", "heap.js" : "^0.23.0", "jit.js" : "^0.8.15", "linearscan" : "^0.5.0", "ssa.js" : "^0.8.0", "weak" : "^0.3.0"}, "devDependencies" : {"jshint" : "^2.5.11", "mocha" : "^1.21.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"js.js": {"type": "string"}}, "required": ["js.js"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cfg-graph": {"type": "string"}, "cfg-ir": {"type": "string"}, "cfg.js": {"type": "string"}, "disasm": {"type": "string"}, "esprima": {"type": "string"}, "heap.js": {"type": "string"}, "jit.js": {"type": "string"}, "linearscan": {"type": "string"}, "ssa.js": {"type": "string"}, "weak": {"type": "string"}}, "required": ["cfg-graph", "cfg-ir", "cfg.js", "disasm", "esprima", "heap.js", "jit.js", "linearscan", "ssa.js", "weak"]}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}}, "required": ["name", "version", "description", "bin", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id_3995": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3995"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_3995" : {"title" : "East by West, Vol. 1", "language" : "English", "totaltime" : "7:52:24", "url_librivox" : "http://librivox.org/east-by-west-vol-i-by-henry-w-lucy/", "url_iarchive" : "http://www.archive.org/details/east_by_west_1_rg_librivox", "readers" : ["2607"], "authors" : "1092", "genres" : "Travel & Geography"}} | json_instruct | {"type": "object", "properties": {"id_3995": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3995"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 34, "n_trials" : 210, "objective" : "cross_on_cube", "white" : "hyperopt_tpe", "black" : "bobyqa_noise", "traceback" : ["passing", "passing"], "best_val" : [-1.7419946, -2.0624025], "best_x" : [[0.5271368303216298, 0.013208511682228113, 0.19524062746831639, 0.3380599063125029, 0.4463628343335099, 0.5384584556724052, 0.23641068756616432, 0.2713461414649187, 0.5812523664647133, 0.249431365825548, 0.7927809128892178, 0.5908974763130471, 0.034854605571490005, 0.5696874371343786, 0.2601085294216645, 0.14506986090389865, 0.5996177072235915, 0.3567117442278788, 0.03788471128709692, 0.21147757007727958, 0.16301060376965762, 0.5295526245753572, 0.39876333143382464, 0.6628147314912369, 0.9475268043869067, 0.3597059313987553, 0.2669589774385535, 0.32674427177833765, 0.45577004971774654, 0.2476287097483817, 0.5971017696567182, 0.40760510125830945, 0.4408790459601106, 0.7156020174086757], [0.5612181743571841, 0.5637753333009112, 0.291568887710404, 0.2911308227305775, 0.2919383096988651, 0.2914124365940737, 0.2944876363035268, 0.2893606788880696, 0.294523141274899, 0.29239970506106805, 0.2865116613470267, 0.28848030748138237, 0.2886316324365231, 0.27959657687930367, 0.2902790440179839, 0.2911766957791139, 0.2896889472625309, 0.2925129076087631, 0.2910073083618877, 0.2874282070115655, 0.28948469809000843, 0.2888603226596776, 0.2943844169021917, 0.28777282158614026, 0.2894087057885181, 0.2984630109865982, 0.28839564886162916, 0.2940977475420833, 0.29651814880557015, 0.2912094219441266, 0.29272114383531894, 0.2895566347204778, 0.29399542328195, 0.2901332627607568]], "feval_count" : [210, 210], "n_trials_instructed" : [210, 210], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "bobyqa_noise_cube", "loser" : "hyperopt_tpe_cube"} | 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": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cdf_smooth" : {"x" : [0.4778731808138677, 1.113747183766704, 1.8246526874938405, 2.3813933046814206, 2.839099389178106, 3.3392773184266025, 3.8246193208172907, 4.291881280363474, 4.8067199506438, 5.437489564184156, 6.097455175978234, 6.879334036528161, 7.856575218869098, 9.114494937581927, 10.668143930231592, 13.462135691870849, 27.82076460641017], "c" : [[-0.07159512321425326, 0.13210204225225705, 0.0, 0.005105], [0.01250461767134976, -0.004474390518189236, 0.08115510579561223, 0.040111], [0.0071210768645982, 0.022194414055509273, 0.09375236805446742, 0.10003600000000001], [-0.046090310277902065, 0.03408819224141919, 0.12508718102114488, 0.16034], [0.02733014189199824, -0.029199254110188363, 0.12732487775053708, 0.220315], [-0.003034577371834296, 0.011810547222633647, 0.11862743034721078, 0.280115], [-0.014348818849202343, 0.007392123648467016, 0.12794729307904013, 0.340125], [-0.008889128578048007, -0.012721847989487323, 0.12545691563961392, 0.40005999999999997], [0.016639835189516995, -0.02645124940070643, 0.10528909026848476, 0.46006499999999995], [-0.009483867969317319, 0.005036457834894026, 0.09178129046847007, 0.52013], [0.0023948845922922624, -0.013740622344740303, 0.08603684121257307, 0.5801700000000001], [0.00040131417419340075, -0.00812309343623012, 0.06894206403036042, 0.640185], [0.0013606511502256733, -0.00694655122199332, 0.05421538666710036, 0.700175], [-0.0007416523180430936, -0.0018117814855188508, 0.04319810725127331, 0.7600899999999999], [0.0005132043862148067, -0.005268583615990634, 0.032197705143721195, 0.82005], [2.100439298221472e-05, -0.0009669171346267259, 0.014775767416800882, 0.8800749999999999]]}} | json_instruct | {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"http": {"type": "string"}, "assert": {"type": "string"}}, "required": ["http", "assert"]}}, "required": ["name", "version", "description", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "initial-test-node-over-rabbitmq", "version" : "0.0.1", "description" : "simple requst with json data and expect a return of the same data", "scripts" : {"start" : "node json_request"}, "dependencies" : {"http" : "*", "assert" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"http": {"type": "string"}, "assert": {"type": "string"}}, "required": ["http", "assert"]}}, "required": ["name", "version", "description", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"geometry": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "reference": {"type": "string"}, "organisation": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geometry", "geography", "name", "reference", "organisation", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.241603, 51.594867], [-0.241354, 51.595892], [-0.239954, 51.59577], [-0.23996, 51.594378], [-0.240031, 51.594272], [-0.241603, 51.594867]]]]}, "properties" : {"geometry" : "MULTIPOLYGON (((-0.241603 51.594867,-0.241354 51.595892,-0.239954 51.595770,-0.239960 51.594378,-0.240031 51.594272,-0.241603 51.594867)))", "geography" : "brownfield-site:H/00146/12", "name" : "Blocks C5 To C12, Beaufort Park (Land At Former Raf East Camp Site), Aerodrome Road/ Grahame Park Way, Hendon, London, NW9", "reference" : "H/00146/12", "organisation" : "local-authority-eng:BNE", "slug" : "/brownfield-site/local-authority-eng/BNE/H-00146-12", "entity" : 505842, "entry-date" : "2020-12-22"}} | 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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"geometry": {"type": "string"}, "geography": {"type": "string"}, "name": {"type": "string"}, "reference": {"type": "string"}, "organisation": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geometry", "geography", "name", "reference", "organisation", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "120112106001", "text" : "\u805a\u548c\u56ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "120112106002", "text" : "\u798f\u548c\u56ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "120112106003", "text" : "\u4fe1\u548c\u56ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "120112106201", "text" : "\u4e1c\u5634\u6751\u59d4\u4f1a"}, {"id" : "120112106202", "text" : "\u4e1c\u6ce5\u6cbd\u6751\u59d4\u4f1a"}, {"id" : "120112106203", "text" : "\u5c0f\u97e9\u5e84\u6751\u59d4\u4f1a"}, {"id" : "120112106204", "text" : "\u897f\u5b98\u623f\u6751\u59d4\u4f1a"}, {"id" : "120112106205", "text" : "\u897f\u6ce5\u6cbd\u6751\u59d4\u4f1a"}, {"id" : "120112106206", "text" : "\u67f4\u5e84\u5b50\u6751\u59d4\u4f1a"}, {"id" : "120112106207", "text" : "\u5b59\u5e84\u5b50\u6751\u59d4\u4f1a"}, {"id" : "120112106208", "text" : "\u4e1c\u5468\u5e84\u6751\u59d4\u4f1a"}, {"id" : "120112106209", "text" : "\u738b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "120112106210", "text" : "\u897f\u5468\u5e84\u6751\u59d4\u4f1a"}, {"id" : "120112106211", "text" : "\u5357\u623f\u5b50\u6751\u59d4\u4f1a"}, {"id" : "120112106212", "text" : "\u674e\u5bb6\u5708\u6751\u59d4\u4f1a"}, {"id" : "120112106213", "text" : "\u5218\u5bb6\u5708\u6751\u59d4\u4f1a"}, {"id" : "120112106214", "text" : "\u95eb\u5bb6\u5708\u6751\u59d4\u4f1a"}, {"id" : "120112106215", "text" : "\u97e9\u5bb6\u5708\u6751\u59d4\u4f1a"}, {"id" : "120112106216", "text" : "\u5c0f\u8425\u76d8\u6751\u59d4\u4f1a"}, {"id" : "120112106400", "text" : "\u53cc\u6865\u6cb3\u9547\u5de5\u4e1a\u56ed\u793e\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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"an5.38:3.1": {"type": "string"}, "an5.38:3.2": {"type": "string"}, "an5.38:4.3": {"type": "string"}}, "required": ["an5.38:3.1", "an5.38:3.2", "an5.38:4.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an5.38:3.1" : "S\u0101kh\u0101pattaphal\u016bpeto \u2192 s\u0101kh\u0101pattaphalupeto (pts1ed); s\u0101kh\u0101pattabahupeto (katthaci); s\u0101kh\u0101pattapal\u0101s\u016bpeto (?)", "an5.38:3.2" : "khandhim\u0101va \u2192 khandhim\u0101 ca (bj)", "an5.38:4.3" : "ch\u0101yatthik\u0101 \u2192 ch\u0101yatthino (si)"} | json_instruct | {"type": "object", "properties": {"an5.38:3.1": {"type": "string"}, "an5.38:3.2": {"type": "string"}, "an5.38:4.3": {"type": "string"}}, "required": ["an5.38:3.1", "an5.38:3.2", "an5.38:4.3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"prerenderIOToken": {"type": "string"}}, "required": ["prerenderIOToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"prerenderIOToken" : "Prerender.io Token"} | json_instruct | {"type": "object", "properties": {"prerenderIOToken": {"type": "string"}}, "required": ["prerenderIOToken"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[[[80.10497569274204, 7.107249021903486], [80.10521140325568, 7.106073796681926], [80.10638995582384, 7.104506829719848], [80.10591853479659, 7.103723346238809], [80.10638995582384, 7.103331604498289], [80.10615424531022, 7.102939862757769], [80.10615424531022, 7.10254812101725], [80.10662566633748, 7.10254812101725], [80.10662566633748, 7.101764637536211], [80.10615424531022, 7.100589412314651], [80.10568282428295, 7.101372895795691], [80.10521140325568, 7.100981154055171], [80.10426856120115, 7.100981154055171], [80.10426856120115, 7.100197670574132], [80.10261858760572, 7.099805928833613], [80.10214716657845, 7.099805928833613], [80.10096861401028, 7.099805928833613], [80.10073290349666, 7.101372895795691], [80.10049719298303, 7.101372895795691], [80.10073290349666, 7.101764637536211], [80.10096861401028, 7.104506829719848], [80.10073290349666, 7.106857280162966], [80.10214716657845, 7.107249021903486], [80.10285429811935, 7.108032505384525], [80.10450427171479, 7.108032505384525], [80.10473998222842, 7.107249021903486], [80.10497569274204, 7.107249021903486]]]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"antd-mobile.css": {"type": "string"}, "antd-mobile.js": {"type": "string"}, "antd-mobile.min.css": {"type": "string"}, "antd-mobile.min.js": {"type": "string"}}, "required": ["antd-mobile.css", "antd-mobile.js", "antd-mobile.min.css", "antd-mobile.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"antd-mobile.css" : "sha256-duQv7Yxuc+eOftiJSm3xef+TvSj7yroaqBZWoFORycg=", "antd-mobile.js" : "sha256-+7xrmh7Jbu/rZXmQGSKG2FwUecC4SrdkVtuEzqPhTb8=", "antd-mobile.min.css" : "sha256-8iypaDEu7RD6oBfvSlvangdbk0LVhbB4t2uh12S/RJs=", "antd-mobile.min.js" : "sha256-2W9a2yifYCkyMjMgvBAXhoFTHKZfo5NAs+3a5VZTDQ0="} | json_instruct | {"type": "object", "properties": {"antd-mobile.css": {"type": "string"}, "antd-mobile.js": {"type": "string"}, "antd-mobile.min.css": {"type": "string"}, "antd-mobile.min.js": {"type": "string"}}, "required": ["antd-mobile.css", "antd-mobile.js", "antd-mobile.min.css", "antd-mobile.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:jump": {"type": "integer"}, "minecraft:time_since_rest": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:sprint_one_cm": {"type": "integer"}, "minecraft:play_time": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:walk_one_cm": {"type": "integer"}, "minecraft:sneak_time": {"type": "integer"}, "minecraft:total_world_time": {"type": "integer"}, "minecraft:fly_one_cm": {"type": "integer"}}, "required": ["minecraft:jump", "minecraft:time_since_rest", "minecraft:leave_game", "minecraft:sprint_one_cm", "minecraft:play_time", "minecraft:time_since_death", "minecraft:walk_one_cm", "minecraft:sneak_time", "minecraft:total_world_time", "minecraft:fly_one_cm"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stats" : {"minecraft:custom" : {"minecraft:jump" : 3, "minecraft:time_since_rest" : 633, "minecraft:leave_game" : 1, "minecraft:sprint_one_cm" : 1280, "minecraft:play_time" : 633, "minecraft:time_since_death" : 633, "minecraft:walk_one_cm" : 84, "minecraft:sneak_time" : 22, "minecraft:total_world_time" : 820, "minecraft:fly_one_cm" : 30585}}, "DataVersion" : 2730} | json_instruct | {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:jump": {"type": "integer"}, "minecraft:time_since_rest": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:sprint_one_cm": {"type": "integer"}, "minecraft:play_time": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:walk_one_cm": {"type": "integer"}, "minecraft:sneak_time": {"type": "integer"}, "minecraft:total_world_time": {"type": "integer"}, "minecraft:fly_one_cm": {"type": "integer"}}, "required": ["minecraft:jump", "minecraft:time_since_rest", "minecraft:leave_game", "minecraft:sprint_one_cm", "minecraft:play_time", "minecraft:time_since_death", "minecraft:walk_one_cm", "minecraft:sneak_time", "minecraft:total_world_time", "minecraft:fly_one_cm"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"metadata": {"type": "string"}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["metadata", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"metadata" : "list", "data" : [[0.0035577067130258826, 0.011962734266725662, 0.38714636414995823, 0.025658429759767943], [0.02624037351051156, 0.008980741352820659, 0.3690366096487899, 0.1076780928934465], [0.023177648722931612, 0.013498309514071346, 0.23590521907600878, 0.12135373161540332]]} | json_instruct | {"type": "object", "properties": {"metadata": {"type": "string"}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["metadata", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[16, 8], [12, 8], [17, 3], [0, 8], [8, 3], [6, 8], [21, 8], [8, 3], [8, 5], [8, 5], [5, 8], [7, 8], [12, 8], [8, 3], [9, 30], [14, 8], [18, 25], [6, 8], [15, 8], [8, 6], [22, 23], [1, 8], [7, 8], [8, 7], [12, 8], [6, 8], [8, 26], [8, 4], [8, 5], [19, 13], [17, 3], [3, 11], [8, 3], [8, 6], [8, 12], [20, 7], [1, 8], [8, 4], [3, 2], [29, 10], [24, 27], [8, 3], [2, 8], [5, 8], [6, 8], [6, 8], [2, 8], [8, 2], [7, 8], [8, 6], [12, 8], [28, 17]], "features" : {"0" : "1", "1" : "2", "2" : "4", "3" : "9", "4" : "2", "5" : "5", "6" : "8", "7" : "5", "8" : "40", "9" : "1", "10" : "1", "11" : "1", "12" : "5", "13" : "1", "14" : "1", "15" : "1", "16" : "1", "17" : "3", "18" : "1", "19" : "1", "20" : "1", "21" : "1", "22" : "1", "23" : "1", "24" : "1", "25" : "1", "26" : "1", "27" : "1", "28" : "1", "29" : "1", "30" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-7q57-p6qc-cv4q", "modified" : "2022-05-04T00:31:20Z", "published" : "2022-05-04T00:31:20Z", "aliases" : ["CVE-2012-0549"], "details" : "Unspecified vulnerability in the Oracle AutoVue Office component in Oracle Supply Chain Products Suite 20.1.1 allows remote attackers to affect confidentiality, integrity, and availability, related to Desktop API.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2012-0549"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/48875"}, {"type" : "WEB", "url" : "http://www.mandriva.com/security/advisories?name=MDVSA-2013:150"}, {"type" : "WEB", "url" : "http://www.oracle.com/technetwork/topics/security/cpuapr2012-366314.html"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1026937"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | 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": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "93822", "name" : {"en" : "Cluden Hill / Tarras"}, "country" : "NZ", "region" : "OTA", "identifiers" : {"wmo" : "93822"}, "location" : {"latitude" : -44.8119, "longitude" : 169.5008, "elevation" : 445}, "timezone" : "Pacific/Auckland"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "packageManager": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@humanwhocodes/momoa": {"type": "string"}, "@yarnpkg/lockfile": {"type": "string"}, "semver": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@humanwhocodes/momoa", "@yarnpkg/lockfile", "semver", "yargs"]}}, "required": ["name", "version", "description", "bin", "main", "repository", "keywords", "bugs", "homepage", "license", "packageManager", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "caretify", "version" : "1.0.2", "description" : "Update dependencies semver ranges to use caret", "bin" : "src/cli.js", "main" : "src/index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/scinos/caretify.git"}, "keywords" : ["caret", "semver", "package.json", "yarn.lock"], "bugs" : {"url" : "https://github.com/scinos/caretify/issues"}, "homepage" : "https://github.com/scinos/caretify#readme", "license" : "MIT", "packageManager" : "yarn@3.2.0", "dependencies" : {"@humanwhocodes/momoa" : "^2.0.3", "@yarnpkg/lockfile" : "^1.1.0", "semver" : "^7.3.5", "yargs" : "^17.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "packageManager": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@humanwhocodes/momoa": {"type": "string"}, "@yarnpkg/lockfile": {"type": "string"}, "semver": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["@humanwhocodes/momoa", "@yarnpkg/lockfile", "semver", "yargs"]}}, "required": ["name", "version", "description", "bin", "main", "repository", "keywords", "bugs", "homepage", "license", "packageManager", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/container": {"type": "string"}, "hyperf/pool": {"type": "string"}, "hyperf/contract": {"type": "string"}, "hyperf/utils": {"type": "string"}}, "required": ["php", "psr/container", "hyperf/pool", "hyperf/contract", "hyperf/utils"]}, "require-dev": {"type": "object", "properties": {"hyperf/di": {"type": "string"}}, "required": ["hyperf/di"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Qianlong\\Mongodb\\": {"type": "string"}}, "required": ["Qianlong\\Mongodb\\"]}, "files": {"type": "array", "items": {}}}, "required": ["psr-4", "files"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "hyperf": {"type": "object", "properties": {"config": {"type": "string"}}, "required": ["config"]}}, "required": ["branch-alias", "hyperf"]}, "repositories": {"type": "object", "properties": {"packagist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["packagist"]}}, "required": ["name", "version", "authors", "require", "require-dev", "autoload", "extra", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "qianlong/mongodb", "version" : "1.1.0", "authors" : [{"name" : "qianlong", "email" : "838808603@qq.com"}], "require" : {"php" : ">=7.2", "psr/container" : "^1.0", "hyperf/pool" : "^2.0", "hyperf/contract" : "~2.0", "hyperf/utils" : "~2.0"}, "require-dev" : {"hyperf/di" : "~2.0"}, "autoload" : {"psr-4" : {"Qianlong\\Mongodb\\" : "src/"}, "files" : []}, "extra" : {"branch-alias" : {"dev-master" : "1.1-dev"}, "hyperf" : {"config" : "Qianlong\\Mongodb\\ConfigProvider"}}, "repositories" : {"packagist" : {"type" : "composer", "url" : "https://mirrors.aliyun.com/composer"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "psr/container": {"type": "string"}, "hyperf/pool": {"type": "string"}, "hyperf/contract": {"type": "string"}, "hyperf/utils": {"type": "string"}}, "required": ["php", "psr/container", "hyperf/pool", "hyperf/contract", "hyperf/utils"]}, "require-dev": {"type": "object", "properties": {"hyperf/di": {"type": "string"}}, "required": ["hyperf/di"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Qianlong\\Mongodb\\": {"type": "string"}}, "required": ["Qianlong\\Mongodb\\"]}, "files": {"type": "array", "items": {}}}, "required": ["psr-4", "files"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}, "hyperf": {"type": "object", "properties": {"config": {"type": "string"}}, "required": ["config"]}}, "required": ["branch-alias", "hyperf"]}, "repositories": {"type": "object", "properties": {"packagist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["packagist"]}}, "required": ["name", "version", "authors", "require", "require-dev", "autoload", "extra", "repositories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"https://deno.land/std@v0.36.0/testing/asserts.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/testing/diff.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/testing/format.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/fmt/colors.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/flags/mod.ts": {"type": "string"}}, "required": ["https://deno.land/std@v0.36.0/testing/asserts.ts", "https://deno.land/std@v0.36.0/testing/diff.ts", "https://deno.land/std@v0.36.0/testing/format.ts", "https://deno.land/std@v0.36.0/fmt/colors.ts", "https://deno.land/std@v0.36.0/flags/mod.ts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"https://deno.land/std@v0.36.0/testing/asserts.ts" : "00e72c406a3a1a5005298ca304fb6007c44471b0db27293c48a922f94358105d", "https://deno.land/std@v0.36.0/testing/diff.ts" : "a4c723ce92467507ada670c23dbaa08444315253230d1c9e77b6dc70080a59fa", "https://deno.land/std@v0.36.0/testing/format.ts" : "7f2b6e5c4cbb4bf516b538c43135e4fcbbd4a1672ce981117d2b841737e3a94b", "https://deno.land/std@v0.36.0/fmt/colors.ts" : "8bf002ba6e86f323aea0d5e066c98f2ff3c7908563db9248c845d4723eaaca98", "https://deno.land/std@v0.36.0/flags/mod.ts" : "15a6b4094cc280b5c9efbb7fed17a5cc115fc0262052eb3a86b458644b9121d5"} | json_instruct | {"type": "object", "properties": {"https://deno.land/std@v0.36.0/testing/asserts.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/testing/diff.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/testing/format.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/fmt/colors.ts": {"type": "string"}, "https://deno.land/std@v0.36.0/flags/mod.ts": {"type": "string"}}, "required": ["https://deno.land/std@v0.36.0/testing/asserts.ts", "https://deno.land/std@v0.36.0/testing/diff.ts", "https://deno.land/std@v0.36.0/testing/format.ts", "https://deno.land/std@v0.36.0/fmt/colors.ts", "https://deno.land/std@v0.36.0/flags/mod.ts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"place": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["place"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"place" : {"$ref" : "places.json#"}}, "required" : ["place"], "additionalProperties" : false} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"place": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["place"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "properties", "required", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Orgnac-l'Aven", "circ" : "3\u00e8me circonscription", "dpt" : "Ard\u00e8che", "inscrits" : 451, "abs" : 223, "votants" : 228, "blancs" : 23, "nuls" : 10, "exp" : 195, "res" : [{"nuance" : "REM", "nom" : "M. Matthieu PEYRAUD", "voix" : 110}, {"nuance" : "LR", "nom" : "M. Fabrice BRUN", "voix" : 85}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"sms-forward": {"type": "string"}}, "required": ["sms-forward"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "google-libphonenumber": {"type": "string"}, "js-base64": {"type": "string"}, "sqlite3": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["chalk", "google-libphonenumber", "js-base64", "sqlite3", "xml2js"]}}, "required": ["name", "version", "description", "homepage", "main", "bin", "keywords", "repository", "bugs", "author", "license", "preferGlobal", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sms-forward", "version" : "1.0.13", "description" : "Auto-forward incoming SMS from one mobile phone number to another phone number using a Huawei mobile broadband device (dongles, wingles)", "homepage" : "https://github.com/matsuo3rd/sms-forward#readme", "main" : "index.js", "bin" : {"sms-forward" : "./bin/sms-forward"}, "keywords" : ["sms", "auto forward", "forward", "huawei", "modem", "dongle"], "repository" : {"type" : "git", "url" : "git://github.com/matsuo3rd/sms-forward.git"}, "bugs" : {"url" : "http://github.com/matsuo3rd/sms-forward/issues"}, "author" : "Bertrand Martel", "license" : "ISC", "preferGlobal" : true, "dependencies" : {"chalk" : "^2.3.0", "google-libphonenumber" : "^3.0.9", "js-base64" : "^2.4.0", "sqlite3" : "^4.2.0", "xml2js" : "^0.4.19"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"sms-forward": {"type": "string"}}, "required": ["sms-forward"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "google-libphonenumber": {"type": "string"}, "js-base64": {"type": "string"}, "sqlite3": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["chalk", "google-libphonenumber", "js-base64", "sqlite3", "xml2js"]}}, "required": ["name", "version", "description", "homepage", "main", "bin", "keywords", "repository", "bugs", "author", "license", "preferGlobal", "dependencies"], "$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"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[135.25, 26.666666666666668], [135.25, 26.75], [135.375, 26.75], [135.375, 26.666666666666668], [135.25, 26.666666666666668]]]}, "properties" : {"code" : 403502, "url" : "http://madefor.github.io/0410/api/v1/403502.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/403502.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "fetch": {"type": "object", "properties": {"quark:foxhound": {"type": "integer"}}, "required": ["quark:foxhound"]}, "rewards": {"type": "object", "properties": {"items": {"type": "object", "properties": {"minecraft:emerald": {"type": "integer"}, "minecraft:coal | minecraft:lead[common]": {"type": "integer"}, "StoneCircleTotem": {"type": "integer"}}, "required": ["minecraft:emerald", "minecraft:coal | minecraft:lead[common]", "StoneCircleTotem"]}, "xp": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["items", "xp"]}}, "required": ["modules", "lang", "fetch", "rewards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"modules" : ["quark:foxhound"], "lang" : {"en" : {"title" : "Hounds", "description" : "Locate and bring foxhounds to the scrollkeeper."}}, "fetch" : {"quark:foxhound" : 4}, "rewards" : {"items" : {"minecraft:emerald" : 4, "minecraft:coal | minecraft:lead[common]" : 2, "StoneCircleTotem" : 1}, "xp" : {"count" : 100}}} | json_instruct | {"type": "object", "properties": {"modules": {"type": "array", "items": {"type": "string"}}, "lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "fetch": {"type": "object", "properties": {"quark:foxhound": {"type": "integer"}}, "required": ["quark:foxhound"]}, "rewards": {"type": "object", "properties": {"items": {"type": "object", "properties": {"minecraft:emerald": {"type": "integer"}, "minecraft:coal | minecraft:lead[common]": {"type": "integer"}, "StoneCircleTotem": {"type": "integer"}}, "required": ["minecraft:emerald", "minecraft:coal | minecraft:lead[common]", "StoneCircleTotem"]}, "xp": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["items", "xp"]}}, "required": ["modules", "lang", "fetch", "rewards"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Gleb Lukianets": {"type": "string"}}, "required": ["Gleb Lukianets"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"RDSwipeView": {"type": "array", "items": {"type": "string"}}}, "required": ["RDSwipeView"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "RDSwipeView", "version" : "0.1.0", "summary" : "Swipe actions view like in iOS Mail app", "description" : "RDSwipeView is a simple view that allows you to add arbitrary amount of custom action items available by swipe/pan gesture.", "homepage" : "https://github.com/glukianets/RDSwipeView", "license" : "MIT", "authors" : {"Gleb Lukianets" : "glukianets@gmail.com"}, "source" : {"git" : "https://github.com/glukianets/RDSwipeView.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "8.0"}, "source_files" : "RDSwipeView/Classes/**/*", "resource_bundles" : {"RDSwipeView" : ["RDSwipeView/Assets/*.png"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Gleb Lukianets": {"type": "string"}}, "required": ["Gleb Lukianets"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"RDSwipeView": {"type": "array", "items": {"type": "string"}}}, "required": ["RDSwipeView"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"0": {"type": "string"}, "particle": {"type": "string"}}, "required": ["0", "particle"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "bambootweaks:block/bamboo_framed_stairs", "textures" : {"0" : "bambootweaks:block/dry_bamboo_stairs", "particle" : "bambootweaks:block/dry_bamboo_stairs"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"0": {"type": "string"}, "particle": {"type": "string"}}, "required": ["0", "particle"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "SHINOBI", "other_nominate" : []} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : ["md-26-big-Data.db"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "gambeson", "definition" : "Same as Gambison."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Pulligny", "dpt" : "Meurthe-et-Moselle", "inscrits" : 964, "abs" : 154, "votants" : 810, "blancs" : 13, "nuls" : 6, "exp" : 791, "res" : [{"panneau" : "2", "voix" : 222}, {"panneau" : "3", "voix" : 189}, {"panneau" : "9", "voix" : 148}, {"panneau" : "11", "voix" : 88}, {"panneau" : "4", "voix" : 56}, {"panneau" : "1", "voix" : 48}, {"panneau" : "6", "voix" : 13}, {"panneau" : "5", "voix" : 9}, {"panneau" : "10", "voix" : 9}, {"panneau" : "8", "voix" : 8}, {"panneau" : "7", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Acc": {"type": "number"}, "IoU": {"type": "number"}, "mIou": {"type": "number"}}, "required": ["Acc", "IoU", "mIou"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Acc" : 0.7687177330752393, "IoU" : 0.5153434280459837, "mIou" : 0.674665793101765} | json_instruct | {"type": "object", "properties": {"Acc": {"type": "number"}, "IoU": {"type": "number"}, "mIou": {"type": "number"}}, "required": ["Acc", "IoU", "mIou"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "The deed of a corporation shall be executed and acknowledged either (1) by an attorney-in-fact appointed for that purpose or (2) without appointment, by its president or a vice-president if also attested by the secretary or assistant secretary of the corporation.", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 45-502.\n\n1973 Ed., \u00a7 45-302.\n\nLegislative History of Laws\n\nLaw 10-110, the \"Property Conveyancing Revision Act of 1994,\" was introduced in Council and assigned Bill No. 10-88, which was referred to the Committee on the Judiciary. The Bill was adopted on first and second readings on January 4, 1994, and February 1, 1994, respectively. Signed by the Mayor on February 18, 1994, it was assigned Act No. 10-198 and transmitted to both Houses of Congress for its review. D.C. Law 10-110 became effective on April 27, 1994.\n\nDC CODE \u00a7 42-602\n\nCurrent through December 11, 2012", "credits" : "(Mar. 3, 1901, 31 Stat. 1268, ch. 854, \u00a7 497; June 30, 1902, 32 Stat. 531, ch. 1329; Apr. 27, 1994, D.C. Law 10-110, \u00a7 2(c), 41 DCR 1023.)", "sections" : [], "division" : {"identifier" : "VII", "text" : "Property."}, "title" : {"identifier" : "42", "text" : "Real Property. (Refs & Annos)"}, "subtitle" : {"prefix" : "I", "text" : " General."}, "chapter" : {"identifier" : "6", "text" : "Forms; Covenants and Warranties."}, "heading" : {"title" : "42", "chaptersection" : "602", "identifier" : "42-602", "catch_text" : "Deeds of corporations; formal requisites; acknowledgment."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "cardpool": {"type": "string"}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "cardpool", "tcg", "ocg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 68191756, "ot" : 3, "alias" : 0, "setcode" : 254, "type" : 65538, "atk" : 0, "def" : 0, "level" : 0, "race" : 0, "attribute" : 0, "category" : 262144, "name" : "World Legacy's Memory", "desc" : "Special Summon 1 \"Mekk-Knight\" monster from your hand or Deck in Defense Position, but return it to the hand during the End Phase. For the rest of this turn after this card resolves, you cannot Special Summon monsters, except \"Mekk-Knight\" monsters. You can only activate 1 “World Legacy's Memory” per turn.", "str1" : "", "str2" : "Affected by \"World Legacy's Memory\"", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "cardpool" : "OCG/TCG", "tcg" : {"pack" : "Flames of Destruction Special Edition", "pack_id" : "FLOD-DESE3", "date" : "2018-06-07"}, "ocg" : {"pack" : "Cybernetic Horizon", "pack_id" : "CYHO-JP061", "date" : "2018-04-14"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/1/11/WorldLegacysMemory-CYHO-EN-C-1E.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "cardpool": {"type": "string"}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "ocg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "cardpool", "tcg", "ocg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"localhost:20000": {"type": "object", "properties": {"source-languages": {"type": "string"}, "target-languages": {"type": "string"}}, "required": ["source-languages", "target-languages"]}}, "required": ["localhost:20000"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localhost:20000" : {"source-languages" : "fi", "target-languages" : "en"}} | json_instruct | {"type": "object", "properties": {"localhost:20000": {"type": "object", "properties": {"source-languages": {"type": "string"}, "target-languages": {"type": "string"}}, "required": ["source-languages", "target-languages"]}}, "required": ["localhost:20000"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "object", "properties": {"InitializeActuators": {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}}, "required": ["count", "self", "total", "children"]}, "InitializeSensors": {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}}, "required": ["count", "self", "total", "children"]}}, "required": ["InitializeActuators", "InitializeSensors"]}, "gauges": {"type": "object", "properties": {}, "required": []}, "metadata": {"type": "object", "properties": {"timer_format_version": {"type": "string"}, "start_time_seconds": {"type": "string"}, "unity_version": {"type": "string"}, "command_line_arguments": {"type": "string"}, "communication_protocol_version": {"type": "string"}, "com.unity.ml-agents_version": {"type": "string"}, "scene_name": {"type": "string"}, "end_time_seconds": {"type": "string"}}, "required": ["timer_format_version", "start_time_seconds", "unity_version", "command_line_arguments", "communication_protocol_version", "com.unity.ml-agents_version", "scene_name", "end_time_seconds"]}}, "required": ["count", "self", "total", "children", "gauges", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 1, "self" : 8.7188496, "total" : 8.722355499999999, "children" : {"InitializeActuators" : {"count" : 1, "self" : 0.0015030999999999998, "total" : 0.0015030999999999998, "children" : null}, "InitializeSensors" : {"count" : 1, "self" : 0.0005001, "total" : 0.0005001, "children" : null}}, "gauges" : {}, "metadata" : {"timer_format_version" : "0.1.0", "start_time_seconds" : "1636494775", "unity_version" : "2020.3.1f1", "command_line_arguments" : "C:\\Program Files\\Unity\\Hub\\Editor\\2020.3.1f1\\Editor\\Unity.exe -projectpath C:/Users/batua/Desktop/RLNav/ProjNar -useHub -hubIPC -cloudEnvironment production -hubSessionId 965df590-4197-11ec-a65e-039238c07845 -accessToken yXEgA7aSQ7dXL16waIKRsoSK9qR51oQMWhpOJvKPVOY011f", "communication_protocol_version" : "1.4.0", "com.unity.ml-agents_version" : "1.8.1-preview", "scene_name" : "", "end_time_seconds" : "1636494784"}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "object", "properties": {"InitializeActuators": {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}}, "required": ["count", "self", "total", "children"]}, "InitializeSensors": {"type": "object", "properties": {"count": {"type": "integer"}, "self": {"type": "number"}, "total": {"type": "number"}, "children": {"type": "null"}}, "required": ["count", "self", "total", "children"]}}, "required": ["InitializeActuators", "InitializeSensors"]}, "gauges": {"type": "object", "properties": {}, "required": []}, "metadata": {"type": "object", "properties": {"timer_format_version": {"type": "string"}, "start_time_seconds": {"type": "string"}, "unity_version": {"type": "string"}, "command_line_arguments": {"type": "string"}, "communication_protocol_version": {"type": "string"}, "com.unity.ml-agents_version": {"type": "string"}, "scene_name": {"type": "string"}, "end_time_seconds": {"type": "string"}}, "required": ["timer_format_version", "start_time_seconds", "unity_version", "command_line_arguments", "communication_protocol_version", "com.unity.ml-agents_version", "scene_name", "end_time_seconds"]}}, "required": ["count", "self", "total", "children", "gauges", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"idArt" : "773", "series" : "Revue des Nouvelles Technologies de l'Information", "booktitle" : "EGC", "year" : "2006", "place" : "Lille", "location" : {"lat" : 50.62925, "lon" : 3.057256}, "title" : "Analyse du Comportement des utilisateurs exploitant une base de donn\u00e9es vid\u00e9o", "abstract" : "Dans cet article, nous pr\u00e9sentons un mod\u00e8le de fouille des usages dela vid\u00e9o pour am\u00e9liorer la qualit\u00e9 de l'indexation. Nous proposons une approchebas\u00e9e sur un mod\u00e8le \u00e0 deux niveaux repr\u00e9sentant le comportement des utilisateursexploitant un moteur de recherche vid\u00e9o. Le premier niveau consiste \u00e0mod\u00e9liser le comportement lors de la lecture d'une vid\u00e9o unique (comportementintra vid\u00e9o), le second \u00e0 mod\u00e9liser le comportement sur l'ensemble d'une session(comportement inter video). A partir de cette repr\u00e9sentation, nous avonsd\u00e9velopp\u00e9 un algorithme de regroupement, adapt\u00e9 \u00e0 la nature particuli\u00e8re de cesdonn\u00e9es. L'analyse des usages de la vid\u00e9o nous permet d'affiner l'indexationvid\u00e9o sur la base de l'int\u00e9r\u00eat des utilisateurs.", "authors" : ["Sylvain Mongy"], "pdf1page" : "http://editions-rnti.fr/render_pdf.php?p1&p=1000376", "pdfarticle" : "http://editions-rnti.fr/render_pdf.php?p=1000376"} | json_instruct | {"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"check": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}}, "required": ["check", "deploy", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openzeppelin/contracts-ethereum-package": {"type": "string"}, "@openzeppelin/upgrades": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}}, "required": ["@openzeppelin/contracts-ethereum-package", "@openzeppelin/upgrades", "@truffle/hdwallet-provider"]}, "devDependencies": {"type": "object", "properties": {"@openzeppelin/cli": {"type": "string"}, "openzeppelin-test-helpers": {"type": "string"}, "chai": {"type": "string"}, "eth-gas-reporter": {"type": "string"}, "truffle": {"type": "string"}}, "required": ["@openzeppelin/cli", "openzeppelin-test-helpers", "chai", "eth-gas-reporter", "truffle"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "example-truffle-migrate", "version" : "2.5.3", "description" : "OpenZeppelin SDK example: using truffle migrations", "main" : "index.js", "private" : true, "scripts" : {"check" : "truffle exec index.js --network local", "deploy" : "npx truffle exec scripts/deploy.js", "test" : "truffle test"}, "author" : "santiago@openzeppelin.com", "license" : "MIT", "dependencies" : {"@openzeppelin/contracts-ethereum-package" : "^2.2.3", "@openzeppelin/upgrades" : "^2.5.3", "@truffle/hdwallet-provider" : "^1.0.20"}, "devDependencies" : {"@openzeppelin/cli" : "^2.5.3", "openzeppelin-test-helpers" : "^0.4.3", "chai" : "^4.2.0", "eth-gas-reporter" : "^0.2.12", "truffle" : "^5.0.38"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"check": {"type": "string"}, "deploy": {"type": "string"}, "test": {"type": "string"}}, "required": ["check", "deploy", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@openzeppelin/contracts-ethereum-package": {"type": "string"}, "@openzeppelin/upgrades": {"type": "string"}, "@truffle/hdwallet-provider": {"type": "string"}}, "required": ["@openzeppelin/contracts-ethereum-package", "@openzeppelin/upgrades", "@truffle/hdwallet-provider"]}, "devDependencies": {"type": "object", "properties": {"@openzeppelin/cli": {"type": "string"}, "openzeppelin-test-helpers": {"type": "string"}, "chai": {"type": "string"}, "eth-gas-reporter": {"type": "string"}, "truffle": {"type": "string"}}, "required": ["@openzeppelin/cli", "openzeppelin-test-helpers", "chai", "eth-gas-reporter", "truffle"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}}, "required": ["avif", "webp", "jpeg"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"avif" : [{"format" : "avif", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/uSLxFiwkcO-90.avif", "sourceType" : "image/avif", "srcset" : "/img/avatars/twitter/uSLxFiwkcO-90.avif 90w", "filename" : "uSLxFiwkcO-90.avif", "outputPath" : "src/img/avatars/twitter/uSLxFiwkcO-90.avif", "size" : 1233}], "webp" : [{"format" : "webp", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/uSLxFiwkcO-90.webp", "sourceType" : "image/webp", "srcset" : "/img/avatars/twitter/uSLxFiwkcO-90.webp 90w", "filename" : "uSLxFiwkcO-90.webp", "outputPath" : "src/img/avatars/twitter/uSLxFiwkcO-90.webp", "size" : 1458}], "jpeg" : [{"format" : "jpeg", "width" : 90, "height" : 90, "url" : "/img/avatars/twitter/uSLxFiwkcO-90.jpeg", "sourceType" : "image/jpeg", "srcset" : "/img/avatars/twitter/uSLxFiwkcO-90.jpeg 90w", "filename" : "uSLxFiwkcO-90.jpeg", "outputPath" : "src/img/avatars/twitter/uSLxFiwkcO-90.jpeg", "size" : 2054}]} | json_instruct | {"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}}, "required": ["avif", "webp", "jpeg"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "discord": {"type": "string"}, "ko-fi": {"type": "string"}}, "required": ["name", "discord", "ko-fi"]}}, "system": {"type": "array", "items": {"type": "string"}}, "esmodules": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {}}, "styles": {"type": "array", "items": {"type": "string"}}, "packs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "path": {"type": "string"}, "entity": {"type": "string"}, "module": {"type": "string"}, "system": {"type": "string"}}, "required": ["name", "label", "path", "entity", "module", "system"]}}, "languages": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}}, "required": ["lang", "name", "path"]}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}, "bugs": {"type": "string"}, "changelog": {"type": "string"}, "readme": {"type": "string"}, "manifestPlusVersion": {"type": "string"}}, "required": ["name", "title", "description", "version", "minCoreVersion", "compatibleCoreVersion", "author", "authors", "system", "esmodules", "scripts", "styles", "packs", "languages", "url", "manifest", "download", "bugs", "changelog", "readme", "manifestPlusVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wfrp4e-gm-toolkit", "title" : "GM Toolkit (WFRP4e)", "description" : "Utilities for WFRP4e GMs", "version" : "0.8.0", "minCoreVersion" : "0.8.8", "compatibleCoreVersion" : "0.8.9", "author" : "Jagusti", "authors" : [{"name" : "Jagusti", "discord" : "Jagusti#3610", "ko-fi" : "jagusti"}], "system" : ["wfrp4e"], "esmodules" : ["wfrp4e-gm-toolkit.mjs"], "scripts" : [], "styles" : ["/css/gmtoolkit.css"], "packs" : [{"name" : "gm-toolkit-macros", "label" : "GM Toolkit", "path" : "packs/gm-toolkit-macros.db", "entity" : "Macro", "module" : "wfrp4e-gm-toolkit", "system" : "wfrp4e"}], "languages" : [{"lang" : "en", "name" : "English", "path" : "lang/en.json"}, {"lang" : "fr", "name" : "French", "path" : "lang/fr.json"}], "url" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit", "manifest" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit/releases/latest/download/module.json", "download" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit/releases/download/v0.8.0/wfrp4e-gm-toolkit.zip", "bugs" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit/issues", "changelog" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit/releases", "readme" : "https://github.com/Jagusti/fvtt-wfrp4e-gmtoolkit/wiki", "manifestPlusVersion" : "1.2.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minCoreVersion": {"type": "string"}, "compatibleCoreVersion": {"type": "string"}, "author": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "discord": {"type": "string"}, "ko-fi": {"type": "string"}}, "required": ["name", "discord", "ko-fi"]}}, "system": {"type": "array", "items": {"type": "string"}}, "esmodules": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "array", "items": {}}, "styles": {"type": "array", "items": {"type": "string"}}, "packs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "label": {"type": "string"}, "path": {"type": "string"}, "entity": {"type": "string"}, "module": {"type": "string"}, "system": {"type": "string"}}, "required": ["name", "label", "path", "entity", "module", "system"]}}, "languages": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}}, "required": ["lang", "name", "path"]}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}, "bugs": {"type": "string"}, "changelog": {"type": "string"}, "readme": {"type": "string"}, "manifestPlusVersion": {"type": "string"}}, "required": ["name", "title", "description", "version", "minCoreVersion", "compatibleCoreVersion", "author", "authors", "system", "esmodules", "scripts", "styles", "packs", "languages", "url", "manifest", "download", "bugs", "changelog", "readme", "manifestPlusVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.