input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "abandoned": {"type": "boolean"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"... | {"name" : "phrozenbyte/pico-excerpt", "type" : "pico-plugin", "abandoned" : true, "description" : "This is Pico's official PicoExcerpt plugin. Pico is a stupidly simple, blazing fast, flat file CMS.", "keywords" : ["pico", "picocms", "picocms-plugin", "pico-excerpt", "excerpts"], "homepage" : "http://picocms.org/", "li... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "abandoned": {"type": "boolean"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": ... |
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" : [[[146.75, 45.5], [146.75, 45.583333333333336], [146.875, 45.583333333333336], [146.875, 45.5], [146.75, 45.5]]]}, "properties" : {"code" : 684626, "url" : "http://madefor.github.io/0410/api/v1/684626.geojson", "view" : "https://github.com/madefor/0... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type... | [{"id" : 1842, "gempId" : "6_29", "side" : "Light", "rarity" : "R", "set" : "6", "printings" : [{"set" : "6"}], "front" : {"title" : "\u2022Oola", "imageUrl" : "https://res.starwarsccg.org/cards/JabbasPalace-Light/large/oola.gif", "type" : "Character", "subType" : "Alien", "uniqueness" : "*", "destiny" : "3", "power" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["s... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]... | {"name" : "integrity-generator", "version" : "0.0.1", "description" : "integrityGenerator", "main" : "mygen.js", "author" : {"name" : "Sharkbyteprojects"}, "dependencies" : {"commander" : "^7.0.0", "shark-netlib" : "^1.2.4"}, "bin" : {"integrity-generator" : "./app.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "dependencies": {"type": "object", "properties": {"commander": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"score": {"type": "number"}}, "required": ["score"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"score" : 0.8411533420707733} | json_instruct | {"type": "object", "properties": {"score": {"type": "number"}}, "required": ["score"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": ... | {"status" : 3, "startTimes" : [22, 195, 8, 15, 177, 44, 153, 39, 108, 120, 59, 75, 90, 95, 132], "objectiveValue" : 632.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragm... | {"name" : "NavigatorFonts", "defined" : {"spec" : {"title" : "Local Font Access API", "url" : "https://wicg.github.io/local-font-access/"}, "fragment" : "[SecureContext]\ninterface mixin NavigatorFonts {\n [SameObject] readonly attribute FontManager fonts;\n};", "href" : "https://wicg.github.io/local-font-access/#navi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragment": {"type": "string"}, "href": {"type": "string"}}, "required": ["spec", "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "viverrine", "definition" : "Of or pertaining to the Viverrid\u00e6, or Civet family."} | 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": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type... | {"versionEnd" : {"versionNum" : 3310, "commit" : "d37ff9dc091052e94691e3756e39d8fea229a9c6", "date" : "2021-08-20T06:53:19.901Z"}, "versionStart" : {"versionNum" : 3309, "commit" : "9f10b284e104cbc1b2f9d5f35dd2a5ec6211e612", "date" : "2021-08-20T06:51:57.914Z"}, "changes" : ["blockchains/smartchain/allowlist.json"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"typ... | {"description" : "Lists available operations for the Microsoft.BatchAI provider.", "input_method" : "stdin", "parameters" : {"api_version" : {"description" : "Specifies the version of API used for this request.", "type" : "Optional[String[1]]"}, "display" : {"description" : "The object that describes the operation.", "... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "input_method": {"type": "string"}, "parameters": {"type": "object", "properties": {"api_version": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "display": {"typ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "title... | {"componentChunkName" : "component---src-templates-recipe-js", "path" : "/recipe/E", "result" : {"pageContext" : {"isCreatedByStatefulCreatePages" : false, "title" : "Eggplant Omelet with Coriander And Caraway"}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "title": {"type": "string"}}, "required": ["isCreatedByStatefulCreat... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "request": {"type": "string"}, "program": {"type": "string"}, "... | {"version" : "0.2.0", "configurations" : [{"name" : "Inference configuration", "type" : "python", "request" : "launch", "program" : "${file}", "console" : "integratedTerminal", "args" : ["--save-dir", "output/", "1_2.jpg", "server_output/model.ckpt-0", "--num-classes", "3"]}, {"name" : "Train configuration", "type" : "... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "request": {"type": "string"}, "program": {"type": "string"}, "console": {"type": "string"}, "args": {"type": "array", "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "sourceMap": {"type": "boolean"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "sourceRoo... | {"compilerOptions" : {"module" : "commonjs", "target" : "es6", "sourceMap" : true, "declaration" : false, "rootDir" : "./src", "sourceRoot" : "./src", "outDir" : "./dist", "pretty" : true, "typeRoots" : ["./node_modules/@types", "./neo4j"], "lib" : ["es2015", "es2017"]}, "exclude" : [".idea", "_builds", "_cache", "_ste... | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "sourceMap": {"type": "boolean"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "sourceRoot": {"type": "string"}, "outDir": {"type": "string"}, "pretty"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Transcription": {"type": "string"}, "Search in this event": {"type": "string"}, "Search relevance:": {"type": "string"}, "Results for '{0}' (no actual results for '{1}' found)": {"type": "string"}, "Results for '{0}'": {"type"... | {"Transcription" : "Transkription", "Search in this event" : "Suche in diesem Event", "Search relevance:" : "Suchrelevanz:", "Results for '{0}' (no actual results for '{1}' found)" : "Ergebnisse f\u00fcr \"{0}\" (keine tats\u00e4chlichen Ergebnisse f\u00fcr \"{1}\" gefunden)", "Results for '{0}'" : "Ergebnisse f\u00fcr... | json_instruct | {"type": "object", "properties": {"Transcription": {"type": "string"}, "Search in this event": {"type": "string"}, "Search relevance:": {"type": "string"}, "Results for '{0}' (no actual results for '{1}' found)": {"type": "string"}, "Results for '{0}'": {"type": "string"}}, "required": ["Transcription", "Search in this... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"ghpages": {"type": "... | {"name" : "@mattdesl/ghpages", "version" : "1.2.0", "description" : "quick script which deploys to gh-pages branch", "main" : "index.js", "license" : "MIT", "bin" : {"ghpages" : "./ghpages.sh", "ghpages-ignores" : "./ignores.js"}, "author" : {"name" : "Matt DesLauriers", "email" : "dave.des@gmail.com", "url" : "https:/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"ghpages": {"type": "string"}, "ghpages-ignores": {"type": "string"}}, "required": ["ghpages... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"devdoc": {"type": "array", "items": {"type": "string"}}, "out": {"type": "array", "items": {"type": "string"}}}, "required": ["devdoc", "out"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devdoc" : ["/share/man/man3/ExtUtils::XSBuilder.3.gz", "/share/man/man3/ExtUtils::XSBuilder::C::grammar.3.gz", "/share/man/man3/ExtUtils::XSBuilder::PODTemplate.3.gz", "/share/man/man3/ExtUtils::XSBuilder::ParseSource.3.gz", "/share/man/man3/ExtUtils::XSBuilder::WrapXS.3.gz", "/share/man/man3/ExtUtils::xsbuilder.osc2... | json_instruct | {"type": "object", "properties": {"devdoc": {"type": "array", "items": {"type": "string"}}, "out": {"type": "array", "items": {"type": "string"}}}, "required": ["devdoc", "out"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "string"}}, "CheckChangeLog": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["steps", "CheckChangeLog... | {"steps" : ["FindVersion", "ChangeVersion", "CheckChangeLog", "Commit", "Tag", "Publish"], "CheckChangeLog" : {"files" : ["History.md"]}} | json_instruct | {"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "string"}}, "CheckChangeLog": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["steps", "CheckChangeLog"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"data": {"type": "array", "items": {}}, "links": {"type": "object", "properties": {"last": {"type": "string"}}, "required": ["last"]}, "meta": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]... | {"data" : [], "links" : {"last" : "/api/v3/recruitment_cycles/2020/courses?filter%5Bfunding%5D=salary&filter%5Bhas_vacancies%5D=true&filter%5Blatitude%5D=51.4600848&filter%5Blongitude%5D=-0.1201408&filter%5Bradius%5D=5&filter%5Bsend_courses%5D=true&filter%5Bsubjects%5D=W1&include=site_statuses.site%2Cprovider%2Csubject... | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {}}, "links": {"type": "object", "properties": {"last": {"type": "string"}}, "required": ["last"]}, "meta": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "jsonapi": {"type": "object", "properties": {"version"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list"... | {"user" : "Edouard DUPIN", "value" : "]", "type" : "hand", "time" : 1470868430298451712, "data" : [{"type" : "type::finger", "list" : [[296.392242, 399.637695], [305.550079, 398.371216], [310.909943, 398.30072], [317.655823, 398.253601], [326.986237, 397.877319], [337.355957, 397.322327], [347.545288, 396.929749], [357... | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "value": {"type": "string"}, "type": {"type": "string"}, "time": {"type": "integer"}, "data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "list": {"type": "array", "items": {"type": "array", "items": {"type": "num... |
Based on the schema below, produce a valid JSON object:
{"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"}, "c... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Pulong Gubat, Balagtas, Bulacan, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.bulacan.balagtas.pulong-gubat", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", ... | 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": {... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "coati", "definition" : "A mammal of tropical America of the genus Nasua, allied to the raccoon, but with a longer body, tail, and nose. Note: The red coati (N. socialis), called also coati mondi, inhabits Mexico and Central America. The brown coati (N. narica) is found in Surinam and Brazil."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "state": {"... | {"name" : "Volksschule Altenstadt", "id" : "BY-8741", "address" : "Schulplatz 1 89281 Altenstadt", "school_type" : "Grundschule", "fax" : "08337 7361", "phone" : "08337 7360", "website" : null, "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 10.115462, "lat" : 48.161822} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "null"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"progr... |
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": {"docker:build": {"type": "string"}, "docker:... | {"name" : "static", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"docker:build" : "docker build . -t thejimmyg/npm-serve:0.1.0", "docker:push" : "docker push thejimmyg/npm-serve:0.1.0", "docker:run" : "docker run --init -p 80:80 -v \"`pwd`/public:/app/public\" thejimmyg/npm-serve:0.1.0", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docker:build": {"type": "string"}, "docker:push": {"type": "string"}, "docker:run": {"type": "string"}, "start": {"typ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": ... | {"IsRecentlyVerified" : false, "ID" : 65853, "UUID" : "91156E1E-F009-4B65-82E5-3125BB7CD280", "DataProviderID" : 1, "OperatorID" : 32, "OperatorsReference" : "106553", "UsageTypeID" : 6, "UsageCost" : "Inclusive; for Polar Plus subscription members only", "AddressInfo" : {"ID" : 66199, "Title" : "Novotel London Excel",... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "Ad... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "tit... | {"body" : "### Steps to reproduce the issue\r\n\r\nhip@4.1.0 generates a lib name with a dash in the end because cmake can't infer the version number from a tarbal (it assumes git). This can lead to linker errors.\r\n\r\nThere's already a patch for it but it might have to be rebased.\r\n\r\n```\r\npath/to/hip/lib $ ls\... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "in... | {"lastUpdated" : 1655019279666, "username" : "vori", "scores" : [{"xp" : 5108, "rank" : 339, "cardId" : 153}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jon", "id" : "1234"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"], "$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#"}
| [["340828100000", "\u5929\u5802\u9547", "4", "1"], ["340828101000", "\u5e97\u524d\u9547", "4", "1"], ["340828102000", "\u6765\u699c\u9547", "4", "1"], ["340828103000", "\u83d6\u84b2\u9547", "4", "1"], ["340828104000", "\u5934\u9640\u9547", "4", "1"], ["340828105000", "\u767d\u5e3d\u9547", "4", "1"], ["340828106000", "\... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "institution": {"type": "string"}, "repository": {"type": "string"}, "webs... | {"name" : "Tabular to Feather", "version" : "0.1.2", "title" : "Tabular to Feather", "description" : "WIPP plugin to converts Tabular Data to Feather file format.", "author" : "Kelechi Nina Mezu (nina.mezu@nih.gov)", "institution" : "National Center for Advancing Translational Sciences, National Institutes of Health", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "institution": {"type": "string"}, "repository": {"type": "string"}, "website": {"type": "string"}, "citation": {"type": "string"}, "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["algolia"]} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "country": {"type": "string"}, "id": {"type": "integer"}, ... | {"city" : {"coord" : {"lat" : 37.3855, "lon" : -122.088}, "country" : "US", "id" : 0, "name" : "Mountain View"}, "cod" : "200", "list" : [{"dt" : 1576108800, "humidity" : 76.85, "pressure" : 1019.38, "temp" : {"average" : 282.94, "average_max" : 288.46, "average_min" : 280.05, "record_max" : 292.32, "record_min" : 272.... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "country": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["coord", "country... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}, "nano_account": {"type": "string"}, "sponsor_link": {"type": "string"}, "avatar": {"type": "string"}, "description": {"type":... | {"name" : "Jayycox", "github" : "", "twitter" : "jamescoxon", "nano_account" : "nano_1xmy3ydxz8j35i4m9cmoo9yhjotj9bcicc61dfeaa67o58pnt4s95eaimb1b", "sponsor_link" : "", "avatar" : "https://secure.gravatar.com/avatar/cad0520d4506adea0cc8950b73902735?d=identicon", "description" : "[Personal Git](https://wvsensornet.xyz/g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}, "nano_account": {"type": "string"}, "sponsor_link": {"type": "string"}, "avatar": {"type": "string"}, "description": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "re... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "... | {"collections" : [{"fullName" : "KaVE.Commons.Model.SSTs.Impl.Declarations.MethodDeclaration", "methods" : [{"name" : "KaVE.Commons.Model.SSTs.Impl.Declarations.MethodDeclaration()", "type" : "CTOR", "count" : 134}, {"name" : "KaVE.Commons.Model.SSTs.Impl.Declarations.MethodDeclaration.Body", "type" : "PROP", "count" :... | json_instruct | {"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name"... |
Construct a JSON document that adheres to this schema specification:
{"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" : "1114050017", "district_id" : "1114050", "name" : "TANGSI LAMA"} | 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": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, ... | {"body" : "Fitzsimmons, Rob wrote:\n\n\n>Used Sketchup and 3ds2rad\n> \n>\nHey, anyone know where I can get that 3ds2rad script? I know it's posted \nsomewhere, but I can't seem to find it anywhere.\n\n\nAlso, I'm assuming this script uses the 3ds2mgf -> mgf2rad thing, right? Just wondering because I've had some troub... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"region": {"type": "object", "properties": {"TZ-01": {"type": "string"}, "TZ-02": {"type": "string"}, "TZ-03": {"type": "string"}, "TZ-04": {"type": "string"}, "TZ-05": {"type": "string"}, "TZ-06": {"type": "string"},... | {"region" : {"TZ-01" : "Arusha", "TZ-02" : "Dar es Salaam", "TZ-03" : "Dodoma", "TZ-04" : "Iringa", "TZ-05" : "Kagera", "TZ-06" : "Kaskazini Pemba", "TZ-07" : "Kaskazini Unguja", "TZ-08" : "Kigoma", "TZ-09" : "Kilimanjaro", "TZ-10" : "Kusini Pemba", "TZ-11" : "Kusini Unguja", "TZ-12" : "Lindi", "TZ-26" : "Manyara", "TZ... | json_instruct | {"type": "object", "properties": {"region": {"type": "object", "properties": {"TZ-01": {"type": "string"}, "TZ-02": {"type": "string"}, "TZ-03": {"type": "string"}, "TZ-04": {"type": "string"}, "TZ-05": {"type": "string"}, "TZ-06": {"type": "string"}, "TZ-07": {"type": "string"}, "TZ-08": {"type": "string"}, "TZ-09": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"algoliasearch-lite.esm.browser.js": {"type": "string"}, "algoliasearch-lite.esm.browser.min.js": {"type": "string"}, "algoliasearch-lite.umd.js": {"type": "string"}, "algoliasearch-lite.umd.min.js": {"type": "string"... | {"algoliasearch-lite.esm.browser.js" : "sha512-6Y5PqjXtUe/gLFXLqRez5fx02TRM7XmpODTi4oDrw395GCV4eAvInmD9zMk4QlnXHc42wcVgLmINESYIVlnkcA==", "algoliasearch-lite.esm.browser.min.js" : "sha512-wxKQG572oujk91YNF7qBck38VtBW1MQIk2DtcoVZ0h8QkOutAQhNQKu/w9oJCdZNNdhl2SvYSfpfFuNp3/AItg==", "algoliasearch-lite.umd.js" : "sha512-XwX... | json_instruct | {"type": "object", "properties": {"algoliasearch-lite.esm.browser.js": {"type": "string"}, "algoliasearch-lite.esm.browser.min.js": {"type": "string"}, "algoliasearch-lite.umd.js": {"type": "string"}, "algoliasearch-lite.umd.min.js": {"type": "string"}, "algoliasearch.cjs.js": {"type": "string"}, "algoliasearch.cjs.min... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"access_token": {"type": "string"}, "expires_in": {"type": "integer"}, "scope": {"type": "null"}, "user_id": {"type": "string"}, "is_admin": {"type": "boolean"}, "refresh_token": {"type": "string"}, "server_time": {"type": "int... | {"access_token" : "kjaskdjhasdkjhasdkjh12k3j412k3j", "expires_in" : 29030400, "scope" : null, "user_id" : "19823123", "is_admin" : false, "refresh_token" : "akjshdakjsdhaskjh123k12k3jh", "server_time" : 1487158505, "token_type" : "Bearer"} | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "expires_in": {"type": "integer"}, "scope": {"type": "null"}, "user_id": {"type": "string"}, "is_admin": {"type": "boolean"}, "refresh_token": {"type": "string"}, "server_time": {"type": "integer"}, "token_type": {"type": "string"}}, "required": ["ac... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"handle": {"type": "string"}, "id": {"type": "string"}, "resource_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["handle", "id", "resource_type", "url"]}, "$schema": ... | [{"handle" : "gb1-a", "id" : "zon-6mxqw", "resource_type" : "zone", "url" : "https://api.gb1.brightbox.com/1.0/zones/zon-6mxqw"}, {"handle" : "gb1-b", "id" : "zon-remk1", "resource_type" : "zone", "url" : "https://api.gb1.brightbox.com/1.0/zones/zon-remk1"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"handle": {"type": "string"}, "id": {"type": "string"}, "resource_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["handle", "id", "resource_type", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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"]... | [{"manufacturer" : "Ulefone", "market_name" : "Armor 7", "codename" : "Armor_7_Q", "model" : "Armor 7"}] | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "array", "items": {}}, "dependencies": {"type": "array", "items": {}}, "publisher":... | {"name" : "socSimulator", "version" : "1.0.0", "label" : "SOC Simulator", "description" : "SOC Simulator Solution Pack", "category" : [], "dependencies" : [], "publisher" : "Fortinet", "certified" : "true", "type" : "multiContent", "supportInfo" : "support@fortinet.com", "help" : "https://github.com/fortinet-fortisoar/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "array", "items": {}}, "dependencies": {"type": "array", "items": {}}, "publisher": {"type": "string"}, "certified": {"type": "string"}, "type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}... | {"status" : 200, "data" : {"totalSubs" : 60, "subsInEachSource" : {"feedly" : 29, "inoreader" : 29, "feedsPub" : 2}, "failedSources" : {}}, "lastModified" : 1614997244620} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "in... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, ... | {"lastUpdated" : 1655019279666, "username" : "jeff3245", "scores" : [{"xp" : 37286, "rank" : 460, "cardId" : 115}, {"xp" : 32108, "rank" : 324, "cardId" : 478}, {"xp" : 31731, "rank" : 91, "cardId" : 477}, {"xp" : 28928, "rank" : 365, "cardId" : 473}, {"xp" : 28918, "rank" : 321, "cardId" : 103}, {"xp" : 28848, "rank" ... | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "chineseworkshop:block/red_stained_wooden_planks"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-binhf"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"},... | {"name" : "greendoors-app", "version" : "0.0.0", "main" : "index.html", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "~2.1.0", "fastclick" : "0.6.9", "handlebars" : "1.3.0", "requirejs" : "~2.1.10", "requirejs-plugins" : "~1.0.2", "iscroll" : "4.2.5", "undersco... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "fastclick": {"type": "string"}, "handlebars": {"type": "stri... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"rpcProvider": {"type": "string"}, "organization": {"type": "object", "properties": {"messengerKey": {"type": "string"}, "name": {"type": "string"}, "role": {"type": "integer"}, "zkpPublicKey": {"type": "string"}, ... | {"rpcProvider" : "http://ganache:8545", "organization" : {"messengerKey" : "0x04f2c416b5766182631d0170c71b619130ae550ebb9ebd9196864090f877205b8b754d7cb2155f85a740a2f917578aec1794330840b808e2708fd996f8615cd269", "name" : "Org1", "role" : 1, "zkpPublicKey" : "0x21864a8a3f24dad163d716f77823dd849043481c7ae683a592a02080e20c... | json_instruct | {"type": "object", "properties": {"rpcProvider": {"type": "string"}, "organization": {"type": "object", "properties": {"messengerKey": {"type": "string"}, "name": {"type": "string"}, "role": {"type": "integer"}, "zkpPublicKey": {"type": "string"}, "zkpPrivateKey": {"type": "string"}}, "required": ["messengerKey", "name... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "obj... | {"nome" : "Roiate", "codice" : "058090", "zona" : {"codice" : "3", "nome" : "Centro"}, "regione" : {"codice" : "12", "nome" : "Lazio"}, "provincia" : {"codice" : "058", "nome" : "Roma"}, "sigla" : "RM", "codiceCatastale" : "H494", "cap" : ["00030"], "popolazione" : 749} | json_instruct | {"type": "object", "properties": {"nome": {"type": "string"}, "codice": {"type": "string"}, "zona": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "string"}}, "required": ["codice", "nome"]}, "regione": {"type": "object", "properties": {"codice": {"type": "string"}, "nome": {"type": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"1044": {"type": "string"}, "1045": {"type": "string"}, "1050": {"type": "string"}}, "required": ["1044", "1045", "1050"]}}, "required": ["id", "... | {"id" : "15642303", "lines" : {"1044" : "CommonObjectDataSubRecord cmo = (CommonObjectDataSubRecord)sub;\n", "1045" : "if (cmo.getObjectType() == CommonObjectDataSubRecord.OBJECT_TYPE_COMMENT){\n", "1050" : " txshapes.put(new Integer(cmo.getObjectId()), rec);\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"1044": {"type": "string"}, "1045": {"type": "string"}, "1050": {"type": "string"}}, "required": ["1044", "1045", "1050"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "c7cacfe0dbe0257ad86764c2cd3f1a6f9a8c0cfe"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "arra... | {"source" : "http://www.spanishdict.com/conjugate/apoderar", "word" : "apoderar", "infinitivo" : "apoderar", "translation" : "to empower", "gerundio" : ["apoderando"], "participio" : ["apoderado"], "tenses" : {"3" : [["apodero"], ["apoderas"], ["apodera"], ["apoderamos"], ["apoder\u00e1is"], ["apoderan"]], "4" : [["apo... | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "propert... |
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#"}
| [[1924, 7], [1929, 5], [1931, 6], [1933, 5], [1936, 5], [1938, 10], [1939, 6], [1940, 5], [1941, 8], [1957, 5], [1994, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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": {"dev": {"type": "string"}, "test": {"type": "string"}}, "... | {"name" : "tiny-mocker", "version" : "1.0.0", "description" : "tiny-mocker mock simple json response without any config", "main" : "index.js", "scripts" : {"dev" : "nodemon index.js", "test" : "nodemon index.js -m test/mock -p 4000"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ForeverSc/tiny-mocker... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "test"]}, "repository": {"type": "object", ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=d1487797ab56c32409ba", "/css/app.css" : "/css/app.css?id=f41167d8fa0a0a0eb9ac"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chai... | {"name" : "Token DoWN", "symbol" : "DoWNh", "decimals" : 6, "address" : "DoWNhWZakUgp2qLFRCG6GRSMT35w9cgAXp62TkDy7Zxr", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": ... | {"player_id" : 3156, "name" : "Chandler Burden", "position" : "G", "height" : "6-4", "weight" : "313", "current_team" : null, "birth_date" : "1989-11-17", "birth_place" : null, "death_date" : null, "college" : "Kentucky", "high_school" : null, "draft_team" : null, "draft_round" : null, "draft_position" : null, "draft_y... | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "null"}, "death_date": {"type": "null"},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int... | {"nom" : "B\u00e9duer", "dpt" : "Lot", "inscrits" : 614, "abs" : 132, "votants" : 482, "blancs" : 61, "nuls" : 27, "exp" : 394, "res" : [{"panneau" : "1", "voix" : 278}, {"panneau" : "2", "voix" : 116}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.874398, 40.567849], [-76.788408, 40.5908], [-76.787435, 40.585931], [-76.782752, 40.586452], [-76.782416, 40.58203], [-76.784397, 40.580191], [-76.784085, 40.578218], [-76.769873, 40.581268], [-76.757083, 40.58304], [... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}, "exec": {"type": "string"}}, "required": ["watch", "ext", "exec"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"watch" : ["src/environments/mock-environment.ts"], "ext" : "ts", "exec" : "ts-node --project ./tsconfig.ts-node.json scripts/set-mock-env.ts"} | json_instruct | {"type": "object", "properties": {"watch": {"type": "array", "items": {"type": "string"}}, "ext": {"type": "string"}, "exec": {"type": "string"}}, "required": ["watch", "ext", "exec"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_na... | {"station_g" : [{"pref_cd" : 7, "line_cd" : 99216, "line_name" : "\u4f1a\u6d25\u9244\u9053\u4f1a\u6d25\u7dda", "station_cd" : 9921621, "station_name" : "\u4f1a\u6d25\u9ad8\u539f\u5c3e\u702c\u53e3"}, {"pref_cd" : 7, "line_cd" : 99341, "line_name" : "\u307b\u3063\u3068\u30b9\u30d1\u30fb\u30e9\u30a4\u30f3", "station_cd" :... | json_instruct | {"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_na... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"extension-create": {"type": "string"}}, "required": ["extens... | {"name" : "extension-create", "version" : "0.5.2", "description" : "Create modern cross-browser extensions with no build configuration.", "main" : "./cli.js", "bin" : {"extension-create" : "./cli.js"}, "scripts" : {"extension-create" : "cross-env NODE_ENV=development node --trace-warnings cli.js", "lint" : "prettier --... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"extension-create": {"type": "string"}}, "required": ["extension-create"]}, "scripts": {"type": "object", "properties": {"e... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/p... | {"cam/image_array" : "5645_cam-image_array_.jpg", "user/angle" : 0.736, "user/throttle" : 0.588, "user/mode" : "user", "pos/pos_x" : 54.68329, "pos/pos_y" : 0.5527937, "pos/pos_z" : 77.73844, "pos/speed" : 11.59917, "pos/cte" : 0.2486154, "milliseconds" : 299928} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "conve... | [{"name" : "jul-886_1", "size" : 1072065479, "link" : "https://streamtape.com/e/Pvple0WDbkSW4a", "created_at" : "2022\u5e7403\u670809\u65e5 10:21:45", "downloads" : 0, "linkid" : "Pvple0WDbkSW4a", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "htt... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":... |
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"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"type": "... | {"name" : "hungarian-postal-codes", "version" : "1.0.1", "description" : "Finds hunagrian cities, villages by postal code.", "main" : "lib/index.js", "types" : "lib/index.d.ts", "scripts" : {"prepare" : "yarn build", "prepublishOnly" : "yarn test", "version" : "git add -A src", "postversion" : "git push && git push --t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "prepublishOnly": {"type": "string"}, "version": {"type": "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language... | {"citations" : [{"textCitation" : "[See flddivrng on Metamath](http://us.metamath.org/mpegif/flddivrng.html)"}], "names" : ["flddivrng"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cK", "#T_wcel", "#T_cfld", "#T_wi", "#T_cK", "#T_wcel", "#T_cdrng"], "metaLanguage" : "METAMATH", "remarks" : " A field is a divi... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "proper... | {"result" : {"item" : "rftoolsdim:liquid_absorber"}, "pattern" : ["bwb", "wMw", "bwb"], "type" : "minecraft:crafting_shaped", "key" : {"b" : {"item" : "minecraft:bucket"}, "w" : {"item" : "minecraft:wool", "data" : 0}, "M" : {"item" : "rftools:machine_frame"}}} | json_instruct | {"type": "object", "properties": {"result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "pattern": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "key": {"type": "object", "properties": {"b": {"type": "object", "properties": {"item": {"type": "strin... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"... | {"version" : "20211104", "description" : "OpenCore Auxiliary Tools OpenCore Configurator OCAT", "homepage" : "https://github.com/ic005k/QtOpenCoreConfig", "license" : "Public Domain", "url" : "https://github.com/ic005k/QtOpenCoreConfig/releases/download/20211104/OCAT-Win64.zip", "hash" : "b20b3e9fc51330641f26fd04ee6e6f... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts":... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"login": {"type": "string"}}, "required": ["login"]}, "pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"... | {"usingComponents" : {"login" : "/components/login/login"}, "pages" : ["pages/index/index", "pages/add/add", "pages/billChart/billChart", "pages/user/user", "pages/achieve/achieve", "pages/sdAdd/sdAdd", "pages/manage/manage", "pages/about/about", "pages/icon/icon", "pages/team/team", "pages/teamDetail/teamDetail", "pag... | json_instruct | {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"login": {"type": "string"}}, "required": ["login"]}, "pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"t... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, ... | {"author" : {"id" : "t2_8y02upik", "name" : "Otherwhereterrain"}, "date" : {"day" : 1638662400, "full" : 1638667441, "month" : 1638316800, "week" : 1638662400}, "id" : "t3_r946lm", "picture" : {"filesize" : 117372, "fullUrl" : "https://preview.redd.it/eo1k92aykm381.jpg?auto=webp&s=534869bdaffa5c6644f47db3bc1b952544d646... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"... | {"name" : "filerepo", "version" : "1.0.0", "description" : "", "main" : "server.js", "engines" : {"node" : "6.2.2"}, "dependencies" : {"adal-node" : "^0.1.21", "azure-storage" : "^1.0.1", "base64-stream" : "^0.1.3", "bluebird" : "^3.4.1", "body-parser" : "^1.15.2", "config" : "^1.21.0", "cookie-parser" : "^1.4.3", "cry... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"adal-node": {"ty... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "config_type": {"type": "string"}, "is_enabled": {"type": "boolean"}, "email_group": {"type": "object", "prope... | {"config" : {"name" : "Test recipient group", "description" : "A test email recipient group", "config_type" : "email_group", "is_enabled" : true, "email_group" : {"recipient_list" : [{"recipient" : "custom.email.1@test.com"}, {"recipient" : "custom.email.2@test.com"}, {"recipient" : "custom.email.3@test.com"}, {"recipi... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "config_type": {"type": "string"}, "is_enabled": {"type": "boolean"}, "email_group": {"type": "object", "properties": {"recipient_list": {"type": "array", "items": {"type": "objec... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "e... | {"name" : "wp-pilot/registry", "description" : "Dependency container class of wp-pilot OOP WordPress code kit", "type" : "library", "license" : "MIT", "authors" : [{"name" : "wp-pilot", "email" : "wp-pilot@outlook.com"}], "autoload" : {"psr-4" : {"WP_Pilot_Core\\" : "/"}}, "require-dev" : {"squizlabs/php_codesniffer" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$sch... | {"Time" : "2021-06-08T09:00:00Z", "Temp" : 27, "RelHum" : 40, "WindSpeed" : 3, "WindDir" : 299} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id_8436": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8436"], "$schema": "http://json-schema.org/draft-07/sch... | {"id_8436" : {"publicdate" : "2014-05-05 00:12:52", "downloads" : 25810}} | json_instruct | {"type": "object", "properties": {"id_8436": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8436"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-gwasexacthw"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "string"}, "info": {"type": "object", "properties": {"plain": {"type": "string"}}, "required": ["plain"]}}, "required": ["version", "info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "6.0.0-beta.2", "info" : {"plain" : "### Bug Fixes\n\n- Addon-docs: Fix broken props logic for no-args stories ([#10633](https://github.com/storybookjs/storybook/pull/10633))\n- Addon-docs: Fix custom source manual override ([#10632](https://github.com/storybookjs/storybook/pull/10632))\n- Addon-docs: Fix ... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "info": {"type": "object", "properties": {"plain": {"type": "string"}}, "required": ["plain"]}}, "required": ["version", "info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-3.144176544488189, 40.267708456693626]}, "properties" : {"TIMESTAMP UTC" : "2020-09-15T11:10:08", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-3.5893340248031493, 40.56968... | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properti... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "inte... | {"acadYear" : "2019/2020", "description" : "This module provides an analytical treatment of the subject of facility layout and location. The layout design process consists of problem formulation, analysis of the problem, search for layout designs, selection of the preferred design, and specification of the layout desig... | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"libphonenumber-js.min.js": {"type": "string"}}, "required": ["libphonenumber-js.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"libphonenumber-js.min.js" : "sha256-7jLgbyLwE4saY6We2QZO2z7q9gl+2qWXDjcLbWzgMZw="} | json_instruct | {"type": "object", "properties": {"libphonenumber-js.min.js": {"type": "string"}}, "required": ["libphonenumber-js.min.js"], "$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"}, "image_prefix": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "strin... | {"id" : "wrtnode_wrtnode2p", "image_prefix" : "openwrt-ramips-mt76x8-wrtnode_wrtnode2p", "images" : [{"name" : "openwrt-ramips-mt76x8-wrtnode_wrtnode2p-squashfs-sysupgrade.bin", "sha256" : "470d94600818929cc0244a11c7d8a367bb6da0cfb6f9f6fa5df446fe7e6d59df", "type" : "sysupgrade"}], "metadata_version" : 1, "supported_dev... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "image_prefix": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "sha256", "type"]}}, "metadata_version": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "required": ["id", "t... | {"id" : 1497, "type" : 9, "name" : "Pasado de Xelor", "level" : 30, "pods" : 4, "ethereal" : false, "stats" : ""} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "required": ["id", "type", "name", "level", "pods", "ethereal", "stats"], "$sche... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "heroMan", "src" : "heroMan.png"}, {"name" : "teaching", "src" : "teaching.png"}, {"name" : "graphsWoman", "src" : "graphsWoman.png"}, {"name" : "happyWoman", "src" : "happyWoman.png"}, {"name" : "moneyWoman", "src" : "moneyWoman.png"}, {"name" : "robotWoman", "src" : "robotWoman.png"}, {"name" : "meditation... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {"... | {"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_realized_on_cube", "white" : "pysot_srbf", "black" : "pymoo_nsga2", "traceback" : ["passing", "passing"], "best_val" : [-0.07433268021413739, 0.9598094308276655], "best_x" : [[0.1453609116501295, 0.043465816821294155, 0.47407159571206414, 0.1616425782137453, 0.06... | 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": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"open": {"type": "string"}, "openWithRandomTask": {"type": "string"}}, "required": ["open", "openWithRandomTask"]}, "instance": {"type": "object", "properties": {"acceptContents:": {"t... | {"class" : {"open" : "DS 12/1/2015 18:46", "openWithRandomTask" : "DS 12/2/2015 17:50"}, "instance" : {"acceptContents:" : "DS 12/2/2015 17:48", "buildWith:" : "DS 12/1/2015 20:35", "taskText" : "DS 12/1/2015 20:35", "taskText:" : "DS 12/1/2015 20:35", "window" : "DS 12/1/2015 21:18", "window:" : "DS 12/1/2015 21:18"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"open": {"type": "string"}, "openWithRandomTask": {"type": "string"}}, "required": ["open", "openWithRandomTask"]}, "instance": {"type": "object", "properties": {"acceptContents:": {"type": "string"}, "buildWith:": {"type": "string"}, "taskTex... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/[locale].js": {"type": "boolean"}}, "required": ["static/development/pages/[locale].js"]}}, "required": ["h", "c"], "$sch... | {"h" : "e4f1bcd2d94cc1442985", "c" : {"static/development/pages/[locale].js" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/[locale].js": {"type": "boolean"}}, "required": ["static/development/pages/[locale].js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "sand-amqp", "version" : "1.0.3", "description" : "Sand AMQP Library", "main" : "index.js", "scripts" : {"test" : "node_modules/.bin/mocha --opts ./test/mocha.opts ./test/"}, "repository" : {"type" : "git", "url" : "git+https://github.com/SandJS/amqp.git"}, "keywords" : ["sand", "amqp"], "author" : {"name" : ... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"app": {"type": "string"}}, "required": ["app"]}, "repository"... | {"name" : "electron-test", "version" : "1.0.0", "description" : "first test for electron", "main" : "index.js", "scripts" : {"app" : "electron ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/tao12345666333/Talk-Is-Cheap.git"}, "keywords" : ["electron"], "author" : "TaoBeier", "license" : "MIT", "bu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"app": {"type": "string"}}, "required": ["app"]}, "repository": {"type": "object", "properties": {"type": {"type": "str... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "d:\\Learning\\AFLORE\\env\\Scripts\\python.exe"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required"... | {"name" : "Site Check", "description" : "Adds \"checksite\" command to check website security.", "author" : "Juby210#0577", "version" : "1.0.0", "license" : "MIT", "permissions" : ["ext_api"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "author", "version", "license",... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {... | {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : "24359"}, "clipped" : true, "id" : "f9f89e5edc"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : "25048"}, "clipped" : true, "id" : "56b22fec0c"}, {"arcs" : [[2]], "type" : ... | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "dimdoors:block/fabric_black"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "svtools", "downloads" : 30400, "count" : 8146}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": ... | {"name" : "sseidelmann/console-color-formatter", "description" : "Console color formatter", "minimum-stability" : "stable", "license" : "proprietary", "authors" : [{"name" : "Sebastian Seidelmann", "email" : "sebastian.seidelmann@gmail.com"}], "autoload" : {"psr-4" : {"ConsoleColorFormatter\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "stri... | {"name" : "PriceKit", "version" : "1.1.0", "summary" : "Get App Store product prices by tier and locale.", "description" : "Get App Store prices by tier and locale.\nUse PriceKit if you have a temporarily discounted SKProduct and you want to\nto display the regular price next to the discount price (strikethrough pricin... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"... |
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": {"start": {"type": "string"}, "test": {"typ... | {"name" : "book-ranking-api", "version" : "1.0.0", "description" : "A simple api in which books get published, referenced and rated", "main" : "index.js", "scripts" : {"start" : "node src/index.js", "test" : "mocha src/test/test.js --timeout 5000"}, "author" : "romedu", "license" : "MIT", "dependencies" : {"mongoose" :... | 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"]}, "author": {"type": "string"},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform... | {"id" : "d6653eee-2d4d-4e6a-976f-6794a497999a", "queryName" : "API Gateway Without Content Encoding", "severity" : "MEDIUM", "category" : "Encryption", "descriptionText" : "Enable Content Encoding through the attribute 'MinimumCompressionSize'. This value should be greater than -1 and smaller than 10485760.", "descript... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"typ... | {"xmin" : [934, 905, 872, 319, 880, 911, 1074, 1117], "xmax" : [1062, 946, 919, 360, 909, 952, 1148, 1169], "ymin" : [1052, 899, 849, 790, 738, 754, 901, 911], "ymax" : [1124, 957, 909, 882, 783, 779, 944, 959]} | json_instruct | {"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"type": "integer"}}}, "required": ["xmin", "xmax", "ymin", "ymax"], "$schema": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "watchporn", "author" : "AntonisCh", "count" : 558} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"URL": {"type": "string"}, "Text": {"type": "string"}, "_id": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}}, "required": ["URL", "Text", "_id"], "$schema": "http://json-schema... | {"URL" : "http://www.slate.com/blogs/browbeat/2015/08/21/mc_mom_key_peele_put_a_new_twist_on_the_trope_of_the_clueless_parent_trying.html", "Text" : "This week\u2019s Key & Peele may have been uneven, but the title sketch made up for the jokes that didn\u2019t land. In \u201cMC Mom,\u201d a college student gets a DVD l... | json_instruct | {"type": "object", "properties": {"URL": {"type": "string"}, "Text": {"type": "string"}, "_id": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}}, "required": ["URL", "Text", "_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]... | {"name" : "ejercicio_parser", "version" : "1.0.0", "description" : "Extraer todos los nodos de un archivo HTML y su CSS. Solamente extraer nodos y sub nodos. Cada nodos debera contener la estructura minima", "main" : "index.js", "scripts" : {"test" : "mocha --reporter spec"}, "bin" : {"central_parser" : "./bin/cli.js"}... | 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"]}, "bin": {"type": "object", "properties": {"central_parser": {"type":... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.