input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": ... | {"name" : "demo.socialquantum", "version" : "0.0.1", "ignore" : ["**/.*", "node_modules", "bower_components"], "dependencies" : {"bootstrap" : "~3.3.6", "angular" : "~1.5", "restangular" : "~1.5.1", "angular-ui-router" : "~1.0", "angular-xeditable" : "^0.6.0", "angular-ui-mask" : "^1.8.7"}, "resolutions" : {"angular" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "restangular": {"type": "string"}, "angular-ui-router":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Izhmash AK bakelite pistol grip (6P4 Sb.8V)", "ShortName" : "6P4 Sb.8V", "Description" : "Izhmash bakelite pistol grip for AK and compatible weapon systems."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$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"}}, "required": ["title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Fjernbetjening"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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": "... | {"author" : {"id" : "t2_4w0js9am", "name" : "SLMumby"}, "date" : {"day" : 1632873600, "full" : 1632920420, "month" : 1630454400, "week" : 1632614400}, "id" : "t3_pxuvkc", "picture" : {"filesize" : 131782, "fullUrl" : "https://preview.redd.it/8x3o222vwfq71.jpg?auto=webp&s=872e5f33e74c01d417fbb24738fd618003f8aa5c", "hash... | 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"}},... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type"... | {"id" : 1061148, "name" : "CWE-1098 - Data Element containing Pointer Item without Proper Copy Control Element", "href" : "AIP/technical-criteria/1061148", "description" : "The code contains a data element with a pointer that does not have an associated copy or constructor method.", "qualityRules" : {"name" : "Quality ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"nom": {"type": "string"}, "prenom": {"type": "string"}, "listNotes": {"type": "array", "items": {"type": "integer"}}}, "required": ["nom", "prenom", "listNotes"]}, "$schema": "http://json-... | [{"nom" : "aaaaa", "prenom" : "aaaaa", "listNotes" : [1, 2]}, {"nom" : "bezos", "prenom" : "jeff", "listNotes" : [1, 2, 2]}, {"nom" : "Cros", "prenom" : "Guilhem", "listNotes" : [1, 1, 2]}, {"nom" : "reso", "prenom" : "test", "listNotes" : [2, 1, 2]}, {"nom" : "resooo", "prenom" : "test", "listNotes" : [1, 1, 2]}, {"no... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"nom": {"type": "string"}, "prenom": {"type": "string"}, "listNotes": {"type": "array", "items": {"type": "integer"}}}, "required": ["nom", "prenom", "listNotes"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"processes": {"type": "object", "properties": {"queue": {"type": "string"}}, "required": ["queue"]}}, "required": ["processes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"processes" : {"queue" : "[1,2,3]"}} | json_instruct | {"type": "object", "properties": {"processes": {"type": "object", "properties": {"queue": {"type": "string"}}, "required": ["queue"]}}, "required": ["processes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier",... | {"identifier" : "OPTIDXBANKNIFTY26-05-2022PE30400.00", "name" : "BANKNIFTY", "grapthData" : [[1646731105000, 0], [1646731195000, 0], [1646731500000, 0], [1646731530000, 0], [1646731704000, 0], [1646731760000, 0], [1646733873000, 0], [1646734003000, 0], [1646734442000, 0], [1646734952000, 0], [1646735781000, 0], [164673... | json_instruct | {"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedCommen... | {"WorkItem" : {"AffectedComponent" : {"Name" : "", "DisplayName" : ""}, "ClosedComment" : "", "ClosedDate" : null, "CommentCount" : 0, "Custom" : null, "Description" : "I have a problem with the RowEndEditing Event in the DataGrid. I use this event in order to save the changes made by the user in the database. After pa... | json_instruct | {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "null"}, "CommentCount"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "intege... | {"slug" : "influxcoin", "title" : "Influxcoin", "parent_slug" : null, "path" : "influxcoin", "repoCount" : 1, "userCount" : 1, "popularity" : 24} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_aft... | {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "142.93.175.29.nip.io", "min_cert_id" : 1106585468, "min_entry_timestamp" : "2019-01-13T12:23:14.67", "not_before" : "2019-01-13T11:23:13", "not_after" : "2019-04-13T11:23:13"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], ... | {"Time" : "2021-05-20T04:00:00Z", "Temp" : 21.6, "RelHum" : 82, "WindSpeed" : 2.5, "WindDir" : 257} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "details": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}}, "required": ["description", "details", "website"], "$schema": "http://json-schema.org/draf... | {"description" : "Version control system.", "details" : ["The most used version control system. Not to be confused with github (which uses git)."], "website" : "https://git-scm.com/"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "details": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}}, "required": ["description", "details", "website"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "proper... | {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.511788, 50.956913]}, "properties" : {"listed-building" : "1027343", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1027343", "start-date" : "1980-05-09", "listed-building-grade" : "II", "name" : "FORGE COTTAGES",... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building": {"type": "strin... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type"... | {"uuid" : "37e9c015-2496-49dd-b72f-53a2e943259c", "name" : "Default test", "children" : ["336601b1-689f-4327-8a44-176bd758c50a"], "befores" : [], "afters" : [], "links" : [], "start" : 1586244954962, "stop" : 1586245039905} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "author": {"type": "array", "items": {"type": "object", "properties": {"family": {"type": "string"}, "given": {"type": "string"}}, "required": ["family", "given"]}}, "issued":... | {"type" : "article-journal", "id" : "https://doi.org/10.1136/gutjnl-2017-314607", "author" : [{"family" : "Lin", "given" : "De-Chen"}, {"family" : "Dinh", "given" : "Huy Q"}, {"family" : "Xie", "given" : "Jian-Jun"}, {"family" : "Mayakonda", "given" : "Anand"}, {"family" : "Silva", "given" : "Tiago Chedraoui"}, {"famil... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "author": {"type": "array", "items": {"type": "object", "properties": {"family": {"type": "string"}, "given": {"type": "string"}}, "required": ["family", "given"]}}, "issued": {"type": "object", "properties": {"date-parts": {"type":... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"... | {"categories" : ["Networking", "Security"], "desc" : "\n", "details" : {"authors" : "Michael Cross", "format" : "pdf", "isbn-10" : "1597499862", "isbn-13" : "978-1597499866", "pages" : "346 pages", "publication date" : "November 29, 2013", "publisher" : "Syngress", "size" : "10.00Mb"}, "img" : "http://23.95.221.108/cov... | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2cfa915a80d4b044a14df69261cd109106c5fc28"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["browserify-banner", "readdir-enhanced", "simplifyify", "sourcemapify", "static-mock-data"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["./fonts/google/noto-sans-gothic/files/noto-sans-gothic-gothic-400-normal.woff", "./fonts/google/noto-sans-gothic/files/noto-sans-gothic-gothic-400-normal.woff2", "./fonts/google/noto-sans-gothic/files/noto-sans-gothic-all-400-normal.woff"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$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": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "... | [{"results" : [{"tech" : 4, "pts" : 147, "connections" : 42396, "capacity" : 1884295, "investments" : 5937119}, {"tech" : 3, "pts" : 5301, "connections" : 97167, "capacity" : 6174876, "investments" : 33961905}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sch... | {"word" : "Outhit", "definitions" : ["Surpass (someone) in hitting; hit a higher score than."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"tfx": {"type": "string"}, "tfx-create": {"type": "string"}}, "required": ["tfx", "tfx-create"]}, "devDependencies": {"type": "object", "properties": {"tfx-cli": {"ty... | {"scripts" : {"tfx" : "tfx", "tfx-create" : "tfx extension create --manifest-globs vss-extension.json"}, "devDependencies" : {"tfx-cli" : "^0.9.3"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"tfx": {"type": "string"}, "tfx-create": {"type": "string"}}, "required": ["tfx", "tfx-create"]}, "devDependencies": {"type": "object", "properties": {"tfx-cli": {"type": "string"}}, "required": ["tfx-cli"]}}, "required": ["scripts", "devDep... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de"... | {"id" : 1500, "category" : {"name" : "Items", "subset" : "Items"}, "help" : {"de" : "Die Anima-Waffen \u201ehyperleitendes Verethragna\u201c erhalten.", "en" : "Obtain a pair of hyperconductive Verethragna.", "fr" : "Obtenir les Verethragna hyperconducteurs.", "jp" : "\u30a6\u30eb\u30b9\u30e9\u30b0\u30ca\u30fb\u30b3\u3... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"status": {"type": "string"}, "knowledge": {"type": "array", "items": {"type": "string"}}, "degree_of_difficulty": {"type": "integer"}, "explain": {"type": "string"}, "question": {"type": "string"}, "source": {"type": "strin... | {"status" : "ok", "knowledge" : ["\u865a\u62df\u5185\u5b58\u7ba1\u7406"], "degree_of_difficulty" : 1, "explain" : "A \u9875\u8868\u9879\u7684P bit\u4e3a0\uff0c\u8868\u793a\u6b64\u9875\u4e0d\u5b58\u5728\n", "question" : "lab3\u4e2d\u8bbf\u95ee\u201c\u5408\u6cd5\u201d\u865a\u62df\u9875\u4ea7\u751f\u7f3a\u9875\u5f02\u5e38... | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "knowledge": {"type": "array", "items": {"type": "string"}}, "degree_of_difficulty": {"type": "integer"}, "explain": {"type": "string"}, "question": {"type": "string"}, "source": {"type": "string"}, "answer": {"type": "string"}, "type": {"type": "string"},... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "object", "properties": ... | {"name" : "passport-draugiem", "version" : "0.0.5", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"node-fetch" : {"version" : "2.6.1", "resolved" : "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", "integrity" : "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiF... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "str... |
Construct a JSON document that adheres to this schema specification:
{"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" : "Guitt\u00e9", "circ" : "2\u00e8me circonscription", "dpt" : "C\u00f4tes-d'Armor", "inscrits" : 486, "abs" : 246, "votants" : 240, "blancs" : 15, "nuls" : 7, "exp" : 218, "res" : [{"nuance" : "REM", "nom" : "M. Herv\u00e9 BERVILLE", "voix" : 142}, {"nuance" : "LR", "nom" : "M. Didier D\u00c9RU", "voix" : 76}]} | 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"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01001263": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}... | {"type" : "Topology", "objects" : {"W01001263" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "W00006625", "LAD11CD" : "W06000016"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properti... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"W01001263": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appDesc": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["appDesc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appDesc" : {"message" : "Align to the left"}} | json_instruct | {"type": "object", "properties": {"appDesc": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["appDesc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Installation": {"type": "object", "properties": {"DatabaseSetupAdapter": {"type": "string"}, "DatabaseSetupLogin": {"type": "string"}}, "required": ["DatabaseSetupAdapter", "DatabaseSetupLogin"]}}, "required": ["Ins... | {"Installation" : {"DatabaseSetupAdapter" : "Adapter", "DatabaseSetupLogin" : "Prijavi se"}} | json_instruct | {"type": "object", "properties": {"Installation": {"type": "object", "properties": {"DatabaseSetupAdapter": {"type": "string"}, "DatabaseSetupLogin": {"type": "string"}}, "required": ["DatabaseSetupAdapter", "DatabaseSetupLogin"]}}, "required": ["Installation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"t... | {"author" : {"id" : "t2_16vdzt", "name" : "Shaedeelady"}, "date" : {"day" : 1613779200, "full" : 1613792824, "month" : 1612137600, "week" : 1613260800}, "id" : "t3_lnyff1", "picture" : {"filesize" : 63039, "fullUrl" : "https://preview.redd.it/mwt8oy331ki61.jpg?width=4032&format=pjpg&auto=webp&s=f803d5686d91ec18b65adae7... | 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"}},... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build"... | {"name" : "vite-react-stitches-radix", "version" : "0.0.1", "scripts" : {"dev" : "vite", "build" : "vite build", "serve" : "vite preview"}, "dependencies" : {"@modulz/radix-icons" : "^4.0.0", "@radix-ui/colors" : "^0.1.8", "@radix-ui/react-tooltip" : "^0.1.2", "@stitches/react" : "^1.2.6", "react" : "^17.0.0", "react-d... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@modu... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}... | {"id" : 44676200, "ot" : 3, "alias" : 0, "setcode" : 0, "type" : 4, "atk" : 0, "def" : 0, "level" : 0, "race" : 0, "attribute" : 0, "category" : 0, "name" : "Hero Barrier", "desc" : "Negate 1 attack from an opponent's monster. You must control a face-up \"Elemental HERO\" monster to resolve this effect.", "str1" : "", ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "int... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"stats/effects/fu_armoreffects/new/set_bonuses/tier2/diplomatsetbonus.statuseffect": ... | [{"DeniedAlternatives" : [], "Files" : {"stats/effects/fu_armoreffects/new/set_bonuses/tier2/diplomatsetbonus.statuseffect" : ["/label"]}, "Texts" : {"Chs" : "+25%\u9b45\u529b\uff0c+25%\u7cbe\u795e\u6297\u6027\uff0c\u523a\u5251/\u624b\u67aa\uff1a+7.5%\u4fdd\u62a4", "Eng" : "+25% Charisma, +25% Mental Protection, Rapier... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"stats/effects/fu_armoreffects/new/set_bonuses/tier2/diplomatsetbonus.statuseffect": {"type": "array", "items": {"type": "string"}}}, "required": ["stats/effects/... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin... | {"schema_version" : "1.2.0", "id" : "GHSA-8wpc-4pc2-9f8f", "modified" : "2022-04-30T18:17:20Z", "published" : "2022-04-30T18:17:20Z", "aliases" : ["CVE-2001-1094"], "details" : "NetOp School 1.5 allows local users to bypass access restrictions on the administration version by logging into the student version, closing t... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ubi-flasher"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"ty... | {"name" : "Elina", "version" : "0.4.0", "summary" : "Joke pod for pranking", "description" : "Elina-nyan is kawaii. Why? because Elina-nyan is kawaii.", "homepage" : "https://github.com/Cyanide7523/Elina", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Cyanide7523" : "ffasang123@icloud.com"}, "source" ... | 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"... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "javaInterfaces": {"type": "array", "items... | {"$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "AWS_KinesisAnalyticsV2_ApplicationReferenceDataSource.MappingParameters.schema.json", "title" : "ApplicationReferenceDataSourceMappingParameters", "description" : "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyti... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "javaType": {"type": "string"}, "javaInterfaces": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "prop... |
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" : "Nivnico96", "scores" : [{"xp" : 7855, "rank" : 276, "cardId" : 407}, {"xp" : 3541, "rank" : 283, "cardId" : 572}]} | 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... |
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" : "var _jsxFileName = \"/media/beni/Work1/git/github/reactPersonalWebsite/src/components/body/skills/skill-card.js\";\nimport React from \"react\";\nimport \"./skill-card.css\";\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nfunction SkillCard({\n skill\n}) {\n return /*#__PURE... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["130423100000", "\u4e34\u6f33\u9547", "4", "1"], ["130423101000", "\u5357\u4e1c\u574a\u9547", "4", "1"], ["130423102000", "\u5b59\u9676\u96c6\u9547", "4", "1"], ["130423103000", "\u67f3\u56ed\u9547", "4", "1"], ["130423104000", "\u79f0\u52fe\u96c6\u9547", "4", "1"], ["130423105000", "\u90ba\u57ce\u9547", "4", "1"], [... | json_instruct | {"type": "array", "items": {"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": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}... | {"expireTime" : 9007200810964387000, "key" : "08b6ebcd-888a-5148-84f4-7be704e155a5{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"toFormat\":\"jpg\",\"toFormatBase64\":\"\",\"width\":20,\"height\":14}", "val" : {"src" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG... | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "wi... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "sort": {"type": "string"}, "templates": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "sort", "templates"], "$schema": "http://json-schema.org/draft-07/schema#... | {"title" : "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "sort" : "110", "templates" : ["select.html"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "sort": {"type": "string"}, "templates": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "sort", "templates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/fre... | {"name" : "cnu-6-2018-react", "version" : "0.1.0", "private" : true, "dependencies" : {"@fortawesome/fontawesome-svg-core" : "^1.2.0-14", "@fortawesome/free-regular-svg-icons" : "^5.1.0-11", "@fortawesome/free-solid-svg-icons" : "^5.1.0-11", "@fortawesome/react-fontawesome" : "^0.1.0-11", "bootstrap" : "4.1.1", "immuta... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-regular-svg-icons": {"type": "string"}, "@fortawesome/free-solid-svg-... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}... | {"schema_version" : "1.2.0", "id" : "GHSA-68r5-44xv-q47r", "modified" : "2022-05-02T03:49:44Z", "published" : "2022-05-02T03:49:44Z", "aliases" : ["CVE-2009-3901"], "details" : "Multiple cross-site scripting (XSS) vulnerabilities in e-Courier CMS allow remote attackers to inject arbitrary web script or HTML via the Use... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"editor.quickSuggestions": {"type": "object", "properties": {"other": {"type": "boolean"}, "comments": {"type": "boolean"}, "strings": {"type": "boolean"}}, "required": ["other", "comments", "strings"]}, "python.an... | {"editor.quickSuggestions" : {"other" : true, "comments" : true, "strings" : false}, "python.analysis.extraPaths" : ["./sources"]} | json_instruct | {"type": "object", "properties": {"editor.quickSuggestions": {"type": "object", "properties": {"other": {"type": "boolean"}, "comments": {"type": "boolean"}, "strings": {"type": "boolean"}}, "required": ["other", "comments", "strings"]}, "python.analysis.extraPaths": {"type": "array", "items": {"type": "string"}}}, "re... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"status": {"type": "string"}, "count": {"type": "integer"}, "income": {"type": "number"}, "commission": {"type": "number"}, "cleared": {"type": "number"}}, "required": ["status", "coun... | [{"status" : "paid", "count" : 2, "income" : 35.5, "commission" : 8.8, "cleared" : 4.2}, {"status" : "left", "count" : 23, "income" : 0.0, "commission" : 0.0, "cleared" : 0.0}, {"status" : "trying", "count" : 30, "income" : 0.0, "commission" : 0.0, "cleared" : 0.0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"status": {"type": "string"}, "count": {"type": "integer"}, "income": {"type": "number"}, "commission": {"type": "number"}, "cleared": {"type": "number"}}, "required": ["status", "count", "income", "commission", "cleared"]}, "$schema": "http://json-schema.org... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/sche... | {"_id" : "5dd800bde492226366631335", "_tpl" : "5c793fde2e221601da358614", "parentId" : "5dd800bde492226366631334", "slotId" : "mod_stock"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["descri... | {"latest_version" : ["0.1.7"], "meta" : {"description" : "A representation of an organization", "homepage" : "http://svn.plone.org/svn/plone/plone.example", "license" : "GPL"}, "versions" : {"0.1" : {"sha256" : "8d393f21bbdd556bbbce615d5fb5e69b6878bfa0e0c6dff5cc273fc622240b45", "url" : "https://files.pythonhosted.org/p... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"entryPoints": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "mode"]}}, "types": {"type": "object", "properties": {"_89": {"type": "obje... | {"entryPoints" : [{"name" : "main", "mode" : "vert"}], "types" : {"_89" : {"name" : "gl_PerVertex", "members" : [{"name" : "gl_Position", "type" : "vec4"}, {"name" : "gl_PointSize", "type" : "float"}]}, "_102" : {"name" : "Block", "members" : [{"name" : "var", "type" : "mat2x3", "array" : [4, 3], "array_size_is_literal... | json_instruct | {"type": "object", "properties": {"entryPoints": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "mode"]}}, "types": {"type": "object", "properties": {"_89": {"type": "object", "properties": {"name": {"type": "string"}, "members"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"0-9": {"type": "integer"}, "10-19": {"type": "integer"}, "20-29": {"type": "integer"}, "30-39": {"type": "integer"}, "40-49": {"type": "integer"}, "50-59": {"type": "integer"}, "60-69": {"type": "integer"}, "70-79... | {"0-9" : 1, "10-19" : 6, "20-29" : 31, "30-39" : 41, "40-49" : 123, "50-59" : 256, "60-69" : 576, "70-79" : 1117, "80+" : 2538} | json_instruct | {"type": "object", "properties": {"0-9": {"type": "integer"}, "10-19": {"type": "integer"}, "20-29": {"type": "integer"}, "30-39": {"type": "integer"}, "40-49": {"type": "integer"}, "50-59": {"type": "integer"}, "60-69": {"type": "integer"}, "70-79": {"type": "integer"}, "80+": {"type": "integer"}}, "required": ["0-9",... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string... | {"name" : "Grundschule Pye", "id" : "NI-19203-0", "address" : "Am Stollenbach 3, 49090\u00a0Osnabr\u00fcck", "school_type" : "Grundschule", "phone" : "0541 124209", "full_time_school" : false, "email" : "gs-pye@schulmail-os.de", "programs" : {"programs" : []}, "state" : "NI", "lon" : 7.995168, "lat" : 52.321131} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "licence": {"... | {"name" : "kakahiaka", "version" : "0.1.2", "author" : "Minori Yamashita <ympbyc@gmail.com>", "description" : "Nothing else but Flux", "main" : "kakahiaka.js", "moduleType" : ["globals"], "licence" : "MIT", "ignore" : ["**/.*", "node_modules", "components", "bower_components"], "dependencies" : {"underscore" : "*", "un... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "licence": {"type": "string"}, "ignore": {"type": "array", "items": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Agglutinin V": {"type": "string"}, "SNAV": {"type": "string"}, "LECSNAI": {"type": "string"}, "SNAI": {"type": "string"}, "Agglutinin I": {"type": "string"}, "LECSNA-If": {"type": "string"}, "SNAIf": {"type": "string"}, "P3318... | {"Agglutinin V" : "P33183", "SNAV" : "P33183", "LECSNAI" : "Q41358", "SNAI" : "Q41358", "Agglutinin I" : "O22415", "LECSNA-If" : "O22415", "SNAIf" : "O22415", "P33183" : "P33183", "NIGB_SAMNI" : "P33183", "Nigrin b" : "P33183", "P00226" : "P00226", "FER_SAMNI" : "P00226", "Ferredoxin" : "P00226", "P00062" : "P00062", "... | json_instruct | {"type": "object", "properties": {"Agglutinin V": {"type": "string"}, "SNAV": {"type": "string"}, "LECSNAI": {"type": "string"}, "SNAI": {"type": "string"}, "Agglutinin I": {"type": "string"}, "LECSNA-If": {"type": "string"}, "SNAIf": {"type": "string"}, "P33183": {"type": "string"}, "NIGB_SAMNI": {"type": "string"}, "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ... | {"ETag" : "W/\"80dce04f6d2cfac31f8c1ef27d92e705\"", "Last-Modified" : "Wed, 19 Sep 2018 12:19:14 GMT", "base" : {"repo" : {"name" : "slepc-feedstock"}}, "closed_at" : "2018-09-19T12:19:14Z", "created_at" : "2018-09-18T18:24:07Z", "head" : {"ref" : "this_is_not_a_branch"}, "html_url" : "https://github.com/conda-forge/sl... | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"entity": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "item": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["entity", "item"], "$schema": "ht... | {"entity" : [["y-tut", "ye_fassembly1"]], "item" : [["y-tut", "ye_fassembly1"]]} | json_instruct | {"type": "object", "properties": {"entity": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "item": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["entity", "item"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Script": {"type": "object", "properties": {"Directory Script": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "PathDLL": {"type": "string"}, "Type": {"type": "integer"},... | {"Script" : {"Directory Script" : "Assets/ManagerProjectile.cs", "UUID Resource" : 1367411234, "Name" : "ManagerProjectile", "PathDLL" : "Library/Scripts/1367411234.dll", "Type" : 4, "Last Write" : 1523543240}} | json_instruct | {"type": "object", "properties": {"Script": {"type": "object", "properties": {"Directory Script": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "PathDLL": {"type": "string"}, "Type": {"type": "integer"}, "Last Write": {"type": "integer"}}, "required": ["Directory Script", "UUID R... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "TALVASA", "frequency" : 1, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "Vexaincourt", "dpt" : "Vosges", "inscrits" : 132, "abs" : 32, "votants" : 100, "blancs" : 9, "nuls" : 6, "exp" : 85, "res" : [{"panneau" : "2", "voix" : 45}, {"panneau" : "1", "voix" : 40}]} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "p... | {"name" : "react-native-fullwidth-image", "version" : "0.1.3", "description" : "A responsive Image element that takes the full width of its parent element while maintaining aspect ratio.", "main" : "index.js", "keywords" : ["react-native", "react-component", "react-native-component", "react", "mobile", "ios", "android"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"0-4": {"type": "string"}, "5-17": {"type": "string"}, "18-35": {"type": "string"}, "36-49": {"type": "string"}, "50-64": {"type": "string"}, "65+": {"type": "string"}}, "required": ["0-4", "5-17", "18-35", "36-49", "50-64",... | {"0-4" : "0", "5-17" : "0", "18-35" : "6", "36-49" : "8", "50-64" : "58", "65+" : "292"} | json_instruct | {"type": "object", "properties": {"0-4": {"type": "string"}, "5-17": {"type": "string"}, "18-35": {"type": "string"}, "36-49": {"type": "string"}, "50-64": {"type": "string"}, "65+": {"type": "string"}}, "required": ["0-4", "5-17", "18-35", "36-49", "50-64", "65+"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}... | {"timestamp" : "2020-12-14T09:22:35Z", "data" : [{"data_type" : "pm10", "value" : "5.73", "max" : "6.00", "min" : "5.00", "sd" : "0.46"}, {"data_type" : "pm2.5", "value" : "5.73", "max" : "6.00", "min" : "5.00", "sd" : "0.46"}, {"data_type" : "pm1", "value" : "4.80", "max" : "5.00", "min" : "4.00", "sd" : "0.41"}, {"da... | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "createdAt": {"type": "string"}, "expiresAt": {"type": "string"}, "space": {"type": "object", "properties": {"sys": {"type": "object", "properties": {"type": {"type": "st... | {"id" : "kGrVn541RH6UzTOCojFqo", "type" : "Upload", "createdAt" : "2018-08-01T08:19:42Z", "expiresAt" : "2018-08-03T00:00:00Z", "space" : {"sys" : {"type" : "Link", "linkType" : "Space", "id" : "pmgjoasidv3w"}}, "createdBy" : {"sys" : {"type" : "Link", "linkType" : "User", "id" : "1CECdY5ZhqJapGieg6QS9P"}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "createdAt": {"type": "string"}, "expiresAt": {"type": "string"}, "space": {"type": "object", "properties": {"sys": {"type": "object", "properties": {"type": {"type": "string"}, "linkType": {"type": "string"}, "id": {"type": "string... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"arguments": {"type": "object", "properties": {"argument_name": {"type": "object", "properties": {"name": {"type": "string"}, "is_required": {"type": "boolean"}, "is_array": {"type": "boolean"}, "description": {"type": "string"},... | {"arguments" : {"argument_name" : {"name" : "argument_name", "is_required" : true, "is_array" : false, "description" : "", "default" : null}}, "options" : {"option_name" : {"name" : "--option_name", "shortcut" : "-o", "accept_value" : false, "is_value_required" : false, "is_multiple" : false, "description" : "", "defau... | json_instruct | {"type": "object", "properties": {"arguments": {"type": "object", "properties": {"argument_name": {"type": "object", "properties": {"name": {"type": "string"}, "is_required": {"type": "boolean"}, "is_array": {"type": "boolean"}, "description": {"type": "string"}, "default": {"type": "null"}}, "required": ["name", "is_r... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ... | {"short_name" : "CARS NFTs", "name" : "MINT CARS NFTs", "icons" : [{"src" : "icon_72x72.png", "sizes" : "72x72", "type" : "image/png"}], "start_url" : ".", "display" : "standalone", "theme_color" : "#000000", "background_color" : "#ffffff"} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ledgerCreateSubText": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "newLocalWallet": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]},... | {"ledgerCreateSubText" : {"message" : "Pod\u0142\u0105cz portfel Ledger, aby korzysta\u0107 z dApps i dokona\u0107 transakcje do innych pod\u0142\u0105czonych portfeli."}, "newLocalWallet" : {"message" : "Nowy portfel lokalny"}, "newLocalWalletSubText" : {"message" : "Utw\u00f3rz nowy, lokalny portfel Brave, aby korzys... | json_instruct | {"type": "object", "properties": {"ledgerCreateSubText": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "newLocalWallet": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "newLocalWalletSubText": {"type": "object", "properties": {"m... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit... | {"derivation" : "from H6031 (\u05e2\u05b8\u05e0\u05b8\u05d4);", "pron" : "en-ooth'", "outline" : "<ol><li> affliction</li></ol>", "kjv_def" : "affliction.", "lemma" : "\u05e2\u05b1\u05e0\u05d5\u05bc\u05ea", "frequency" : 1, "strongs_def" : "affliction", "xlit" : "\u02bb\u0115n\u00fbwth"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Microsoft": {"type": "object", "properties": {"domain": {"type": "string"}, "tfa": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}, "keywords": {"type": "array", "items": {"type": ... | {"Microsoft" : {"domain" : "microsoft.com", "tfa" : ["teachers", "students"], "documentation" : "https://www.microsoft.com/en-us/store/b/education", "keywords" : ["tech", "cloud", "retail"]}} | json_instruct | {"type": "object", "properties": {"Microsoft": {"type": "object", "properties": {"domain": {"type": "string"}, "tfa": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["domain", "tfa", "documentation", "keywords... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}... | {"uuid" : "fc4abada-630c-4cd2-befb-8fa3eff0c8da", "children" : ["4dd943df-e694-482a-8d3c-bfe1539a8b89"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1618251251687, "stop" : 1618251251758}], "start" : 1618251251687, "stop" : 1618251251767} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "require... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Id": {"type": "string"}, "ParentId": {"type": "string"}, "Price": {"type": "integer"}}, "required": ["Id", "ParentId", "Price"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "5ab8f85d86f7745cd93a1cf5", "ParentId" : "5b47574386f77428ca22b32f", "Price" : 4258} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "ParentId": {"type": "string"}, "Price": {"type": "integer"}}, "required": ["Id", "ParentId", "Price"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "input": {"type": "string"}, "fluid": {"type": "object", "properties": {"tag": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["tag", "amount"]}, "temperature": {"type": "integer"}, ... | {"type" : "tconstruct:material_fluid", "input" : "tconstruct:necrotic_bone", "fluid" : {"tag" : "tconstruct:blazing_blood", "amount" : 200}, "temperature" : 1500, "output" : "tconstruct:blazing_bone"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "input": {"type": "string"}, "fluid": {"type": "object", "properties": {"tag": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["tag", "amount"]}, "temperature": {"type": "integer"}, "output": {"type": "string"}}, "required": ["type", "input"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {... | {"t" : "patiwtiwen", "h" : [{"d" : [{"f" : "\u7d66\u2026\u591a\u7d66\u4e00\u9ede\u3001\u8acb\u591a\u7d66\u3002", "e" : ["\ufff9`Pa~`tiwtiwen~ `kora~ `wawa~ `a~ `pafeli~ `to~ `'odax~.\ufffa\ufffb\u591a\u7d66\u90a3\u500b\u5b69\u5b50\u4e00\u9ede\u7cd6\u3002"]}]}], "stem" : "tiwtiw"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"xbox" : 50068, "ps" : 36556} | json_instruct | {"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required"... | {"latest_version" : ["0.7"], "meta" : {"description" : "PSD support for Pymaging", "homepage" : "https://github.com/kmike/pymaging-psd", "license" : "MIT License"}, "versions" : {"0.5" : {"sha256" : "5681864154a292918ef9f5056cf0a4a1e45775634012404aa043b9dc24a75d72", "url" : "https://files.pythonhosted.org/packages/6e/d... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["340203007002", "\u77f3\u784a\u5c45\u59d4\u4f1a", "112", "0"], ["340203007200", "\u767d\u9a6c\u6751\u59d4\u4f1a", "112", "0"], ["340203007201", "\u5854\u5f71\u6751\u59d4\u4f1a", "111", "0"], ["340203007202", "\u4e49\u5174\u6751\u59d4\u4f1a", "112", "0"], ["340203007203", "\u65b0\u4e49\u6751\u59d4\u4f1a", "112", "0"],... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources"... | {"title" : "Sweden - External Debt", "downloads" : 94, "tags" : ["economics", "hxl", "indicators", "Sweden"], "hxl" : 1, "org" : "World Bank Group", "id" : "fd92c6ac-830a-4d21-bcbe-0b9c42a9e891", "resources" : [{"update_date" : "2021-01-31T22:16:20.589015", "link" : "https://data.humdata.org/dataset/fd92c6ac-830a-4d21-... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"GF_SERVER_ROOT_URL": {"type": "string"}, "GF_AUTH_AZUREAD_CLIENT_ID": {"type": "string"}, "GF_AUTH_AZUREAD_CLIENT_SECRET": {"type": "string"}, "GF_AUTH_AZUREAD_AUTH_URL": {"type": "string"}, "GF_AUTH_AZUREAD_TOKEN_U... | {"GF_SERVER_ROOT_URL" : "https://__1__.azurewebsites.net", "GF_AUTH_AZUREAD_CLIENT_ID" : "__2__", "GF_AUTH_AZUREAD_CLIENT_SECRET" : "__3__", "GF_AUTH_AZUREAD_AUTH_URL" : "https://login.microsoftonline.com/__4__/oauth2/v2.0/authorize", "GF_AUTH_AZUREAD_TOKEN_URL" : "https://login.microsoftonline.com/__4__/oauth2/v2.0/to... | json_instruct | {"type": "object", "properties": {"GF_SERVER_ROOT_URL": {"type": "string"}, "GF_AUTH_AZUREAD_CLIENT_ID": {"type": "string"}, "GF_AUTH_AZUREAD_CLIENT_SECRET": {"type": "string"}, "GF_AUTH_AZUREAD_AUTH_URL": {"type": "string"}, "GF_AUTH_AZUREAD_TOKEN_URL": {"type": "string"}, "GF_AUTH_AZUREAD_ENABLED": {"type": "boolean"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "req... | {"id" : 453, "url" : "https://minefi.hosting.augure.com/Augure_Minefi/r/ContenuEnLigne/Download?id=1B9C84AA-9E97-4EB3-881D-016318C0A293&filename=1847%20-%20NAR%20-%20D%C3%A9claration%20%C3%A0%20l%27occasion%20de%20la%20cl%C3%B4ture%20de%20la%20p%C3%A9riode%20de%20souscription%20des%20actions%20de%20La%20Fran%C3%A7aise%... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "required": ["id", "url", "author", "title", "text", "published_date", "sec... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "strin... | {"t" : "amahen", "h" : [{"d" : [{"f" : "\u653e\u8f15\u9ede\u3002", "e" : ["\ufff9`Amah~`e~`n~ `a~ `romakat~!\ufffa\ufffb\u8d70\u8def\u8acb\u8f15\u4e00\u9ede\uff01", "\ufff9`Amah~`e~`n~ `ko~ `honi~!\ufffa\ufffb\u8072\u97f3\u8f15\u4e00\u9ede\uff01"], "s" : ["`sa~^`e~`da~`h~`e~`n~", "`sa~^`e~`ma~`h~`e~`n~", "`kahemaw~`e~`... | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}, "s": {"type": "array", "items": {"type": "string"}}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string... | {"id" : "01758", "group" : "easy-ham-1", "checksum" : {"type" : "MD5", "value" : "ace2433031b3ea150e728b34850cdceb"}, "text" : "Return-Path: skip@pobox.com\nDelivery-Date: Thu Sep 12 02:10:50 2002\nFrom: skip@pobox.com (Skip Montanaro)\nDate: Wed, 11 Sep 2002 20:10:50 -0500\nSubject: [Spambayes] Current histograms \nIn... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string"}}, "required": ["id", "group", "checksum", "text"], "$schema": "http:... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"... | {"pools" : [{"name" : "main", "entries" : [{"entryName" : "waterflasks:bladder", "weight" : 1, "quality" : 0, "type" : "item", "functions" : [{"skill" : "butchering", "tier" : "EXPERT", "rarity" : 125.0, "function" : "waterflasks:apply_req_skill"}], "name" : "waterflasks:bladder"}], "rolls" : 1.0}]} | json_instruct | {"type": "object", "properties": {"pools": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"entryName": {"type": "string"}, "weight": {"type": "integer"}, "quality": {"type": "integer"}, "type": {"type": "st... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "pennkey": {"type": "string"}, "major": {"type": "string"}, "school": {"type": "string"}, "bio": {"type": "string"}, "hometown": {"type": "string"}, "team": {"type": "string"}, "rol... | {"name" : "Matthew Rosca-Halmagean", "pennkey" : "mattrh", "major" : "Computer Science + Finance", "school" : "Engineering & Wharton", "bio" : "Hey! I'm a team lead and full stack engineer working on Penn Mobile Portal. My passions include understanding obscure blockchain applications and building products that people ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "pennkey": {"type": "string"}, "major": {"type": "string"}, "school": {"type": "string"}, "bio": {"type": "string"}, "hometown": {"type": "string"}, "team": {"type": "string"}, "roles": {"type": "array", "items": {"type": "string"}}, "photo": {"type": "strin... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stdout": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "string"}}, "required": ["line"]}}}, "required": ["stdout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stdout" : [{"line" : "test cases/failing/76 link with shared module on osx/meson.build:8:0: ERROR: target links against shared modules. This is not permitted on OSX"}]} | json_instruct | {"type": "object", "properties": {"stdout": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "string"}}, "required": ["line"]}}}, "required": ["stdout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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"}}, "... | {"n_dim" : 34, "n_trials" : 340, "objective" : "bohachevsky_on_cube", "white" : "hyperopt_atpe", "black" : "platypus_gde3", "traceback" : ["passing", "passing"], "best_val" : [336.1062953600847, 511.07028003538943], "best_x" : [[0.2761941906858212, 0.768163731197271, 0.3048949819433606, 0.37595426278737254, 0.577469181... | 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": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean... | {"name" : "luogu-motaki-heatmap", "version" : "0.0.1", "description" : "\u6d1b\u8c37\u51ac\u65e5\u7ed8\u677f\u70ed\u529b\u56fe", "repository" : "https://github.com/ouuan/luogu-motaki-heatmap", "author" : "Yufan You <ouuansteve@gmail.com> (https://github.com/ouuan)", "license" : "Apache-2.0", "private" : true, "scripts"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"lint": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"gateway_conf": {"type": "object", "properties": {"gateway_ID": {"type": "string"}, "servers": {"type": "array", "items": {"type": "object", "properties": {"server_address": {"type": "string"}, "serv_port_up": {... | {"gateway_conf" : {"gateway_ID" : "B827EBFFFE97A1D5", "servers" : [{"server_address" : "router.eu.thethings.network", "serv_port_up" : 1700, "serv_port_down" : 1700, "serv_enabled" : true}, {"server_address" : "130.255.185.100", "serv_port_up" : 1700, "serv_port_down" : 1700, "serv_enabled" : true}], "fake_gps" : true,... | json_instruct | {"type": "object", "properties": {"gateway_conf": {"type": "object", "properties": {"gateway_ID": {"type": "string"}, "servers": {"type": "array", "items": {"type": "object", "properties": {"server_address": {"type": "string"}, "serv_port_up": {"type": "integer"}, "serv_port_down": {"type": "integer"}, "serv_enabled": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_... | {"id" : "18109619", "tms:id" : "7979", "accession_number" : "1901-39-1470", "title" : "Drawing, \"Design for an Altar\", ca. 1750", "url" : "http://collection.cooperhewitt.org/objects/18109619/", "department_id" : "35347493", "period_id" : null, "media_id" : "35365701", "type_id" : "35237093", "date" : "ca. 1750", "yea... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "in... | {"id" : "img/favicon.ico", "dependencies" : [{"name" : "/Users/doit/Documents/REPOS/historic-districts/.babelrc", "includedInParent" : true, "mtime" : 1543873779433}, {"name" : "/Users/doit/Documents/REPOS/historic-districts/package.json", "includedInParent" : true, "mtime" : 1543877857809}], "generated" : {"js" : "mod... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"sn9.13:1.1": {"type": "string"}, "sn9.13:2.1": {"type": "string"}, "sn9.13:3.1": {"type": "string"}, "sn9.13:4.1": {"type": "string"}, "sn9.13:5.1": {"type": "string"}, "sn9.13:6.1": {"type": "string"}}, "requi... | {"sn9.13:1.1" : "dr15.283, ms12S1_1431, msdiv233, ndp12.205, pts-vp-pli1ed1.204, pts-vp-pli2ed1.439, sya15.300, vri23.236", "sn9.13:2.1" : "bj13.364, cck15.264, ms12S1_1432", "sn9.13:3.1" : "ms12S1_1433", "sn9.13:4.1" : "csp1ed12.206, csp2ed12.206, ms12S1_1434", "sn9.13:5.1" : "ms12S1_1435", "sn9.13:6.1" : "ms12S1_1436... | json_instruct | {"type": "object", "properties": {"sn9.13:1.1": {"type": "string"}, "sn9.13:2.1": {"type": "string"}, "sn9.13:3.1": {"type": "string"}, "sn9.13:4.1": {"type": "string"}, "sn9.13:5.1": {"type": "string"}, "sn9.13:6.1": {"type": "string"}}, "required": ["sn9.13:1.1", "sn9.13:2.1", "sn9.13:3.1", "sn9.13:4.1", "sn9.13:5.1"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "adorn:block/byg/soapstone_brick_post"} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["sta... | {"name" : "tetris", "version" : "0.0.1", "description" : "Tetris in react", "scripts" : {"start" : "parcel index.html", "build" : "parcel build index.html"}, "devDependencies" : {"@babel/core" : "^7", "babel-plugin-inferno" : "^6.0.4", "babel-preset-env" : "^1.7.0", "parcel-bundler" : "^1.10.3"}, "dependencies" : {"inf... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "devDependencies": {"type": "object", "properties": {"@... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, ... | {"course_code" : "ACCT1902D", "course_name" : "Managerial Accounting", "faculty" : "UQ College", "school" : "Business, Economics & Law Fac", "units" : "2", "duration" : "One Trimester", "description" : "Managerial Accounting is the study of the use of financial information to understand the operation and performance of... | json_instruct | {"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_... | {"id" : 123457, "name" : "Amor doce Nathaniel Bel 2.0", "description" : "Nath <3", "user" : {"id" : 310888, "name" : "Bela Troll", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2016-01-23T19:52:03.000Z", "weekly_install_count" : 0, "total_install_count" ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "alleghanian", "definition" : "Pertaining to or designating the humid division of the Transition zone extending across the northern United States from New England to eastern Dakota, and including also most of Pennsylvania and the mountainous region as far south as northern Georgia."} | 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": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["421202200003", "\u5e38\u6536\u793e\u533a", "210", "0"], ["421202200004", "\u77f3\u6865\u793e\u533a", "220", "0"], ["421202200227", "\u4e95\u5934\u6751\u59d4\u4f1a", "220", "0"], ["421202200228", "\u91d1\u9e21\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["421202200229", "\u6cc9\u5c71\u53e3\u6751\u59d4\u4f1a", "220", "0"],... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Left Lower Jaw Front": {"type": "array", "items": {"type": "string"}}, "Left Lower Jaw Top": {"type": "array", "items": {"type": "string"}}, "Left Lower Jaw Back": {"type": "array", "items": {"type": "string"}}... | {"Left Lower Jaw Front" : ["2020-07-14T21:17:40.395000+1000", "2020-07-14T21:17:48.490000+1000"], "Left Lower Jaw Top" : ["2020-07-14T21:17:48.490000+1000", "2020-07-14T21:17:55.170000+1000"], "Left Lower Jaw Back" : ["2020-07-14T21:17:55.170000+1000", "2020-07-14T21:18:02.595000+1000"], "Left Upper Jaw Front" : ["2020... | json_instruct | {"type": "object", "properties": {"Left Lower Jaw Front": {"type": "array", "items": {"type": "string"}}, "Left Lower Jaw Top": {"type": "array", "items": {"type": "string"}}, "Left Lower Jaw Back": {"type": "array", "items": {"type": "string"}}, "Left Upper Jaw Front": {"type": "array", "items": {"type": "string"}}, "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"indoor": {"type": "string... | {"icon" : "iD-highway-steps", "fields" : ["ref", "level_semi", "conveying_escalator"], "geometry" : ["area"], "tags" : {"indoor" : "room", "stairs" : "yes"}, "terms" : ["stair", "stairs", "staircase", "stairway", "stairwell", "steps"], "matchScore" : 0.8, "name" : "Indoor Stairwell"} | json_instruct | {"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"indoor": {"type": "string"}, "stairs": {"type": "string"}}, "required": ["indoor", "stairs"]}, "t... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"192.168.95.251": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.95.251": {"type": "number"}, "192.168.95.253": {"type": "number"}}, "required": ["192.168.95.251", "192.168.95.253"]}, "6h": {... | {"192.168.95.251" : {"1h" : {"192.168.95.251" : 1.0, "192.168.95.253" : 1.0}, "6h" : {"192.168.95.251" : 1.0, "192.168.95.253" : 1.0}}, "192.168.95.253" : {"1h" : {"192.168.95.251" : 1.0, "192.168.95.253" : 1.0}, "6h" : {"192.168.95.251" : 1.0, "192.168.95.253" : 1.0}}} | json_instruct | {"type": "object", "properties": {"192.168.95.251": {"type": "object", "properties": {"1h": {"type": "object", "properties": {"192.168.95.251": {"type": "number"}, "192.168.95.253": {"type": "number"}}, "required": ["192.168.95.251", "192.168.95.253"]}, "6h": {"type": "object", "properties": {"192.168.95.251": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1921, 5], [1924, 6], [1927, 6], [1986, 5], [1987, 5], [1989, 8], [1991, 7], [1992, 7], [1994, 5], [1995, 5], [1996, 7], [1997, 11], [1998, 20], [1999, 13], [2000, 21], [2001, 10], [2002, 30], [2003, 20], [2004, 12], [2005, 12], [2006, 23], [2007, 14], [2008, 20], [2009, 18], [2010, 16], [2011, 12], [2012, 14], [2013,... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]... | {"name" : "wechat-bot", "version" : "0.0.1", "description" : "", "main" : "index.js", "engines" : {"node" : ">= 12"}, "scripts" : {"start" : "node index.js"}, "author" : "", "dependencies" : {"dotenv" : "^8.2.0", "iconv-lite" : "^0.6.3", "node-schedule" : "^2.0.0", "qrcode-terminal" : "^0.12.0", "superagent" : "^6.1.0"... | 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"]}, "scripts": {"type": "object", "properties": {"start": {"type": "str... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.