input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"filter[date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}},... | {"type" : "object", "properties" : {"filter[date]" : {"required" : false, "type" : "string", "format" : "date"}, "filter[any_date]" : {"required" : false, "type" : "boolean"}, "filter[from_number]" : {"required" : false, "type" : "string"}, "filter[to_number]" : {"required" : false, "type" : "string"}, "filter[type]" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"filter[date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}}, "required": ["required", "type", "format"]}, "filter[any_date]": {"t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "VSCO Film", "description" : "Film-like presets for Lightroom and Photoshop.", "url" : "http://vsco.co/store/film"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty... | {"name" : "@lifaon/rx-i18n", "version" : "2.1.0", "description" : "Description", "repository" : {"type" : "git", "url" : "https://github.com/lifaon74/rx-i18n"}, "keywords" : ["rx-js-light", "i18n", "reactive", "date", "currency", "formatter"], "sideEffects" : false, "author" : "Valentin Richard", "license" : "MIT", "ac... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"t... | {"name" : "stichoza/skype-status-php", "description" : "Get Skype user's online status", "keywords" : ["skype", "status", "php", "online", "offline"], "license" : "MIT", "homepage" : "http://github.com/Stichoza/skype-status-php", "authors" : [{"name" : "Levan Velijanashvili", "email" : "me@stichoza.com"}], "require" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "requir... | {"activePlaceCount" : 0, "birth" : {"place" : {"name" : "Chemnitz, Deutschland", "placeName" : "Chemnitz", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1884}}, "birthYear" : 1884, "date" : "1884\u20131976", "death" : {"place" : {"name" : "Berlin, Deutschland", "placeName" : "Berlin", "placeType" : "inhabit... | json_instruct | {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "29060c6cba9b41bea345146de37c0b5c31dbcb4e.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"AWSTemplateFormatVersion": {"type": "string"}, "Description": {"type": "string"}, "Parameters": {"type": "object", "properties": {"env": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": [... | {"AWSTemplateFormatVersion" : "2010-09-09", "Description" : "test template for cnfassist - does nothing much", "Parameters" : {"env" : {"Type" : "String"}, "vpc" : {"Type" : "String"}, "zoneA" : {"Type" : "String", "Description" : "::CFN_ZONE_A"}, "zoneB" : {"Type" : "String", "Description" : "::CFN_ZONE_B"}}, "Resourc... | json_instruct | {"type": "object", "properties": {"AWSTemplateFormatVersion": {"type": "string"}, "Description": {"type": "string"}, "Parameters": {"type": "object", "properties": {"env": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": ["Type"]}, "vpc": {"type": "object", "properties": {"Type": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08", "ar... | {"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08" : [2.9193998139064925e-11, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.... | json_instruct | {"type": "object", "properties": {"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "actions": {"type": "array", "items": {"type": "string"}}, "struggles": {"type": "array", "items": {"type": "string... | {"id" : 489, "date" : "2021/10/20", "sources" : ["https://www.nytimes.com/2021/10/20/business/media/netflix-protest-dave-chappelle.html"], "actions" : ["protest", "strike"], "struggles" : ["discrimination", "ethics"], "employment_types" : ["white collar workers", "inhouse workers"], "description" : "Employees walked ou... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "actions": {"type": "array", "items": {"type": "string"}}, "struggles": {"type": "array", "items": {"type": "string"}}, "employment_types": {"type": "array", "items": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"autorenew_service_terminate": {"type": "string"}, "autorenew_service_terminate_cancel": {"type": "string"}}, "required": ["autorenew_service_terminate", "autorenew_service_terminate_cancel"], "$schema": "http... | {"autorenew_service_terminate" : "Conferma", "autorenew_service_terminate_cancel" : "Annulla"} | json_instruct | {"type": "object", "properties": {"autorenew_service_terminate": {"type": "string"}, "autorenew_service_terminate_cancel": {"type": "string"}}, "required": ["autorenew_service_terminate", "autorenew_service_terminate_cancel"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": ... | {"name" : "bayesianas", "version" : "1.0.0", "description" : "Proyecto Sistemas Expertos UAGRM", "main" : "index.js", "scripts" : {"start" : "node index.js", "postinstall" : "cd src && ../node_modules/.bin/bower install --allow-root"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mauriballes/bayesian... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "repository": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}, "... | {"short_name" : "Sahil Rathee || Rttss", "name" : "RTTSS Portfolio APP PWA", "icons" : [{"src" : "./logo.svg", "type" : "image/svg", "sizes" : "165x165", "purpose" : "any"}], "start_url" : ".", "display" : "standalone", "theme_color" : "#000000", "background_color" : "#ffffff"} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "type", "sizes", "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"server": {"type": "string"}, "client": {"... | {"name" : "backend", "version" : "2.0.0", "description" : "backend for shpitto me", "main" : "server/index.js", "scripts" : {"server" : "nodemon server/index.js", "client" : "cd frontend && npm run start", "dev" : "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"", "test" : "echo \"Error: no tes... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"server": {"type": "string"}, "client": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "re... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": ... | {"code" : 1804082001, "parent" : 1804082, "name" : "LABUHAN RATU EMPAT", "latitude" : null, "longitude" : null, "postal" : [34375], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": ... | {"quality" : 26, "model" : "R101", "elapsed" : 670.0123343467712, "tp" : 42856, "fp" : 363572, "precision" : 0.10544549096026848, "recall" : 1.1794688317049677, "f1" : 0.19358437809844092, "min_score" : 0.05000061169266701, "AP" : 32.262312215677944, "AP50" : 50.108849349474674, "AP75" : 34.10273257558467, "APs" : 15.3... | json_instruct | {"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": "number"}, "min_score": {"type": "number"}, "AP": {"type": "nu... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1975, 7], [1977, 5], [1978, 7], [1979, 6], [1980, 12], [1981, 10], [1982, 9], [1983, 8], [1984, 12], [1985, 23], [1986, 14], [1987, 17], [1988, 14], [1989, 22], [1990, 15], [1991, 12], [1992, 9], [1993, 8], [1994, 5], [1995, 12], [1997, 5], [1999, 8]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "... | {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-2.00607, 50.656066], [-2.00606, 50.655896], [-2.006826, 50.655599], [-2.00727, 50.656232], [-2.006742, 50.656322], [-2.006489, 50.656399], [-2.00607, 50.656066]]]]}, "properties" : {"geography" : "conservation-area:7", "geometry" : "MULTIP... | 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"]}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1110061018", "district_id" : "1110061", "name" : "GEUDONG GEUDONG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "viru... | [{"definition" : "Apple chlorotic leaf spot virus isolate JB, complete genome.", "virus_id" : "54a508b1", "isolate_id" : "3e36ijd3", "_id" : "KC935956", "host" : "Pyrus bretschneideri cv. Jingbai (pear)"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.or... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"video": {"type": "string"}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "releasedate": {"type": "integer"}, "thumbnail": {"ty... | {"video" : "//cdn.unusann.us/01/292.mp4", "season" : 1, "episode" : 292, "title" : "Was 2020 a Bad Year for Unus Annus?", "description" : "", "releasedate" : 1598814000000, "thumbnail" : "//cdn.unusann.us/thumbnails/01/292.webp"} | json_instruct | {"type": "object", "properties": {"video": {"type": "string"}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "releasedate": {"type": "integer"}, "thumbnail": {"type": "string"}}, "required": ["video", "season", "episode", "title", "descrip... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "integer"}}, "pts": {"type": "integer"}, "ptsCount": {"type": "integer"}, "_constructor": {"type": "string"}}, "required": ["messages", "pts", "ptsCount", "_constructor"], "$schem... | {"messages" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "pts" : 0, "ptsCount" : 0, "_constructor" : "updateReadMessagesContents#68c13933"} | json_instruct | {"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "integer"}}, "pts": {"type": "integer"}, "ptsCount": {"type": "integer"}, "_constructor": {"type": "string"}}, "required": ["messages", "pts", "ptsCount", "_constructor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Reply MMS using Twilio", "type" : "server"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"191709026113945600": {"type": "string"}, "425037168914726923": {"type": "string"}, "229682106882719745": {"type": "string"}, "455200191545344000": {"type": "string"}, "284102283027939328": {"type": "string"}, "311... | {"191709026113945600" : "4:5:22:OD04IzMyMDA:24:XShadowWizardX:26:1919857", "425037168914726923" : "4:4:22:UGVwcGVyMzYwIzE1MDg:24:Pepper360:26:5197164", "229682106882719745" : "4:4:22:T2N0ZXJhY3QjMzA2Nw:24:Octeract:26:2004270", "455200191545344000" : "4:3:22:UGFya3kjNDM3Mw:24:Parky4373:26:6429626", "284102283027939328" ... | json_instruct | {"type": "object", "properties": {"191709026113945600": {"type": "string"}, "425037168914726923": {"type": "string"}, "229682106882719745": {"type": "string"}, "455200191545344000": {"type": "string"}, "284102283027939328": {"type": "string"}, "311689136496967703": {"type": "string"}, "216708683290247168": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"created_by": {"type": "string"}, "formats": {"type": "object", "properties": {"txt": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "strin... | {"created_by" : "a.person", "formats" : {"txt" : {"path" : "app/12345/v001/converted.txt", "filename" : "converted.txt", "content_type" : "text/plain"}, "original" : {"path" : "app/12345/v001/original", "filename" : "original", "content_type" : "application/msword"}}} | json_instruct | {"type": "object", "properties": {"created_by": {"type": "string"}, "formats": {"type": "object", "properties": {"txt": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "string"}}, "required": ["path", "filename", "content_type"]}, "original": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "provinc... | {"name" : "Hippocrates University", "alt_name" : "Universidad Hip\u00f3crates", "country" : "Mexico", "state" : null, "address" : {"street" : "Av. Andr\u00e9s de Urdaneta No. 360, y M. L\u00f3pez de Legazpi No. 15, Fracc. Hornos", "city" : "Acapulco de Ju\u00e1rez", "province" : "Guerrero", "postal_code" : "39350"}, "c... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "descri... | {"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "Formatter", "description" : ""}], "metodos" : [{"nombre" : "format", "description" : "", "parametros" : [{"nombre" : "LogRecord record", "description" : ""}]}, {"nombre" : "formatMessage", "description" : "", "parametros" : [{"nombre" : "LogR... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}},... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/... | {"variants" : {"" : {"model" : "techreborn:block/machines/energy/lsu_storage"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-tsclust"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "class... | {"name" : "unit2", "url" : "https://github.com/njuneau/Unit2", "license" : "BSD", "tags" : ["utility", "test"], "description" : "A modification of Haxe's original unit testing framework", "version" : "1.0.0-beta.1", "classPath" : "src/main/haxe", "releasenote" : "Initial release", "contributors" : ["njuneau"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPath": {"type": "string"}, "releasenote": {"type": "string"}, "contribut... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"prefix": {"type": "string"}, "roles": {"type": "string"}}, "required": ["prefix", "roles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"prefix" : "sysinfo", "roles" : ""} | json_instruct | {"type": "object", "properties": {"prefix": {"type": "string"}, "roles": {"type": "string"}}, "required": ["prefix", "roles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [1, 2, 4, 5] | json_instruct | {"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031106": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "stri... | {"type" : "Topology", "objects" : {"E01031106" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00158559", "LAD11CD" : "E07000219"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031106": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$... | {"code" : "TRSAT1", "lang" : "en", "description" : null, "name" : "Biofuels", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties"... | {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [1.312263, 52.094385]}, "properties" : {"name" : "7,9, THEATRE STREET", "start-date" : "1971-12-20", "listed-building" : "1031000", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1031000", "point" : "POINT (1.312263 ... | 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": {"name": {"type": "string"}, "start... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro... | {"userId" : 40789, "cartId" : "24688b01-b6a0-4f08-bd37-53b2282cb161", "preferredProducts" : [3670, 2623], "productReviews" : [{"productId" : 4162, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2019-04-18T19:44:17.8780664+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org... | {"examine" : "A shield made in the Elemental Workshop.", "bonuses" : [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 30, 0, 0, 0, 0, 0, 0, 0], "realPrice" : 7814} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "auth... | {"name" : "happy-crud", "version" : "0.0.5", "description" : "Happy Crud", "main" : "index.js", "scripts" : {"test" : "babel-node --presets stage-3 ./node_modules/.bin/_mocha tests"}, "author" : "Mohammad Anwari <mdamt@mdamt.net> (http://aksi.mdamt.net/)", "license" : "MIT", "devDependencies" : {"babel" : "^6.5.2", "ba... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDe... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {... | {"loss_data" : [2.7591552734375, 1.9589648246765137, 1.8323928117752075, 1.555020809173584, 1.2336394786834717, 0.9803222417831421, 0.7635008692741394, 0.6481443643569946, 0.5270059704780579, 0.4024350047111511, 0.3598270118236542, 0.338234543800354, 0.265807569026947, 0.22028501331806183, 0.1884813755750656, 0.1373661... | json_instruct | {"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {"type": "number"}}}, "required": ["loss_data", "train_accs", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"prepare_queue": {"type": "object", "properties": {"installed": {"type": "array", "items": {}}, "uninstalled": {"type": "array", "items": {}}}, "required": ["installed", "uninstalled"]}, "config_munge": {"type":... | {"prepare_queue" : {"installed" : [], "uninstalled" : []}, "config_munge" : {"files" : {}}, "installed_plugins" : {"cordova-plugin-whitelist" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-camera" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-screen-orientation" : {"PACKAGE_NAME" : "com.d... | json_instruct | {"type": "object", "properties": {"prepare_queue": {"type": "object", "properties": {"installed": {"type": "array", "items": {}}, "uninstalled": {"type": "array", "items": {}}}, "required": ["installed", "uninstalled"]}, "config_munge": {"type": "object", "properties": {"files": {"type": "object", "properties": {}, "re... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private":... | {"name" : "tennis-court", "version" : "1.0.0", "description" : "A robot will query available tennis courts", "main" : "index.js", "repository" : "https://github.com/RAIN-JIANGRAN/tennis-court.git", "author" : "rain", "license" : "MIT", "private" : false, "dependencies" : {"axios" : "^0.21.0", "form-data" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "p... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "i... | {"id" : 85905295, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "7bf4832b03155ac79b57c5c56868f10c", "wof:id" : 85905295, "wof:repo" : "whosonfirst-data-admin-se"}, "bbox" : [17.808322, 59.458075, 17.808322, 59.458075], "geometry" : {"coordina... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "st... | {"id" : 1061059, "name" : "CWE-502 - Deserialization of Untrusted Data", "href" : "CARL/technical-criteria/1061059", "description" : "The application deserializes untrusted data without sufficiently verifying that the resulting data will be valid.", "qualityRules" : {"name" : "Quality Rules in numeric ID order", "href"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "h... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "str... | {"files" : {"main.css" : "/static/css/main.3674d497.chunk.css", "main.js" : "/static/js/main.92fab6e9.chunk.js", "main.js.map" : "/static/js/main.92fab6e9.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.b22bc9f5.js", "runtime-main.js.map" : "/static/js/runtime-main.b22bc9f5.js.map", "static/css/2.68b64559.c... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.68b64559.chunk.css": {"type": "string"}, "static/... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "strategy": {"type": "object", "properties": {"name": {"type": "string"}, "params": {"type": "object", "properties": {"symbol": {"type": "string"}, "stax": {"type": "obj... | [{"name" : "stablexswap", "strategy" : {"name" : "stablexswap", "params" : {"symbol" : "SXSWAP", "stax" : {"address" : "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4", "decimals" : "18"}, "masterchef" : {"address" : "0xc80991f9106e26e43bf1c07c764829a85f294c71", "decimals" : "18"}, "stakingchef" : {"address" : "0x0c0c475e3... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "strategy": {"type": "object", "properties": {"name": {"type": "string"}, "params": {"type": "object", "properties": {"symbol": {"type": "string"}, "stax": {"type": "object", "properties": {"address": {"type": "string"}, "decimals"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [784.691, 406.847, 1, 764.678, 672.489, 1, 510.727, 710.829, 1, 315.346, 1117, 1, 2.41227, -1.83786, 0, 1036.56, 651.019, 1, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Please provide a valid JSON object following this 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" : "340304200201", "text" : "\u77f3\u5df7\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200202", "text" : "\u8bb8\u5e84\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200203", "text" : "\u738b\u5c97\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200204", "text" : "\u9ec4\u5c71\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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "wood_overhaul:block/mahogany_fence_gate"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object... | {"name" : "tslox", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {}, "devDependencies" : {"@tsconfig/node12" : "^1.0.9", "@types/node" : "^12.20.25", "prettier" : "2.4.1", "ts-node" : "^10.2.1", "typescript" : "^4.4.3"}, "scripts" : {"build" : "tsc", "test" : "echo \"Error: no test spec... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node12": {"type": "string"}, "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1975, 5], [1979, 7], [1985, 8], [1988, 9], [1991, 10], [1992, 7], [1993, 10], [1994, 12], [1995, 15], [1996, 18], [1997, 10], [1998, 8], [1999, 10], [2000, 8], [2001, 18], [2002, 12], [2003, 15], [2004, 9], [2005, 7], [2006, 17], [2007, 7], [2008, 11], [2009, 9], [2010, 7], [2011, 7], [2012, 6], [2013, 10], [2014, 8]... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [133.052, 140.595, 1, 143.555, 153.413, 1, 132.203, 153.937, 1, 124.063, 177.316, 1, 126.129, 191.755, 1, 158.641, 166.004, 1, 164.849, 172.413, 1, 186.155, 189.916, 1, 128.219, 202.067, 1, 127.297, 242.184, 1, 130.833, 288.938, 1, 143.773, 205.132, 1, 140.185, 247.8... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"G... | {"schema" : "1.0", "comment" : "This file maps proto services/RPCs to the corresponding library clients/methods", "language" : "ruby", "protoPackage" : "google.cloud.gkehub.v1alpha2", "libraryPackage" : "::Google::Cloud::GkeHub::V1alpha2", "services" : {"GkeHub" : {"clients" : {"grpc" : {"libraryClient" : "::Google::Cl... | json_instruct | {"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"GkeHub": {"type": "object", "properties": {"clients": {"type": "object",... |
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": {"t... | {"nom" : "Maupas", "circ" : "2\u00e8me circonscription", "dpt" : "Gers", "inscrits" : 136, "abs" : 58, "votants" : 78, "blancs" : 4, "nuls" : 3, "exp" : 71, "res" : [{"nuance" : "SOC", "nom" : "Mme Gis\u00e8le BI\u00c9MOURET", "voix" : 46}, {"nuance" : "REM", "nom" : "M. Christopher SOCCIO", "voix" : 25}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/... | {"name" : "freelunch_sade_3_cube", "package" : "freelunch", "strategy" : "freelunch_sade_3", "traceback" : "Black took 216 function evals when instructed to use 211"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "propertie... | {"contract" : "0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed", "tool" : "oyente", "start" : 1563282938.0305908, "end" : 1563282964.8070626, "duration" : 26.776471853256226, "analysis" : [{"errors" : [], "file" : "/unique_contracts/0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed.sol", "name" : "Owned", "evm_code_coverage" : "99... | 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": "strin... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-s... | {"viewBox" : "0 0 1024 1024", "font" : "file-icons", "code" : "ea6d", "ref" : "proselint", "path" : "M0 0h1024v1024H0V0m146 359v300q-1 70-10 82t-62 17v31h229v-32q-66-3-71.5-21t-7.5-77V298q0-18 3.5-21.5T263 273q68 0 97 39.5t26 90.5q-2 43-20.5 76T272 528q-8 2-8 13.5t9 14.5q84-1 142.5-40.5T473 398q-1-58-25-93-25-35-74.5-5... | json_instruct | {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": ... | {"routes" : [{"method" : "GET", "path" : "/mailing-lists", "handler" : "mailing-list.find", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/mailing-lists/count", "handler" : "mailing-list.count", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/mailing-lists/:id", "handler" : "mailing-list.find... | json_instruct | {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required... |
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": "number"}}}}}, "requ... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[152.25, 32.333333333333336], [152.25, 32.416666666666664], [152.375, 32.416666666666664], [152.375, 32.333333333333336], [152.25, 32.333333333333336]]]}, "properties" : {"code" : 485242, "url" : "http://madefor.github.io/0410/api/v1/485242.geojso... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200878802485000, "key" : "/static/122adc74118ec5572e7f2f089eaa9d60/1aeda/soar.webp", "val" : "bb8933c6d4acf5677a5eca2c9528bc9f"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "li... | {"private" : true, "name" : "@project/site-worker", "type" : "module", "version" : "1.0.0", "description" : "The worker that hosts the site", "main" : "index.js", "author" : "Mike Cann <mike.cann@gmail.com>", "license" : "MIT", "scripts" : {"deploy" : "wrangler publish"}, "dependencies" : {"@cloudflare/kv-asset-handler... | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"0": {"type": "object", "properties": {"shardId": {"type": "integer"}, "payload": {"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "integer"}, "op": {"type": "integer"}, "d": {"type": "objec... | {"0" : {"shardId" : 3, "payload" : {"t" : "VOICE_STATE_UPDATE", "s" : 1092, "op" : 0, "d" : {"member" : {"user" : {"username" : "XszeNjtf", "public_flags" : 128, "id" : "404537717470659319", "discriminator" : "4703", "avatar" : "eae5905ad2d18d7c8deca20478b088b5"}, "roles" : ["996085338236768111", "612414854725718368", ... | json_instruct | {"type": "object", "properties": {"0": {"type": "object", "properties": {"shardId": {"type": "integer"}, "payload": {"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "integer"}, "op": {"type": "integer"}, "d": {"type": "object", "properties": {"member": {"type": "object", "properties": {"user": {... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.ignoreWords" : ["compact", "create", "formulario", "formularios", "return", "view"]} | json_instruct | {"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [2.0, 7.0, 4.0, 5.0, 2.0, 1.0, 1.0, 1.0, 2.0, 2.0] | json_instruct | {"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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "package": {"type": "string"}},... | {"name" : "chat-redux", "version" : "1.0.0", "description" : "Basic chat with redux and react", "main" : "index.html", "scripts" : {"start" : "webpack-dev-server --progress --colors", "package" : "webpack"}, "keywords" : ["redux", "react", "js", "chat"], "author" : "jruchaud", "license" : "AGPL-3.0", "dependencies" : {... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "package": {"type": "string"}}, "required": ["start", "package"]}, "keywords": {"type": "a... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"state": {"type": "string"}, "countyFips": {"type": "string"}, "transactionType": {"type": "string"}, "policyType": {"type": "string"}, "primaryRateName": {"type": "string"}, "recordingDocuments": {"type": "array", "items": {"t... | {"state" : "string", "countyFips" : "string", "transactionType" : "string", "policyType" : "string", "primaryRateName" : "string", "recordingDocuments" : [{"documentType" : "string"}, {"documentType" : "string"}]} | json_instruct | {"type": "object", "properties": {"state": {"type": "string"}, "countyFips": {"type": "string"}, "transactionType": {"type": "string"}, "policyType": {"type": "string"}, "primaryRateName": {"type": "string"}, "recordingDocuments": {"type": "array", "items": {"type": "object", "properties": {"documentType": {"type": "st... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/supp... | {"name" : "o2one/knet-payment-gateway", "description" : "This package is provides an expressive, fluent interface to Knet's payment services.", "require" : {"php" : "^7.3", "illuminate/support" : "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0"}, "require-dev" : {"phpunit/phpunit" : "^9.3.9", "orchestra/testbench" : "^6.0.0"}, "lice... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpuni... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"typ... | {"id" : 64314, "info" : {"name" : "Doodle Icons Firefox", "description" : "Doodle Icons for Firefox", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2012-04-18T20:31:18.000Z", "updatedAt" : "2012-04-18T20:31:18.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 137864, "name" :... | 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": "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"... | {"nodes" : [{"name" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8\n300699.SZ", "value" : 3587200000.0, "itemStyle" : {"color" : "red"}, "category" : 0}, {"name" : "\u5a01\u6d77\u826f\u7f8e\u7cbe\u5bc6\u673a\u68b0\u6709\u9650\u516c\u53f8", "value" : 14.55, "itemStyle" : {"color"... | json_instruct | {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "category": {"type": "integer"}}, "required": ["name", "va... |
Create a JSON structure that matches this schema definition:
{"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"}}}}}, "r... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.75, 41.416666666666664], [145.75, 41.5], [145.875, 41.5], [145.875, 41.416666666666664], [145.75, 41.416666666666664]]]}, "properties" : {"code" : 624516, "url" : "http://madefor.github.io/0410/api/v1/624516.geojson", "view" : "https://github... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "in... | {"coord" : {"lon" : -91.53, "lat" : 41.66}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01n"}], "base" : "stations", "main" : {"temp" : -9, "feels_like" : -13.18, "temp_min" : -9, "temp_max" : -9, "pressure" : 1028, "humidity" : 85}, "visibility" : 10000, "wind" : {"speed" : 1.5, ... | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HI... | {"MRRm_new" : 0.25066180534466836, "MRm_new" : 371.2443008693933, "HITS@1m_new" : 0.1738154586109682, "HITS@3m_new" : 0.2699108659969643, "HITS@10m_new" : 0.408038946597185} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or... |
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... | {"name" : "parse-server-advanced-mailgun-adapter", "version" : "1.0.3", "description" : "An advanced mailgun adapter for parse sever with templating options.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/duffe... | 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": "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "event_class__name": {"type": "string"}, "preference": {"type": "integer"}, "patterns": {"type": "... | {"name" : "Cisco | IOS | Config | Config Synced #1 (SYSLOG)", "$collection" : "fm.eventclassificationrules", "uuid" : "f914a6d6-9ab5-4304-bd72-66ed2f66c13b", "description" : "%C4K_REDUNDANCY-5-CONFIGSYNC: The startup-config has been successfully synchronized to the standby supervisor", "event_class__name" : "Config | C... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "event_class__name": {"type": "string"}, "preference": {"type": "integer"}, "patterns": {"type": "array", "items": {"type": "object", "properties": {"key_re": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "string"}, "top": {"type": "string"}, "down": {"type": "string"}}, "required": ["particle", "side",... | {"parent" : "forgottenfruits:base/farmland_special", "textures" : {"particle" : "forgottenfruits:block/special/nether_farmland/nether_farmland_top", "side" : "forgottenfruits:block/special/nether_farmland/nether_farmland_side", "top" : "forgottenfruits:block/special/nether_farmland/nether_farmland_top", "down" : "forgo... | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "string"}, "top": {"type": "string"}, "down": {"type": "string"}}, "required": ["particle", "side", "top", "down"]}}, "required": ["parent", "textures"], "$schem... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-73.543471, 41.376258], [-73.542495, 41.38946], [-73.540251, 41.389517], [-73.530466, 41.392686], [-73.526131, 41.392484], [-73.520679, 41.390479], [-73.506048, 41.389376], [-73.491425, 41.385784], [-73.48539, 41.383508],... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": ... | {"name" : "ecommerce", "version" : "1.0.0", "description" : "Sample E-commerce website", "main" : "index.js", "license" : "MIT", "scripts" : {"deploy" : "gatsby build --prefix-paths && gh-pages -d public"}, "dependencies" : {"babel-plugin-styled-components" : "^1.12.0", "gatsby" : "^2.31.1", "gatsby-image" : "^2.10.0",... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "dependencies": {"type": "object... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2000, 5], [2001, 7], [2002, 7], [2006, 6], [2007, 6], [2010, 5], [2011, 5], [2013, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "o... | {"manifest_version" : 2, "name" : "YouFocus", "description" : "Blocks all Youtube videos without the education tag", "version" : "1.0", "permissions" : ["tabs", "webRequest", "webRequestBlocking", "*://*.youtube.com/*"], "browser_action" : {"default_icon" : "icon.png", "default_title" : "YouFocus"}, "background" : {"sc... | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "attributes": {"type": "object", "properties": {"NX_class": {"type": "string"}}, "requ... | {"children" : [{"type" : "group", "name" : "entry-01", "attributes" : {"NX_class" : "NXentry"}, "children" : [{"type" : "group", "name" : "axis_position", "children" : [{"module" : "f142", "config" : {"topic" : "Ymir_motion", "source" : "SES-SCAN:MC-MCU-001:m2.RBV"}}]}]}]} | json_instruct | {"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "attributes": {"type": "object", "properties": {"NX_class": {"type": "string"}}, "required": ["NX_class"]}, "children": {"type": "array", "items": {"type": "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type":... | {"name" : "Catholic University of Louvain", "alt_name" : "Universit\u00e9 catholique de Louvain (UCL)", "country" : "Belgium", "state" : "French Community", "address" : {"street" : "Place de l'Universit\u00e9, 1", "city" : "Louvain-la-Neuve", "province" : null, "postal_code" : "1348"}, "contact" : {"telephone" : "+32(1... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"... | {"web" : [{"value" : ["\u795e\u4f51", "\u6709\u798f", "\u5e78\u798f\u7684"], "key" : "Blessed"}, {"value" : ["\u795d\u798f\u4e4b\u9524", "\u795e\u5723\u4e4b\u69cc", "\u795d\u798f\u4e4b\u69cc"], "key" : "Blessed Hammer"}, {"value" : ["\u795d\u798f\u4e4b\u9524", "\u795d\u613f\u4e4b\u9524", "\u795d\u798f\u5f94\u9524"], "k... | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type"... | {"_id" : "55ee5e98a80ba0020d2518b0", "index" : 2679, "guid" : "605e19e0-8cb8-4df7-b759-0763d892db01", "isActive" : true, "balance" : "$65,370.17", "picture" : "http://placehold.it/32x32", "age" : 29, "eyeColor" : "gray", "name" : "Neva Reid", "gender" : "female", "company" : "EXOTERIC", "email" : "nevareid@exoteric.com... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/Users/redseanet/Documents/project/node_modules/react-native-gesture-handler/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", "source" : "/Users/redseanet/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/bb245290f5756e5b0aa9615131f... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type"... | {"resourceType" : "DataElement", "id" : "Person.link.assurance", "meta" : {"lastUpdated" : "2015-10-24T07:41:03.495+11:00"}, "url" : "http://hl7.org/fhir/DataElement/Person.link.assurance", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"path" : "Person.link.assurance", "shor... | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/... | {"variants" : {"" : {"model" : "thermal:block/slag_block"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"token_type": {"type": "string"}, "access_token": {"type": "string"}, "expires_in": {"type": "string"}}, "required": ["token_type", "access_token", "expires_in"], "$schema": "http://json-schema.org/draft-07/schema#... | {"token_type" : "bearer", "access_token" : "a_sample_access_token", "expires_in" : "expires_in"} | json_instruct | {"type": "object", "properties": {"token_type": {"type": "string"}, "access_token": {"type": "string"}, "expires_in": {"type": "string"}}, "required": ["token_type", "access_token", "expires_in"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": ... | {"nom" : "Boulaur", "dpt" : "Gers", "inscrits" : 143, "abs" : 15, "votants" : 128, "blancs" : 20, "nuls" : 5, "exp" : 103, "res" : [{"panneau" : "1", "voix" : 56}, {"panneau" : "2", "voix" : 47}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", ... | {"courseCode" : "CH5242R", "courseCredit" : "5", "description" : "This module examines one or two important historiographical works from traditional or contemporary China. Significant chapters of the texts will be selected for intensive reading and close analysis. Contemporary scholarship and sinological writings on th... | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": ... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Barangay 641, Manila, Metropolitan Manila, National Capital Region, PH", "locale" : "ph.national-capital-region.metropolitan-manila.manila.barangay-641", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "re... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"ty... | {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040533"], "\uc81c\uc548\uc77c\uc790" : [""], "\uc81c\uc548\uc790" : ["\uc5c4\uc0c1\uc12d\uc758\uc6d0\uc67812\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c29\ud68c"]}, "\ubcf8... | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "requi... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "3601282001", "id_kecamatan" : "360128", "name" : "Banjarmasin"}, {"id" : "3601282002", "id_kecamatan" : "360128", "name" : "Carita"}, {"id" : "3601282003", "id_kecamatan" : "360128", "name" : "Sukarame"}, {"id" : "3601282004", "id_kecamatan... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "... | {"name" : "frontend", "version" : "0.1.0", "private" : true, "scripts" : {"serve" : "vue-cli-service serve", "build" : "vue-cli-service build", "lint" : "vue-cli-service lint"}, "dependencies" : {"ant-design-vue" : "^1.1.6", "axios" : "^0.18.0", "babel-eslint" : "^10.0.1", "cpf-check" : "^2.0.4", "eslint" : "^5.7.0", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["serve", "build", "lint"]}, "dependencies": {"type... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "district... | {"id" : "1005", "provinceId" : "33", "regencyId" : "07", "districtId" : "11", "name" : "Andongsili"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type"... | {"id" : "18122975", "tms:id" : "10095", "accession_number" : "1901-39-3366", "title" : "Drawing, \"Two Circular and Octagonal Painting for Ceiling: Deeds of Alexander the Great\", ca. 1795", "url" : "http://collection.cooperhewitt.org/objects/18122975/", "department_id" : "35347493", "period_id" : "35417089", "media_id... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "string"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "prop... | {"hash" : "0x4fc27b779f4ea1fe934bbf8062f4f93fe10369865de55a8cc19ed2e62cf961f3", "parentHash" : "0x9badac0aa87171bc460548688492f99547cca3ea948961e6590014ece66ec10d", "number" : 50097, "timestamp" : 1438983875, "nonce" : "0xf70fb7d5ee73d76e", "difficulty" : 1509751226147, "gasLimit" : {"_hex" : "0x4fc32"}, "gasUsed" : {"... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Generate sample JSON data that conforms to the following 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... | {"hash" : "0xfaff92b9f35f7520ed3d9c4e72dd0af2a48ee3ad9b4219b6e0202ac657c8bcdb", "parentHash" : "0xb8c700b132c1ebe917c8ceef36e313a40012b5d096d28c10a807dfff4a37e29b", "number" : 75807, "timestamp" : 1439409603, "nonce" : "0x631209a0e4d1a645", "difficulty" : 2224439660696, "gasLimit" : {"_hex" : "0x2fefd5"}, "gasUsed" : {... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "id_v1": {"type": "string"}, "owner": {"type":... | {"errors" : [], "data" : [{"enabled" : true, "id" : "84d4f11f-9ac3-4090-84dd-da8c98324faa", "id_v1" : "idv1/66", "owner" : {"rid" : "754acb08-1e9f-4946-aa4a-ee7b604c7354", "rtype" : "device"}, "temperature" : {"temperature" : 21.940000534057617, "temperature_valid" : true}, "type" : "temperature"}, {"enabled" : true, "... | json_instruct | {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "id_v1": {"type": "string"}, "owner": {"type": "object", "properties": {"rid": {"type": "string"}, "rtype": {"type": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "prop... | {"builtin" : {"__set__" : true, "elements" : ["__future__", "__main__", "argparse", "bisect", "code", "collections", "csv", "datetime", "distutils", "doctest", "fcntl", "filecmp", "glob", "importlib", "inspect", "io", "itertools", "logging", "os", "pdb", "pickle", "pprint", "re", "shlex", "shutil", "socket", "sys", "te... | json_instruct | {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}},... | {"name" : "aes-example", "version" : "1.0.0", "description" : "this is an example of using node's crypto module to perform an aes encryption + decryption", "main" : "index.js", "scripts" : {"start" : "node .", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["crypto", "aes"], "author" : "wilson", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array",... |
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": {"goweb": {"type": "string"}}, "required": ["goweb"]}, "keywords": {"type": "array", "items":... | {"name" : "goweb", "version" : "1.0.1", "description" : "Run static file server goweb", "bin" : {"goweb" : "./bin/gogo"}, "keywords" : ["Static", "file", "server", "Assets"], "author" : "Gavin Xu", "license" : "MIT", "dependencies" : {"connect" : "^3.6.6", "connect-history-api-fallback" : "^1.2.0", "debug" : "^2.2.0", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"goweb": {"type": "string"}}, "required": ["goweb"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "licens... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {... | {"name" : "@workhard/react-components", "description" : "Component library", "version" : "0.1.3", "main" : "dist/index", "types" : "dist/index", "license" : "GPL-3.0", "scripts" : {"build" : "yarn run clean && yarn run compile", "clean" : "rimraf -rf ./dist", "compile" : "tsc -p tsconfig.build.json", "prepublishOnly" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}, "... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.