input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "keywords": {"type": "array", "i... | {"name" : "node-qiwi-api-mobi", "version" : "1.1.2", "main" : "node-qiwi-api-mobi.js", "dependencies" : {"request" : "2.81.0"}, "keywords" : ["QIWI", "Wallet"], "bugs" : {"url" : "https://github.com/GordenPirs/node-qiwi-api.git/issues"}, "homepage" : "https://github.com/GordenPirs/node-qiwi-api.git", "author" : "Pirs D... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "pro... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"ty... | {"compatibility.js" : "sha512-kYadMM68T9bVLksLE2NaOwpGbhehAKatZcdsIMyyCejpM1NYrVk/HJmHRo4k4lbR8lFEc+5U0QwonWEBZH7nmA==", "compatibility.min.js" : "sha512-/Q/FLIdHDXPFa30DHIbXddrWthIRUYI0OD0kabm4PkcHZtReDRa7+bBesrsp1mXlsei1n19UO97W9zoRyuWaHw==", "pdf.combined.js" : "sha512-AlA7oVrhOWeM/Zrn43arbtbkqFsG8Um40gl6XHwZqZU2PhU... | json_instruct | {"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"type": "string"}, "pdf.worker.entry.js": {"type": "string"}, "pdf.worker.e... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "uncourtliness", "definition" : "Absence of courtliness; rudeness; rusticity. Addison."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Baseline": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "Visualization": {"type": "array", "items": {"type": "object", "properties": {"name": {"typ... | {"Baseline" : [{"name" : "bar-chart-baseline"}, {"name" : "overview-plus-detail-baseline"}, {"name" : "scatter-plot-baseline"}, {"name" : "population-pyramid-baseline"}, {"name" : "stock-index-chart-baseline"}], "Visualization" : [{"name" : "bar-chart-visualization"}, {"name" : "overview-plus-detail-visualization"}, {"... | json_instruct | {"type": "object", "properties": {"Baseline": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "Visualization": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["Baseline", "Vi... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": ... | {"name" : "eslint-plugin-redux-saga", "version" : "1.0.0", "description" : "redux-saga eslint rules", "author" : "Philipp Kursawe <phil.kursawe+npm@gmail.com", "contributors" : [{"name" : "Nicolas Fernandez", "url" : "https://github.com/burabure"}], "main" : "index.js", "files" : ["LICENSE", "README.md", "index.js", "l... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}... |
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#"}
| [[1981, 7], [1984, 7], [1986, 7], [1987, 11], [1988, 12], [1989, 16], [1990, 16], [1991, 22], [1992, 16], [1993, 15], [1994, 20], [1995, 27], [1996, 37], [1997, 32], [1998, 35], [1999, 50], [2000, 47], [2001, 49], [2002, 57], [2003, 58], [2004, 47], [2005, 66], [2006, 77], [2007, 103], [2008, 93], [2009, 116], [2010, 1... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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 xornan on Metamath](http://us.metamath.org/mpegif/xornan.html)"}], "names" : ["xornan"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wxo", "#T_wps", "#T_wi", "#T_wn", "#T_wph", "#T_wa", "#T_wps"], "metaLanguage" : "METAMATH", "remarks" : " XOR implies NAND. (Co... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"groups": {"type": "object", "properties": {"g": {"type": "object", "properties": {"en": {"type": "string"}, "ne": {"type": "string"}, "fr": {"type": "string"}, "hu": {"type": "string"}, "pi": {"type": "string"}, "sv": {"type": "... | {"groups" : {"g" : {"en" : "Guest", "ne" : "Gast", "fr" : "Invit\u00e9", "hu" : "Guest", "pi" : "Deckhand", "sv" : "G\u00e4st"}, "u" : {"en" : "Member", "ne" : "Lid", "fr" : "Membre", "hu" : "Member", "pi" : "Sailor", "sv" : "Medlem"}, "p" : {"en" : "Apprentice", "ne" : "Leerling", "fr" : "Apprenti", "hu" : "Apprentice... | json_instruct | {"type": "object", "properties": {"groups": {"type": "object", "properties": {"g": {"type": "object", "properties": {"en": {"type": "string"}, "ne": {"type": "string"}, "fr": {"type": "string"}, "hu": {"type": "string"}, "pi": {"type": "string"}, "sv": {"type": "string"}}, "required": ["en", "ne", "fr", "hu", "pi", "sv... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"throws" : "The only valid meta property for import is import.meta"} | json_instruct | {"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"key": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type":... | {"$schema" : "http://json-schema.org/draft-04/schema#", "type" : "object", "properties" : {"key" : {"title" : "Webhook ID", "type" : "string", "pattern" : "^[A-Fa-f\\d]{24}$", "messages" : {"required" : "Webhook ID is required", "pattern" : "Must be a valid Webhook ID"}}, "type" : {"type" : "string", "enum" : ["webhook... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"key": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "pattern": {"type": "string"}, "messages": {"type": "object", "properties": {"req... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "au... | {"title" : "Lifted Probabilistic Inference for Asymmetric Graphical Models.", "fields" : ["frequentist inference", "adaptive neuro fuzzy inference system", "probabilistic logic network", "fiducial inference", "variable elimination"], "abstract" : "Lifted probabilistic inference algorithms have been successfully applied... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Generate a valid JSON object that conforms to the following schema:
{"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":... | {"id" : 404398825, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a2a6db00dbbd6ab8ada7c8d2e4a43a28", "wof:id" : 404398825, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.83305170039693, 49.85711558960345, 2.86713520138201, 49.87575882298056... | 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": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ud7.8:1.1": {"type": "string"}, "ud7.8:2.1": {"type": "string"}, "ud7.8:3.1": {"type": "string"}, "ud7.8:4.1": {"type": "string"}}, "required": ["ud7.8:1.1", "ud7.8:2.1", "ud7.8:3.1", "ud7.8:4.1"], "$schema": "http:/... | {"ud7.8:1.1" : "ms18Ud_639, msdiv68, sc1, vri47.161", "ud7.8:2.1" : "dr25.234, ms18Ud_640, sc2", "ud7.8:3.1" : "ms18Ud_641, sc3", "ud7.8:4.1" : "ms18Ud_642, pts-vp-pli78, sc4, sya25.203, vns83"} | json_instruct | {"type": "object", "properties": {"ud7.8:1.1": {"type": "string"}, "ud7.8:2.1": {"type": "string"}, "ud7.8:3.1": {"type": "string"}, "ud7.8:4.1": {"type": "string"}}, "required": ["ud7.8:1.1", "ud7.8:2.1", "ud7.8:3.1", "ud7.8:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sc... | [{"year" : 1997, "sex" : "M", "n" : 6, "prop" : 3e-06}, {"year" : 1998, "sex" : "M", "n" : 6, "prop" : 2.96e-06}, {"year" : 2004, "sex" : "M", "n" : 7, "prop" : 3.31e-06}, {"year" : 2007, "sex" : "M", "n" : 6, "prop" : 2.71e-06}, {"year" : 2008, "sex" : "M", "n" : 7, "prop" : 3.21e-06}, {"year" : 2011, "sex" : "M", "n"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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" : "Couti\u00e8res", "dpt" : "Deux-S\u00e8vres", "inscrits" : 132, "abs" : 24, "votants" : 108, "blancs" : 10, "nuls" : 6, "exp" : 92, "res" : [{"panneau" : "2", "voix" : 54}, {"panneau" : "1", "voix" : 38}]} | 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 a valid JSON object that conforms to the following schema:
{"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" : "ActivityDefinition.code", "meta" : {"lastUpdated" : "2017-04-19T07:44:43.294+10:00"}, "url" : "http://hl7.org/fhir/DataElement/ActivityDefinition.code", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"id" : "ActivityDefinition.code", "... | 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":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls... | {"nom" : "Cheylard (Le)", "circ" : "1\u00e8re circonscription", "dpt" : "Ard\u00e8che", "inscrits" : 2591, "abs" : 1466, "votants" : 1125, "blancs" : 53, "nuls" : 65, "exp" : 1007, "res" : [{"nuance" : "REM", "nom" : "M. Andr\u00e9 DUPONT", "voix" : 557}, {"nuance" : "SOC", "nom" : "M. Herv\u00e9 SAULIGNAC", "voix" : 4... | 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"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "curator": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "... | {"title" : "SE-0274: Concise Magic File Names has been accepted", "description" : "\u201cDuring the second review, the format of the new #file value was discussed and will be locked down in a way that users can rely on. The core team expects future tooling to be created that will allow for easy processing of this value... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "curator": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "tags": {"type": "array", "items": {"type": "string"}}}, "requir... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}}, "required": ["_blockType", "_id", "options"], "$schema": "http://json-schema.org/draft-07/schem... | {"_blockType" : "RadioGroup", "_id" : "radio_group:yes-no-unsure", "options" : ["option:yes", "option:no", "option:unsure"]} | json_instruct | {"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "options": {"type": "array", "items": {"type": "string"}}}, "required": ["_blockType", "_id", "options"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": [... | {"name" : "wing", "version" : "0.0.1", "description" : "SCSS toolkit for HEX", "repository" : {"type" : "git", "url" : "https://github.com/hex-sh/wing.git"}, "keywords" : ["scss", "toolkit", "css", "branding"], "author" : "HEX", "bugs" : {"url" : "https://github.com/hex-sh/wing/issues"}, "homepage" : "https://github.co... | 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"}}... |
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": {"test": {"type": "string"}}, "required": [... | {"name" : "openbusiness", "version" : "1.0.0", "description" : "Platform to expand open source principles to every part of a business", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/briggsmichaelr/OpenBusiness.g... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "lion of God", "long" : "<i>Meaning:</i> \"lion of God\"; i.e. \"heroic\".<br/><i>Usage:</i> lionlike men.<br/><i>Source:</i> or \"\u05d0\u05b2\u05e8\u05b4\u05d0\u05b5\u05dc\"; from \"H738\" and \"H410\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"when": {"type": "string"}, "message": {"type": "string"}, "who": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "object", ... | {"when" : "2011-12-08T06:23:50-05:00", "message" : "committing patch for https://issues.apache.org/jira/browse/SYNAPSE-822", "who" : "uswick", "changes" : [{"chunks" : [{"locn" : "-1809,10 +1809,12", "lines" : [" <p>\n", " <strong>\n", " Objective: Demonstrate Service-aware dynamic load balancing between a couple o... | json_instruct | {"type": "object", "properties": {"when": {"type": "string"}, "message": {"type": "string"}, "who": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"chunks": {"type": "array", "items": {"type": "object", "properties": {"locn": {"type": "string"}, "lines": {"type": "array", "i... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"... | {"userId" : 19867, "cartId" : "a8e7b6ff-b9a7-4b48-88cc-dbac78bf526d", "preferredProducts" : [], "productReviews" : [{"productId" : 3158, "reviewText" : "The box this comes in is 3 centimeter by 5 kilometer and weights 13 ounce!!", "reviewDate" : "2019-04-02T16:09:43.688103+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, ... | {"artist_id" : "ARHJIKW1187B9ACE16", "artist_latitude" : null, "artist_location" : "Stourbridge, England", "artist_longitude" : null, "artist_name" : "Pop Will Eat Itself", "duration" : 217.10322, "num_songs" : 1, "song_id" : "SOGRVDX12A8C14435C", "title" : "Radio P.W.E.I.", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"... |
Create a JSON structure that matches this schema definition:
{"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": {"ty... | {"code" : 7315080017, "parent" : 7315080, "name" : "BAKARU", "latitude" : null, "longitude" : null, "postal" : [91254], "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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "c6f2acab18091314697f", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$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"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"typ... | {"name" : "grunt-pure-grids", "version" : "2.0.0", "description" : "Generate custom units for Pure Grids.", "homepage" : "https://github.com/yahoo/grunt-pure-grids", "repository" : {"type" : "git", "url" : "git://github.com/pure-css/grunt-pure-grids.git"}, "bugs" : "git://github.com/pure-css/grunt-pure-grids.git/issues... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["line", "offset"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"line" : 75, "offset" : 10110}, {"line" : 153, "offset" : 20110}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["line", "offset"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "chipped:block/light_blue_concrete_16"} | 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"}, "devDependencies": {"type": "object", "properties": {"ui-harness": {"type": "string"}}, "required": ["ui-harness"]}, "scripts": {"typ... | {"name" : "my-components", "version" : "0.0.1", "description" : "A sample UI component library.", "devDependencies" : {"ui-harness" : "^3.9.4"}, "scripts" : {"start" : "node ./node_modules/ui-harness/start", "build" : "node ./node_modules/ui-harness/build"}, "dependencies" : {"react-motion" : "^0.4.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"ui-harness": {"type": "string"}}, "required": ["ui-harness"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"clues": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "title": {"type": "string"}, "description": {"type": "string"}, "note": {"type": "string"}}, "required... | {"clues" : [[[5], [7], [6, 2], [6, 1, 6], [6, 1, 2, 1], [3, 3, 1, 1], [3, 2, 1, 1], [3, 3, 1], [7, 1], [7, 2], [7, 4], [8], [2, 6], [4, 7], [1, 2, 6], [3, 2, 2, 1, 2], [1, 4, 1, 6, 1], [2, 2, 2, 1], [3, 2, 1, 3, 1], [1, 1, 1, 2], [2, 1, 1, 1], [1, 2, 1], [1, 3, 1], [5, 1, 1], [1, 11]], [[4], [2, 1, 2], [3, 2, 1, 2, 1],... | json_instruct | {"type": "object", "properties": {"clues": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "title": {"type": "string"}, "description": {"type": "string"}, "note": {"type": "string"}}, "required": ["clues", "title", "description", "note"], "$schema": "http://json-... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"out": {"type": "object", "properties": {"print": {"type": "string"}, "println": {"type": "string"}}, "required": ["print", "println"]}, "elem": {"type": "object", "properties": {"new": {"type": "string"}, "inner":... | {"out" : {"print" : "function (txt) {document.getElementsByTagName(body).innerHTML = txt;}", "println" : "function (txt) {document.getElementsByTagName(body).innerHTML = txt;"}, "elem" : {"new" : "function (elem) {document.createElement(elem);}", "inner" : "function (value) {this.innerHTML = value;}", "outer" : "functi... | json_instruct | {"type": "object", "properties": {"out": {"type": "object", "properties": {"print": {"type": "string"}, "println": {"type": "string"}}, "required": ["print", "println"]}, "elem": {"type": "object", "properties": {"new": {"type": "string"}, "inner": {"type": "string"}, "outer": {"type": "string"}}, "required": ["new", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[132.375, 43.833333333333336], [132.375, 43.916666666666664], [132.5, 43.916666666666664], [132.5, 43.833333333333336], [132.375, 43.833333333333336]]]}, "properties" : {"code" : 653263, "url" : "http://madefor.github.io/0410/api/v1/653263.geojson... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper... | {"hash" : "0x4eef86683a893ddcd2bf7e4a574bbd5af3eae10f70a1a02842b5e2b7f0e809a8", "parentHash" : "0xee1f878fb9585d0fb66c546198357194659264d2e9f761bf7f2b3fe482a079c6", "number" : 53043, "timestamp" : 1439031456, "nonce" : "0x5099634b3558e594", "difficulty" : 1578564002017, "gasLimit" : {"_hex" : "0x1e7a57"}, "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"]... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"email":... | {"name" : "tiagodanin", "main" : "index.js", "preferGlobal" : false, "version" : "1.1.10", "description" : "README with my npm packages", "author" : {"email" : "TiagoDanin@outlook.com", "name" : "Tiago Danin", "url" : "https://TiagoDanin.github.io"}, "license" : "MIT", "keywords" : ["awesome-list", "readme"], "scripts"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "supra-esophageal", "definition" : "Situated above, or on the dorsal side of, the esophagus; as, the supra-esophageal ganglion of Crustacea. [Written also supra- oesophagal, and supra-oesophageal.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-minify-c... | {"name" : "blockstory-client", "version" : "0.0.1", "devDependencies" : {"gulp" : "^3.9.0", "gulp-concat" : "^2.6.0", "gulp-filter" : "^3.0.1", "gulp-minify-css" : "^1.2.1", "gulp-ng-annotate" : "^1.1.0", "gulp-notify" : "^2.2.0", "gulp-ruby-sass" : "^1.4.0", "gulp-uglify" : "^1.3.0", "gulp-util" : "^3.0.6", "main-bowe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-ng-annotate": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"allowedFiletypes": {"type": "array", "items": {"type": "string"}}}, "required": ["allowedFiletypes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"allowedFiletypes" : [".jpg", ".jpeg", ".png", ".gif", ".gifv", ".mp4", ".webm"]} | json_instruct | {"type": "object", "properties": {"allowedFiletypes": {"type": "array", "items": {"type": "string"}}}, "required": ["allowedFiletypes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free-webfonts": {"t... | {"name" : "assets", "version" : "1.0.0", "description" : "assets", "main" : "index.js", "dependencies" : {"@fortawesome/fontawesome-free-webfonts" : "^1.0.9", "autolinker" : "^1.6.2", "autosize" : "^4.0.2", "bootstrap" : "^4.1.1", "jquery" : "^3.3.1", "popper.js" : "^1.14.3"}, "devDependencies" : {"gulp" : "^3.9.1", "g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-free-webfonts": {"type": "string"}, "autolinker": {"type": "string"}, "autosize": {"type... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"seed": {"type": "integer"}, "cuda": {"type": "boolean"}, "epochs": {"type": "integer"}, "optimizer": {"type": "object", "properties": {"type": {"type": "string"}, "parameters": {"type": "object", "properties": {"lr": {"type": ... | {"seed" : 1314, "cuda" : true, "epochs" : 30, "optimizer" : {"type" : "Adam", "parameters" : {"lr" : 0.001}}, "update_every" : 4, "print_every" : 100, "eval_every" : 500, "clip" : 5} | json_instruct | {"type": "object", "properties": {"seed": {"type": "integer"}, "cuda": {"type": "boolean"}, "epochs": {"type": "integer"}, "optimizer": {"type": "object", "properties": {"type": {"type": "string"}, "parameters": {"type": "object", "properties": {"lr": {"type": "number"}}, "required": ["lr"]}}, "required": ["type", "par... |
Following the schema specification below, generate a valid 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": {"typ... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Partida, Norzagaray, Bulacan, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.bulacan.norzagaray.partida", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "regio... | 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": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[129.25, 24.166666666666668], [129.25, 24.25], [129.375, 24.25], [129.375, 24.166666666666668], [129.25, 24.166666666666668]]]}, "properties" : {"code" : 362922, "url" : "http://madefor.github.io/0410/api/v1/362922.geojson", "view" : "https://gith... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}... | [{"province" : "\u9655\u897f\u7701", "city" : "\u897f\u5b89\u5e02", "area" : "\u83b2\u6e56\u533a", "name" : "\u738b\u5bb6\u5df7\u90ae\u653f\u6240", "code" : "710082", "address" : "\u897f\u5b89\u5e02\u83b2\u6e56\u533a\u94c1\u5854\u5bfa\u8def51\u53f7", "phone" : "029-88610522"}, {"province" : "\u9655\u897f\u7701", "city"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "st... | {"name" : "bmake", "pkg_version" : "20220418", "rebuild" : 0, "bottles" : {"arm64_monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/bmake/blobs/sha256:ea6d347e27b41d0fe9e672910c829123de6563da61b665b2d0f17a45d7f14994"}, "arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/bmake/blobs/sha256:801ad5c98a414c1e... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "propert... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"gameId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "thumbnail": {"type": "string"}, "minPlayers": {"type": "integer"}, "maxPlayers": {"type": ... | {"gameId" : 319966, "name" : "The King is Dead: Second Edition", "description" : "The King is dead. The kingdom is divided. Three factions — the Scottish, the Welsh, and the English — vie for control and, across the sea, foreign invaders prepare to take advantage of the chaos. Players must marshal their lim... | json_instruct | {"type": "object", "properties": {"gameId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "thumbnail": {"type": "string"}, "minPlayers": {"type": "integer"}, "maxPlayers": {"type": "integer"}, "playingTime": {"type": "integer"}, "mechanics": {"type": "a... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "ignore"], "$schema": "ht... | {"name" : "jsonlint", "version" : "1.6.0", "main" : "lib/jsonlint.js", "ignore" : ["**/.*", "node_modules", "scripts", "src", "test", "web", "package.json", "Makefile", "README.md"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_co... | [{"id" : "outland-farm-brewery", "name" : "Outland Farm Brewery", "brewery_type" : "planning", "street" : "", "city" : "Pittsfield", "state" : "Maine", "postal_code" : "04967-5811", "website_url" : "http://www.outlandfarmbrewery.com", "phone" : "2076168125", "created_at" : "2018-07-24 01:33:27.747323", "updated_at" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"t... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/... | {"name" : "acoustic-website-react-sample", "version" : "1.0.0", "license" : "Apache-2.0", "homepage" : "/7e9fa8ae-a6ba-4f4a-8518-ea37fb16413e/coronavirus-response", "dependencies" : {"@material-ui/core" : "4.6.0", "@material-ui/icons" : "4.5.1", "react" : "16.11.0", "react-dom" : "16.11.0", "react-image-gallery" : "1.0... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "react": {"type": "string"}, "r... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array... | {"ast" : null, "code" : "export default (async (request, response) => {\n response.end(JSON.stringify({\n showCoupon: true\n }));\n});", "map" : {"version" : 3, "sources" : ["C:/Users/samue/OneDrive/Documentos/Projects/palpite-box/pages/api/get-promo.js"], "names" : ["request", "response", "end", "JSON", "stringif... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"29772bfce0dfdd71d31c7ab4695aae0a": {"type": "string"}, "ea62decd7d02852c15a89086830a5e4a": {"type": "string"}}, "required": ["29772bfce0dfdd71d31c7ab4695aae0a", "ea62decd7d02852c15a89086830a5e4a"], "$schema": "htt... | {"29772bfce0dfdd71d31c7ab4695aae0a" : "<link rel=\"stylesheet\" href=\"/static/CACHE/css/e5c2e8f41c1f.css\" type=\"text/css\" />", "ea62decd7d02852c15a89086830a5e4a" : "<script type=\"text/javascript\" src=\"/static/CACHE/js/5a13a9220cae.js\"></script>"} | json_instruct | {"type": "object", "properties": {"29772bfce0dfdd71d31c7ab4695aae0a": {"type": "string"}, "ea62decd7d02852c15a89086830a5e4a": {"type": "string"}}, "required": ["29772bfce0dfdd71d31c7ab4695aae0a", "ea62decd7d02852c15a89086830a5e4a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : 99810, "cartId" : "56407a48-970f-4925-b8d6-367ee237cd2c", "preferredProducts" : [4481], "productReviews" : [{"productId" : 4031, "reviewText" : "talk about hatred.", "reviewDate" : "2019-11-05T17:52:32.5024926+02:00"}, {"productId" : 550, "reviewText" : "I tried to decapitate it but got coconut all over it.... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ikon": {"type": "string"}, "menu": {"type": "string"}, "menuBic": {"type": "string"}, "info": {"type": "string"}}, "required": ["ikon", "menu", "menuBic", "info"], "$schema": "http://json-schema.org/draft-07/schem... | {"ikon" : "\u2500\u2500\u2500\u2500\u2500\u2500\u2584\u2580\u2584\u2500\u2500\u2500\u2500\u2500\u2584\u2580\u2584\n\u2500\u2500\u2500\u2500\u2500\u2584\u2588\u2591\u2591\u2580\u2580\u2580\u2580\u2580\u2591\u2591\u2588\u2584\n\u2500\u2584\u2584\u2500\u2500\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u259... | json_instruct | {"type": "object", "properties": {"ikon": {"type": "string"}, "menu": {"type": "string"}, "menuBic": {"type": "string"}, "info": {"type": "string"}}, "required": ["ikon", "menu", "menuBic", "info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ATTRIBUTE_PUBLISHER_NAME": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_BEACON": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_CONSUMER_ID": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_DEVICE_TYPE": {"ty... | {"ATTRIBUTE_PUBLISHER_NAME" : "channelId", "ATTRIBUTE_CONTENT_ANALYTICS_BEACON" : "AnalyticsBeacon", "ATTRIBUTE_CONTENT_ANALYTICS_CONSUMER_ID" : "AnalyticsConsumerId", "ATTRIBUTE_CONTENT_ANALYTICS_DEVICE_TYPE" : "AnalyticsDevice", "ATTRIBUTE_CONTENT_ANALYTICS_PLAYER_ID" : "AnalyticsPlayerId", "ATTRIBUTE_CONTENT_ANALYTI... | json_instruct | {"type": "object", "properties": {"ATTRIBUTE_PUBLISHER_NAME": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_BEACON": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_CONSUMER_ID": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_DEVICE_TYPE": {"type": "string"}, "ATTRIBUTE_CONTENT_ANALYTICS_PLAYER_ID": {"type": "str... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maint... | {"name" : "leaflet.draw", "filename" : "leaflet.draw.js", "version" : "0.2.3", "description" : "Vector drawing plugin for Leaflet", "homepage" : "https://github.com/Leaflet/Leaflet.draw", "keywords" : ["maps", "mobile", "drawing", "vector"], "maintainers" : [{"name" : "Jacob Toye", "url" : "https://github.com/jacobtoye... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "object", "proper... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/sc... | {"symbol" : "BICAS", "name" : "BitherCash", "decimals" : 18, "address" : "0xa7d10ff962eda41f3b037e3af1d8b4037eba4b86"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "autho... | {"title" : "\u541b\u306e\u5f7c\u5973", "author" : "BTK", "description" : "\u5834\u6240\u306e\u602a\u3057\u3055\u3068\u30c0\u30f3\u30b9\u3084\u30ad\u30e3\u30e9\u306e\u723d\u3084\u304b\u3055\u306e\u30ae\u30e3\u30c3\u30d7\u304c\u3044\u3044\u3067\u3059\u306d\u3002\u6642\u3005\u30b9\u30ab\u30fc\u30c8\u304c\u3081\u304f\u308c... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "Jigsawpuzzles", "hour" : "01", "avg" : 20.023809523809526}, {"subreddit" : "Jigsawpuzzles", "hour" : "02", "avg" : 32.857142857142854}, {"subreddit" : "Jigsawpuzzles", "hour" : "03", "avg" : 24.794871794871796}, {"subreddit" : "Jigsawpuzzles", "hour" : "04", "avg" : 31.63888888888889}, {"subreddit" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["big-json-streamer", "email-anonymiser", "eq.js", "gulp-hologram", "gulp-jsclosure", "gulp-tabify", "kndownloader", "parch", "sequentalreader", "typed-nano", "vomit"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"static-server": {"type": "string"}}, "required": ["static-server"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "req... | {"dependencies" : {"static-server" : "^3.0.0"}, "scripts" : {"start" : "./node_modules/.bin/static-server"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"static-server": {"type": "string"}}, "required": ["static-server"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["dependencies", "scripts"], "$schema": "http://json-s... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "string"}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sounds" : ["minecraft:mob/wolf/hurt1", "minecraft:mob/wolf/hurt2", "minecraft:mob/wolf/hurt3"], "subtitle" : "subtitles.entity.wolf.hurt"} | json_instruct | {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "string"}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"tag": {"type": "string"}, "meta": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "branch": {"type": "string"}}, "required": ["name", "url", "branch"]}, "github": {"type": "object", "prop... | {"tag" : "v2.1.1", "meta" : {"name" : "peertube", "url" : "https://github.com/Chocobozzz/PeerTube", "branch" : "refs/tags/v2.1.1"}, "github" : {"owner" : "Chocobozzz", "repo" : "PeerTube", "rev" : "76f7b571c04c03ba422bd5790944fe80dbb24067", "sha256" : "147gm1j657fkpv2ix1bmkhl7ld5h224q7hgdj9ffj3z14mqgk8hj", "fetchSubmod... | json_instruct | {"type": "object", "properties": {"tag": {"type": "string"}, "meta": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "branch": {"type": "string"}}, "required": ["name", "url", "branch"]}, "github": {"type": "object", "properties": {"owner": {"type": "string"}, "repo": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 14938, "cartId" : "f9c9c5f5-7394-4435-bef7-f26947845e0b", "preferredProducts" : [987, 3668, 3904, 4469], "productReviews" : [{"productId" : 781, "reviewText" : "This Bedfordshire works very well. It romantically improves my football by a lot.", "reviewDate" : "2019-03-18T22:09:51.234607+02:00"}, {"productId... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "u... | [{"subject" : "BIOL", "catalog_nbr" : 602, "section" : 1, "class_nbr" : 12552, "title" : "PROF DEVELOP ECOL & BIOL", "component" : "Lecture", "units" : 3, "bldg" : "TBA", "room" : "TBA", "days" : "MW", "time" : "11", "instructor" : "PFENNIG,KARIN S", "load" : "100", "rank" : "INST", "attributes" : null, "enrl_cap" : 20... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "numbe... | {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [464.097, 641.506, 0.281936, 376.838, 573.213, 0.28512, 295.126, 578.694, 0.119886, 0, 0, 0, 0, 0, 0, 431.432, 556.884, 0.249996, 532.355, 600.633, 0.444958, 597.815, 663.192, 0.217825, 226.836, 685.157, 0.431354, 357.841, 862.483, 0.686544, 164.0... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["522328001000", "\u62db\u5824\u8857\u9053", "4", "1"], ["522328002000", "\u6816\u51e4\u8857\u9053", "4", "1"], ["522328003000", "\u94b1\u76f8\u8857\u9053", "4", "1"], ["522328101000", "\u9f99\u5e7f\u9547", "4", "1"], ["522328102000", "\u5fb7\u5367\u9547", "4", "1"], ["522328103000", "\u4e07\u5cf0\u6e56\u9547", "4", "... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/... | [{"year" : 1992, "sex" : "F", "n" : 15, "prop" : 7.48e-06}, {"year" : 1993, "sex" : "F", "n" : 33, "prop" : 0}, {"year" : 1994, "sex" : "F", "n" : 55, "prop" : 0}, {"year" : 1995, "sex" : "F", "n" : 83, "prop" : 0}, {"year" : 1996, "sex" : "F", "n" : 136, "prop" : 0.0001}, {"year" : 1996, "sex" : "M", "n" : 6, "prop" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "sulkiness", "definition" : "The quality or state of being sulky; sullenness; moroseness; as, sulkiness of disposition."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurren... | {"id" : "d3045fafeae54f44aef49ae65a9d1a7a", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 6759, "paymentCurrencyCode" : "BRL", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "R$"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 1214, "convenienceFee" : 0, "currencyCode... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbo... |
Generate a valid JSON object that conforms to the following schema:
{"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":... | {"id" : 101857541, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "baa92f2830edcf13078fe5c135268a71", "wof:id" : 101857541, "wof:repo" : "whosonfirst-data-admin-gr"}, "bbox" : [22.56583, 40.99361, 22.56583, 40.99361], "geometry" : {"coordinate... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"already_configured": {"type": "string"}, "cannot_connect": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required"... | {"config" : {"error" : {"already_configured" : "Account is al geconfigureerd", "cannot_connect" : "Kan geen verbinding maken", "invalid_auth" : "Ongeldige authenticatie"}, "flow_title" : "{username}", "step" : {"reauth" : {"data" : {"password" : "Wachtwoord"}, "description" : "Authenticatie mislukt voor OVO Energy. Voe... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"error": {"type": "object", "properties": {"already_configured": {"type": "string"}, "cannot_connect": {"type": "string"}, "invalid_auth": {"type": "string"}}, "required": ["already_configured", "cannot_connect", "invalid_auth"]}, "flow_title... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}, "placesInstantsearchWidget.js": {"type": "stri... | {"places.js" : "sha256-9a12wmILMpKRhwAlOaiiP+qPW38Xyn+/7OYF1Ul3uo4=", "places.min.js" : "sha256-kmHDDw9AyBajtrFjnW2aLlxQJmWyy/1ZS9iI4XfYhJQ=", "placesAutocompleteDataset.js" : "sha256-lMz7yt09UpaDgDmv8yjjIao5GIbW7KrLQxjwVL+ATmo=", "placesAutocompleteDataset.min.js" : "sha256-9KeMzOnoXaV1HuYjnwmy3QcFlXSJKFTEekaelP8NeNE=... | json_instruct | {"type": "object", "properties": {"places.js": {"type": "string"}, "places.min.js": {"type": "string"}, "placesAutocompleteDataset.js": {"type": "string"}, "placesAutocompleteDataset.min.js": {"type": "string"}, "placesInstantsearchWidget.js": {"type": "string"}, "placesInstantsearchWidget.min.js": {"type": "string"}},... |
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" : "2004", "provinceId" : "16", "regencyId" : "11", "districtId" : "03", "name" : "Simpang Perigi"} | 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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3508040007", "district_id" : "3508040", "name" : "MADUREJO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "au... | {"title" : "Mobile data charging: new attacks and countermeasures.", "fields" : ["operator", "data as a service", "countermeasure", "mobile broadband", "traffic volume"], "abstract" : "3G/4G cellular networks adopt usage-based charging. Mobile users are billed based on the traffic volume when accessing data service. In... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"tag_id": {"type": "integer"}, "auction_id": {"type": "string"}, "nobid": {"type": "boolean"}, "no_ad_url": {"type": "string"},... | {"version" : "0.0.1", "tags" : [{"tag_id" : 10072555, "auction_id" : "7115472373092247189", "nobid" : true, "no_ad_url" : "http://sin1-mobile.adnxs.com/it?e=wqT_3QLaA6DaAQAAAwDWAAUBCMmw5tgFEJXNk7rIjc_fYhimipyyiYbklSAqNgkAAAkCABEJBwgAABkRCQAhEQkAKREJADERCfR9ATDr4-YEOL4HQL4HSABQAFj34j9gAGiRQHgAgAEBkgEDVVNEmAGsAqAB-gGoAQG... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "tags": {"type": "array", "items": {"type": "object", "properties": {"tag_id": {"type": "integer"}, "auction_id": {"type": "string"}, "nobid": {"type": "boolean"}, "no_ad_url": {"type": "string"}, "timeout_ms": {"type": "integer"}, "ad_profile_id": {"type... |
Based on the schema below, produce a valid JSON object:
{"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" : "perl-ole-storage_lite", "downloads" : 95800, "count" : 8671}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"save_path": {"type": "string"}, "learning_rate": {"type": "number"}, "weight_decay": {"type": "number"}, "dropout_keep_prob": {"type": "number"}}, "required": ["save_path", "learning_rate", "weight_decay", "d... | {"save_path" : "/tmp", "learning_rate" : 1.0, "weight_decay" : 0.0, "dropout_keep_prob" : 0.55} | json_instruct | {"type": "object", "properties": {"save_path": {"type": "string"}, "learning_rate": {"type": "number"}, "weight_decay": {"type": "number"}, "dropout_keep_prob": {"type": "number"}}, "required": ["save_path", "learning_rate", "weight_decay", "dropout_keep_prob"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type... | {"uuid" : "e771bcb7-a2bd-4257-b521-b8f67fecd7d3", "name" : "io.arkitekt.testsPages.TestBasePages.restart", "description" : "", "start" : 1549915083792, "stop" : 1549915084021, "children" : ["006f66ac-de42-424d-b79e-81cad935f92a"], "befores" : [{"name" : "restart", "status" : "passed", "stage" : "finished", "description... | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"nam... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"booleanProperty": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}}, "required": ["type"]}, "stringP... | {"type" : "object", "properties" : {"booleanProperty" : {"type" : ["boolean", "string"]}, "stringProperty" : {"type" : ["string"]}, "integerProperty" : {"type" : ["integer", "null"]}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"booleanProperty": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}}, "required": ["type"]}, "stringProperty": {"type": "object", "properties": {"type": {"type": "array",... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "st... | {"description" : "cmd/gc: accept cases with same value but different types in switch.\n\nFixes issue 4781.", "cc" : ["golang-dev@googlegroups.com", "rsc@golang.org"], "reviewers" : [], "messages" : [{"sender" : "remyoudompheng@gmail.com", "recipients" : ["remyoudompheng@gmail.com", "golang-dev@googlegroups.com", "golan... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "requ... | {"track" : "javascript", "exercise" : "food-chain", "id" : "1d725b38cd704d43be461d575c695d2a", "url" : "https://exercism.io/my/solutions/1d725b38cd704d43be461d575c695d2a", "handle" : "RockLloque", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type":... | {"name" : "flask-website", "description" : "The Flask website, built with Flask!", "license" : {"key" : "bsd-3-clause", "name" : "BSD 3-clause \"New\" or \"Revised\" License", "spdx_id" : "BSD-3-Clause", "url" : "https://api.github.com/licenses/bsd-3-clause"}, "starNum" : 590, "folkNum" : 262, "watchNum" : 590, "topic"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"... | {"userId" : 20495, "cartId" : "743d2800-3532-4a95-bf32-90711419bf85", "preferredProducts" : [2677, 2267, 4319, 964], "productReviews" : [{"productId" : 1711, "reviewText" : "My neighbor Allean has one of these. She works as a sky diver and she says it looks weedy.", "reviewDate" : "2017-07-01T12:14:01.2899747+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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"... | {"best_index" : [680, 397, 770, 1999, 534], "auroc" : [0.607750472589792, 0.606805293005671, 0.6635160680529301, 0.6011342155009451, 0.606805293005671], "acc" : [0.6086956521739131, 0.6086956521739131, 0.5, 0.6086956521739131, 0.6086956521739131], "aps" : [0.5660847182586313, 0.5660847182586313, 0.6063598626712231, 0.5... | json_instruct | {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "a... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "deploy_sql": {"type": "string"}, "verify_sql": {"type": "string"}, "verify_expects": {"type": "array", "items": {"type": "array", "items": {"type": "intege... | [{"name" : "insert into foo", "deploy_sql" : "INSERT INTO foo VALUES (1, 2)", "verify_sql" : "SELECT COUNT(*) FROM foo", "verify_expects" : [[1]], "dependencies" : ["create table foo"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "deploy_sql": {"type": "string"}, "verify_sql": {"type": "string"}, "verify_expects": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "re... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"to": {"type": "object", "properties": {"startLine": {"type": "integer"}, "startColumn": {"type... | [{"outputFile" : "/home/alex/Desktop/to_sanitize/PortolApp-Android/AndroidApp2.0/layouts/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml", "map" : [{"to" : {"startLine" : 9, "startColumn" : 4, "startOffset" : 1346, "endColumn" : 58, "endOffset" : 1400}, "from" : {"file" : "/home/alex/De... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"to": {"type": "object", "properties": {"startLine": {"type": "integer"}, "startColumn": {"type": "integer"}, "startOffset": {"type": "integer"}, "endColumn"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ... | {"type" : "FeatureCollection", "features" : {"type" : "Feature", "properties" : {"name" : "\u57ce\u53a2\u533a", "id" : "350302"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[118.967203398438, 25.5779982734376], [118.953883085938, 25.5392067695312], [118.977345, 25.533843], [118.98142703125, 25.5079274726... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type"... |
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"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "websocket": {... | {"name" : "esp8266-iotjs", "version" : "0.0.4", "description" : "Package for control Esp8266 (with loaded ESP8266 olimex IoT firmware ) over WebSocket.", "main" : "index.js", "dependencies" : {"express" : "^4.13.3", "websocket" : "^1.0.22"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "websocket": {"type": "string"}}, "required": ["express", "websocket"]}, "devDepend... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001354": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, ... | {"type" : "Topology", "objects" : {"E01001354" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00006716", "LAD11CD" : "E09000009"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01001354": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"resources": {"type": "object", "properties": {"data": {"type": "object", "properties": {"resources": {"type": "string"}}, "requi... | {"config" : {"step" : {"resources" : {"data" : {"resources" : "\u8d44\u6e90"}}, "user" : {"data" : {"username" : "\u7528\u6237\u540d"}}}}, "options" : {"error" : {"cannot_connect" : "\u8fde\u63a5\u5931\u8d25", "unknown" : "\u4e0d\u5728\u9884\u671f\u5185\u7684\u9519\u8bef"}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"resources": {"type": "object", "properties": {"data": {"type": "object", "properties": {"resources": {"type": "string"}}, "required": ["resources"]}}, "required": ["data"]}, "user": {"type": "object"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "re... | {"id" : "2f23bf46-eea1-4558-8d46-54c867f65d76", "name" : "Development", "values" : [{"key" : "BiometricApiUrl", "value" : "http://localhost:49236", "enabled" : true}, {"key" : "PersonId", "value" : "", "enabled" : false}, {"key" : "AccessToken", "value" : "", "enabled" : false}, {"key" : "UserId", "value" : "", "enable... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"parent": {"type": "string"}, "stub": {"type": "string"}, "type": {"type": "string"}}, "required": ["parent", "stub", "type"]}, "info": {"type": "object", "properties": {"name": {"type"... | {"meta" : {"parent" : "whipps_ledges", "stub" : "o_wall", "type" : "region"}, "info" : {"name" : "O-wall"}} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"parent": {"type": "string"}, "stub": {"type": "string"}, "type": {"type": "string"}}, "required": ["parent", "stub", "type"]}, "info": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["meta", ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cytoscape.esm.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}, "cytoscape.umd.js": {"type": "string"}}, "required": ["cytoscape.esm.js", "cytoscape.min.js", "cytoscape.umd.js"], "$schema": "http://... | {"cytoscape.esm.js" : "sha256-xh+0+tGgyg4ii/2jJxyFAXk20QxdorfcEaeZcKZTDPU=", "cytoscape.min.js" : "sha256-K6FGD6tqGrGTOGMAJLDqbbtXwCgz4Evfy3bVfGeVzy8=", "cytoscape.umd.js" : "sha256-7V9AT9xF35cAtxH9H1hdQPq0yqL1jjVDv9x2sbAyMVs="} | json_instruct | {"type": "object", "properties": {"cytoscape.esm.js": {"type": "string"}, "cytoscape.min.js": {"type": "string"}, "cytoscape.umd.js": {"type": "string"}}, "required": ["cytoscape.esm.js", "cytoscape.min.js", "cytoscape.umd.js"], "$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"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "strin... | {"name" : "@saralsms/sdk-for-node", "version" : "1.0.2", "description" : "SaralSMS SDK for the JavaScript and Node.js applications.", "homepage" : "https://saralsms.com", "license" : "MIT", "author" : {"name" : "Madan Sapkota", "email" : "code@madansapkota.com", "url" : "https://madansapkota.com"}, "repository" : {"url... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-yahoo-suggest": {"type": "object", "properties": {"1.1": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "str... | {"packages" : {"wpackagist-plugin/wp-yahoo-suggest" : {"1.1" : {"name" : "wpackagist-plugin/wp-yahoo-suggest", "version" : "1.1", "version_normalized" : "1.1.0.0", "uid" : 439393, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/wp-yahoo-suggest.zip?timestamp=1333135981"}, "source" : {"type" : ... | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-yahoo-suggest": {"type": "object", "properties": {"1.1": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["name", "amount"]}}, "total": {"type": "integer"}}, "required": ["products", "... | {"products" : [{"name" : "p1", "amount" : 1000}, {"name" : "p2", "amount" : 2000}, {"name" : "p3", "amount" : 3000}], "total" : 3} | json_instruct | {"type": "object", "properties": {"products": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["name", "amount"]}}, "total": {"type": "integer"}}, "required": ["products", "total"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": ... | {"stationId" : 9991324, "stationGroupId" : 9991324, "name" : "\u89b3\u5149\u901a", "lineId" : 99913, "zipCode" : "850-0853", "pref" : "\u9577\u5d0e\u770c", "city" : "\u9577\u5d0e\u5e02", "town" : "\u6d5c\u753a", "longitude" : 129.877775, "latitude" : 32.743483, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type":... | {"id" : 4545, "title" : "Ticket #4545: condor_submit permits syntatically invalid Requirements", "description" : "<blockquote>\nIt appears that condor_submit doesn't check the validity of the Requirements expression until __after__ it modifies it. Thus, the following submit-file line\n\n<p></p><div class=\"verbatim\">... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type": "string"}, "type": {"type": "string"}, "last_change": {"type": "stri... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"ty... | {"manifest_version" : 2, "name" : "Ping", "description" : "This extension pings web sites!", "version" : "0.5", "icons" : {"48" : "img/icon48.png", "128" : "img/icon128.png"}, "background" : {"page" : "bgIndex.html"}, "browser_action" : {"default_icon" : "img/icon.png", "default_popup" : "index.html"}, "permissions" : ... | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"48": {"type": "string"}, "128": {"type": "string"}}, "required": ["48", "128"]}, "background": {"type": "ob... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.