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": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "retur... | {"baseObjects" : ["[242,823,403]", "[242,823,403]", "[242,823,403]", "[242,823,403,null,null,{\"823\":1.2214339291359119e+308,\"`Y;\":8.399354162065999e+307,\"X\":1.3293962399159944e+307,\"\":7.173490483849331e+307,\"4.3760244945806174e+307\":8.540062203531481e+307,\"1.2827753446274256e+308\":122,\"1.7445391789088273e+... | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"... | {"name" : "mongoose-bigdecimal", "version" : "0.1.0", "description" : "BigDecimal schema type for mongoose based on big.js", "main" : "index.js", "scripts" : {"test" : "grunt test"}, "repository" : {"type" : "git", "url" : "https://github.com/lykmapipo/mongoose-bigdecimal.git"}, "keywords" : ["mongoose", "mongoose-plug... | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "tit... | {"body" : "* New version: 1.16.3.\r\n* Historical versions: 1.16.1, 1.16.0, 1.15.4, 1.15.3, 1.15.3, 1.15.0, 1.14.6, 1.14.5, 1.14.4, 1.11.3, 1.9.3.\r\n", "user" : "chissg", "url" : "https://api.github.com/repos/spack/spack/issues/11364", "updated_at" : "2019-07-25 16:39:34", "created_at" : "2019-05-03 15:28:49", "closed... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["fields"], "$schema": "http://json-schema.org/draft-0... | {"fields" : [{"name" : "pair_number", "type" : "integer"}, {"name" : "time_start", "type" : "string"}, {"name" : "time_end", "type" : "string"}, {"name" : "building", "type" : "select", "options" : []}]} | json_instruct | {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["fields"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"... | {"name" : "MapboxSpeech", "version" : "0.1.1", "summary" : "A speech synthesizer built on AWS Polly for Swift and Objective-C.", "description" : "MapboxSpeech makes it easy to connect your iOS, macOS, tvOS, or watchOS application to the Mapbox Speech API. Quickly get audio files from a text string.", "homepage" : "http... | 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"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low... | {"open" : "0.0839", "high" : "0.0876", "low" : "0.082", "volume" : "1150827.1", "last" : "0.0854", "volume_30day" : "39364151"} | json_instruct | {"type": "object", "properties": {"open": {"type": "string"}, "high": {"type": "string"}, "low": {"type": "string"}, "volume": {"type": "string"}, "last": {"type": "string"}, "volume_30day": {"type": "string"}}, "required": ["open", "high", "low", "volume", "last", "volume_30day"], "$schema": "http://json-schema.org/dr... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "nu... | {"contract" : "0xf030b8fbe57c4498298449fc78a0f7054a5ef76d", "tool" : "mythril", "start" : 1563514991.5666773, "end" : 1563514995.7798836, "duration" : 4.2132062911987305, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo... |
Please provide a valid JSON object following this schema:
{"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"}... | {"name" : "com.uber", "version" : "1.0.0", "description" : "An interface", "author" : "Stanford IoT lab", "contributors" : [{"name" : "Juan Vimberg", "email" : "jvimberg@stanford.edu"}, {"name" : "Tucker L. Ward", "email" : "tlward@stanford.edu"}], "main" : "device.js", "dependencies" : {}} | 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"}, "email": {"type": "string"}}, "required": ["name", "email... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3673030001", "nama" : "GELAM"}, {"id" : "3673030002", "nama" : "DALUNG"}, {"id" : "3673030003", "nama" : "TEMBONG"}, {"id" : "3673030004", "nama" : "KARUNDANG"}, {"id" : "3673030005", "nama" : "CIPOCOK JAYA"}, {"id" : "3673030006", "nama" : "BANJARSARI"}, {"id" : "3673030007", "nama" : "BANJARAGUNG"}, {"id" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "lint": {"type": "string"}, "dev": {"type": "str... | {"name" : "lbg", "version" : "1.0.0", "description" : "", "scripts" : {"format" : "prettier --write \"src/**/*.{js,jsx}\"", "lint" : "eslint \"src/**/*.{js,jsx}\" --quiet", "dev" : "parcel src/index.html", "build" : "parcel build src/index.html"}, "repository" : {"type" : "git", "url" : "git+https://github.com/chrisPfa... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "lint": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["format", "lint", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}... | {"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft.AspNetCore" : "Warning"}}, "Jwt" : {"AccessTokenSecret" : "Jackdaws love my big sphinx of quartz", "RefreshTokenSecret" : "Pack my box with five dozen liquor jugs", "Issuer" : "https://127.0.0.1", "Audience" : "https://127.0.0.1"}, "AllowedHosts" : "*"} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}}, "required": ["LogLevel"]}, "Jwt": {"type": "object", "properties": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "strin... | {"stationId" : 1190513, "stationGroupId" : 1190513, "name" : "\u80a5\u524d\u767d\u77f3", "lineId" : 11905, "zipCode" : "849-1112", "pref" : "\u4f50\u8cc0\u770c", "city" : "\u6775\u5cf6\u90e1\u767d\u77f3\u753a", "town" : "\u798f\u7530", "longitude" : 130.135952, "latitude" : 33.186679, "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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"GameChip": {"type": "object", "properties": {"savedData": {"type": "object", "properties": {"editing": {"type": "string"}, "sessionID": {"type": "string"}, "rootDirectory": {"type": "string"}, "selectedSprite": {"t... | {"GameChip" : {"savedData" : {"editing" : "undefined", "sessionID" : "201901060640155606", "rootDirectory" : "/Disks/ProTools/Tools/MusicTool/", "selectedSprite" : "0"}}} | json_instruct | {"type": "object", "properties": {"GameChip": {"type": "object", "properties": {"savedData": {"type": "object", "properties": {"editing": {"type": "string"}, "sessionID": {"type": "string"}, "rootDirectory": {"type": "string"}, "selectedSprite": {"type": "string"}}, "required": ["editing", "sessionID", "rootDirectory",... |
The schema below describes a JSON structure. Generate a valid example:
{"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... | [{"package" : "bioconductor-tbx20bamsubset", "downloads" : 3900, "count" : 3754}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"... | {"edges" : [[13, 10], [35, 13], [13, 22], [13, 7], [9, 13], [13, 30], [13, 29], [13, 15], [12, 10], [13, 5], [13, 30], [33, 13], [24, 13], [13, 2], [4, 13], [17, 13], [19, 13], [7, 13], [8, 13], [13, 29], [14, 13], [13, 26], [3, 25], [11, 6], [23, 6], [23, 13], [13, 9], [13, 31], [13, 7], [13, 20], [13, 32], [15, 13], ... | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":... |
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" : "self-sacrificing", "definition" : "Yielding up one's own interest, ffeelings, etc; sacrificing one's self."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"grant@enterprise.com": {"type": "array", "items": {"type": "object", "properties": {"apiProducts": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "consumerKey": {"type": "string"}, "cons... | {"grant@enterprise.com" : [{"apiProducts" : ["weatherProduct"], "name" : "grantoneapp", "consumerKey" : "abcd", "consumerSecret" : "xyz123"}]} | json_instruct | {"type": "object", "properties": {"grant@enterprise.com": {"type": "array", "items": {"type": "object", "properties": {"apiProducts": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "consumerKey": {"type": "string"}, "consumerSecret": {"type": "string"}}, "required": ["apiProducts", "name", ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool"... | {"contract" : "0xa6281838f4a9c5736b2aa1cba9260d3f879623ca", "tool" : "osiris", "start" : 1564589449.1761854, "end" : 1564589451.8374007, "duration" : 2.661215305328369, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"178": {"type": "string"}, "179": {"type": "string"}}, "required": ["178", "179"]}}, "required": ["id", "lines"], "$schema": "http://json-sc... | {"id" : "97406624", "lines" : {"178" : "XSLFTextShape txt = getTextShapeByType(Placeholder.TITLE);\n", "179" : "return txt == null ? \"\" : txt.getText();\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"178": {"type": "string"}, "179": {"type": "string"}}, "required": ["178", "179"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "array"... | {"name" : "visualsearch", "version" : "0.5.0", "homepage" : "http://documentcloud.github.io/visualsearch/", "authors" : ["Samuel Clay", "@samuelclay"], "description" : "A Rich Search Box for Real Data", "main" : ["build-min/visualsearch-datauri.css", "build-min/visualsearch.css", "build-min/visualsearch.js"], "license"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "... | {"name" : "db-report", "version" : "1.0.0", "description" : "Report data about your database", "main" : "dist/index.js", "scripts" : {"start" : "node dist/index.js", "build" : "npm install && tsc"}, "author" : "", "module" : "system", "license" : "ISC", "devDependencies" : {"@types/node" : "^14.11.2", "@types/validator... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "author": {"type": "string"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["class", "instance"], "$schema": "http://... | {"class" : {}, "instance" : {"item" : "mp 4/27/2010 18:37"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lisk-sdk":... | {"name" : "lisk-inviter-transactions", "version" : "1.0.0", "author" : "Lemii", "license" : "MIT", "main" : "index.js", "dependencies" : {"lisk-sdk" : "2.2.0", "@liskhq/lisk-constants" : "^1.2.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lisk-sdk": {"type": "string"}, "@liskhq/lisk-constants": {"type": "string"}}, "required... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"componentClass": {"type": "string"}, "configureTestApp:": {"type": "string"}, "testClickAction": {"type": "string"}}, "required": ["componentClass", "configureTestApp:... | {"instance" : {"componentClass" : "KrisGybels 9/29/2017 11:52", "configureTestApp:" : "KrisGybels 9/29/2017 11:56", "testClickAction" : "KrisGybels 9/29/2017 11:57"}, "class" : {}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"componentClass": {"type": "string"}, "configureTestApp:": {"type": "string"}, "testClickAction": {"type": "string"}}, "required": ["componentClass", "configureTestApp:", "testClickAction"]}, "class": {"type": "object", "properties": {}, "r... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Please Choose Your Command": {"type": "string"}, "Please choose a Server as deploy target": {"type": "string"}}, "required": ["Please Choose Your Command", "Please choose a Server as deploy target"], "$schema... | {"Please Choose Your Command" : "Bitte w\u00e4hlen Sie ein Kommando aus", "Please choose a Server as deploy target" : "Bitte w\u00e4hlen Sie einen Server aus"} | json_instruct | {"type": "object", "properties": {"Please Choose Your Command": {"type": "string"}, "Please choose a Server as deploy target": {"type": "string"}}, "required": ["Please Choose Your Command", "Please choose a Server as deploy target"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/sche... | {"repair_end" : "2019-08-10 09:17:32.083230", "repair_begin" : "2019-08-10 08:58:28.851411", "patches" : []} | json_instruct | {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"an5.89:0.1": {"type": "string"}, "an5.89:0.2": {"type": "string"}, "an5.89:0.3": {"type": "string"}, "an5.89:1.1": {"type": "string"}, "an5.89:1.2": {"type": "string"}, "an5.89:1.3": {"type": "string"}, "an5.89:1.4": {"type": "s... | {"an5.89:0.1" : "Numbered Discourses 5 ", "an5.89:0.2" : "9. Senior Mendicants ", "an5.89:0.3" : "89. A Trainee (1st) ", "an5.89:1.1" : "\u201cThese five things lead to the decline of a mendicant trainee. ", "an5.89:1.2" : "What five? ", "an5.89:1.3" : "They relish work, talk, sleep, and company. And they don\u2019t re... | json_instruct | {"type": "object", "properties": {"an5.89:0.1": {"type": "string"}, "an5.89:0.2": {"type": "string"}, "an5.89:0.3": {"type": "string"}, "an5.89:1.1": {"type": "string"}, "an5.89:1.2": {"type": "string"}, "an5.89:1.3": {"type": "string"}, "an5.89:1.4": {"type": "string"}, "an5.89:2.1": {"type": "string"}, "an5.89:2.2": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"leap.min.js": {"type": "string"}}, "required": ["leap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"leap.min.js" : "sha512-z+HSbDQ9AVQ9J/u1z18hUUomtNolVgplNpiPKYq8/ZosiSn65+Qi1d1ouLOlUkwImnoO8YxaNkbsHHyXsIdEIw=="} | json_instruct | {"type": "object", "properties": {"leap.min.js": {"type": "string"}}, "required": ["leap.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "fullName": {"type": "string"}, "slug": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "type": {"type": "string"}}, "required": ["login", "typ... | {"name" : "nrjmx", "fullName" : "newrelic/nrjmx", "slug" : "newrelic-nrjmx", "owner" : {"login" : "newrelic", "type" : "Organization"}, "title" : "New Relic JMX", "supportUrl" : null, "githubUrl" : "https://github.com/newrelic/nrjmx", "permalink" : "https://opensource.newrelic.com/projects/newrelic/nrjmx", "iconUrl" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "fullName": {"type": "string"}, "slug": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "type": {"type": "string"}}, "required": ["login", "type"]}, "title": {"type": "string"}, "supportUrl": {"type": "null"}, "git... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"telegram-node-bot": {"type... | {"name" : "telegram-demo-todo-bot", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"telegram-node-bot" : {"version" : "4.0.5", "resolved" : "https://registry.npmjs.org/telegram-node-bot/-/telegram-node-bot-4.0.5.tgz", "integrity" : "sha1-H1Zay+iZJbASdlZgZpbYdhvqGQc=", "requires" : {"ti... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"telegram-node-bot": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "usingComponents": {"type": "o... | {"backgroundTextStyle" : "light", "navigationBarBackgroundColor" : "#006ACC", "navigationBarTitleText" : "\u5c0f\u5b66\u671f\u4f5c\u54c1\u5c55\u793a", "navigationBarTextStyle" : "white", "usingComponents" : {"txv-video" : "plugin://tencentvideo/video"}} | json_instruct | {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"txv-video": {"type": "string"}}, "required": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name",... | {"name" : "test_edit_contact_by_index[Contact: None firstname_TuyHC lastname_zbNz9qvfioc0q address_Z1LMpt6mGU0Mm5o8 home_vCngQ email_1_dr1TS1rsW]", "status" : "passed", "parameters" : [{"name" : "json_contact", "value" : "Contact: None firstname_TuyHC lastname_zbNz9qvfioc0q address_Z1LMpt6mGU0Mm5o8 home_vCngQ email_1_d... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "uu... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"filter": {"type": "string"}, "filter:": {"type": "string"}, "setUp": {"type": "string"}, "testAttributesDictionary": ... | {"class" : {}, "instance" : {"filter" : "JB 6/8/2019 15:29", "filter:" : "JB 6/8/2019 15:29", "setUp" : "JB 6/8/2019 15:31", "testAttributesDictionary" : "JB 6/8/2019 15:50", "testFilterCreation" : "JB 6/8/2019 15:46", "testFiltersAsXmlCompFilter" : "TSP 7/25/2019 17:34", "testFiltersAsXmlTimeRange" : "TSP 7/25/2019 17... | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"filter": {"type": "string"}, "filter:": {"type": "string"}, "setUp": {"type": "string"}, "testAttributesDictionary": {"type": "string"}, "testFilterCreation": {"type": "string"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2... | {"\uc774\ub984" : "\uae40\uc81c\ub2a5", "\ud55c\ubb38\uba85" : "\u91d1\u6fdf\u80fd", "\uc0dd\ub144\uc6d4\uc77c" : "1911-02-20", "\uc815\ub2f9" : "\uc790\uc720\ub2f9", "\uc120\uac70\uad6c" : "\ucda9\ub0a8 \uc11c\uc0b0\uac11", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "2"} | json_instruct | {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "MCMUCH - About", "content" : "<p>MCMUCH is a place where people share their content that they have made with mods for Minecraft.</p>"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location"... | {"id" : 23145, "title" : ["[A Bubbling Hot Spring]"], "description" : ["Shooting forth from a single hole in the stone floor of the pool, the spring pierces the surface and rises several inches before coming down in a shower of drops. Mist wafts up from the warm water, though you can still see the entire garden throug... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"2804":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": ... | {"n_dim" : 21, "n_trials" : 80, "objective" : "michaelewicz_on_cube", "white" : "dlib_default", "black" : "pymoo_nelder", "traceback" : ["passing", "passing"], "best_val" : [1.024829837913336, 1.0494239014383282], "best_x" : [[0.22641636327708353, 0.5595614467252787, 0.6099374457504656, 0.266783197013075, 0.93422624857... | 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": {... |
Based on the schema below, produce a valid JSON object:
{"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"}, "m... | {"author" : {"id" : "t2_7wo5b", "name" : "NailsNathan"}, "date" : {"day" : 1492646400, "full" : 1492720111, "month" : 1491004800, "week" : 1492300800}, "id" : "t3_66kfps", "picture" : {"filesize" : 107660, "fullUrl" : "https://external-preview.redd.it/zqh-7ZExwNsPGq3ohLkyzLzDsyW_0pitzX-yH70V57c.jpg?auto=webp&s=a1a628b0... | 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"}},... |
The schema below describes a JSON structure. Generate a valid example:
{"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"}... | {"id" : 106880, "name" : "infinite be back", "description" : "ifnt", "user" : {"id" : 277222, "name" : "kim someguy", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2014-11-01T23:09:14.000Z", "weekly_install_count" : 0, "total_install_count" : 41, "rating... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Component": {"type": "object", "properties": {"Name": {"type": "string"}, "NameOfClass": {"type": "string"}, "Dimensionality": {"type": "string"}, "PixelType": {"type": "string"}}, "required": ["Name", "NameOfClass", "Dimen... | {"Component" : {"Name" : "ResultImageSink", "NameOfClass" : "ItkImageSinkComponent", "Dimensionality" : "2", "PixelType" : "float"}, "Connection" : {"Out" : "ResampleFilter", "In" : "ResultImageSink", "NameOfInterface" : "itkImageInterface"}} | json_instruct | {"type": "object", "properties": {"Component": {"type": "object", "properties": {"Name": {"type": "string"}, "NameOfClass": {"type": "string"}, "Dimensionality": {"type": "string"}, "PixelType": {"type": "string"}}, "required": ["Name", "NameOfClass", "Dimensionality", "PixelType"]}, "Connection": {"type": "object", "p... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "... | {"Target" : "scss/main.min.909728957f400adeab6ce583dd53200f.css", "MediaType" : "text/css", "Data" : {"Integrity" : "md5-kJcolX9ACt6rbOWD3VMgDw=="}} | json_instruct | {"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyName": {"type": "string"}, "https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyWebsite": {"type": "string"}}, "required": ["htt... | {"https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyName" : "XYZ", "https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyWebsite" : "XYZ.com"} | json_instruct | {"type": "object", "properties": {"https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyName": {"type": "string"}, "https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyWebsite": {"type": "string"}}, "required": ["https://ns.adobe.com/experience/intelligentServices/b2bPerson/companyName"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"CountTargets": {"type": "integer"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "Direction": {"type": "integer"}}, "required": ["CountTargets", "x", "y", "Direction"], "$schema": "http://json-schema.org/draft... | {"CountTargets" : 6, "x" : 9, "y" : 8, "Direction" : 10} | json_instruct | {"type": "object", "properties": {"CountTargets": {"type": "integer"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "Direction": {"type": "integer"}}, "required": ["CountTargets", "x", "y", "Direction"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"filp/whoops": {"type": "string"}}, "required": ["filp/whoops"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"filp/whoops" : "^2.1"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"filp/whoops": {"type": "string"}}, "required": ["filp/whoops"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type... | {"userId" : 51148, "cartId" : "a19c4454-c113-4e0c-8ae6-dcc76094e792", "preferredProducts" : [1146, 1077, 1005, 1916, 1164, 3754, 3904, 3665, 4592, 1547], "productReviews" : [{"productId" : 717, "reviewText" : "My neighbor Georgie has one of these. She works as a busboy and she says it looks brown.", "reviewDate" : "201... | 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": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/flaticon.css": {"type": "string"}, "/css/material-icons.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/flatic... | {"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/css/flaticon.css" : "/css/flaticon.css", "/css/material-icons.css" : "/css/material-icons.css"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/flaticon.css": {"type": "string"}, "/css/material-icons.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/flaticon.css", "/css/material-icons.css"], "$schema": "http://json-schema.org/... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"token": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"]}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : {"value" : [20]}} | json_instruct | {"type": "object", "properties": {"token": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"]}}, "required": ["token"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "str... | {"id" : 27932, "title" : ["[Khylynnia's Magic Shoppe]"], "description" : ["Enclosed by celadon marble walls, the shop features a bathing maiden statue in the center of its celadon marble floor. A pearl-handled filigreed mandolin hangs under the vaulted ceiling. Right near the front is an iron-banded wooden chest and ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"351": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["d3-media-manager-app", "gulp-modular", "liferay-gulp-tasks"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"eci1_crc1": {"type": "string"}, "eci1_crc2": {"type": "string"}, "eci1_gain": {"type": "string"}, "eci1_ugain": {"type": "string"}, "eci2_crc1": {"type": "string"}, "eci2_crc2": {"type": "string"}, "eci2_gain": {"type": "string"... | {"eci1_crc1" : "0", "eci1_crc2" : "0", "eci1_gain" : "0", "eci1_ugain" : "0", "eci2_crc1" : "0", "eci2_crc2" : "0", "eci2_gain" : "0", "eci2_ugain" : "0"} | json_instruct | {"type": "object", "properties": {"eci1_crc1": {"type": "string"}, "eci1_crc2": {"type": "string"}, "eci1_gain": {"type": "string"}, "eci1_ugain": {"type": "string"}, "eci2_crc1": {"type": "string"}, "eci2_crc2": {"type": "string"}, "eci2_gain": {"type": "string"}, "eci2_ugain": {"type": "string"}}, "required": ["eci1_... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["r... | {"ETag" : "W/\"83d5b459e6ec661152c0d67ecf45a35e589ec7d430a6a8621dda6601638e7b73\"", "Last-Modified" : "Tue, 22 Sep 2020 07:03:39 GMT", "base" : {"repo" : {"name" : "jupyter-sphinx-feedstock"}}, "closed_at" : "2020-09-22T07:03:39Z", "created_at" : "2020-09-22T00:55:05Z", "draft" : false, "head" : {"ref" : "0.3.2_hdfc06d... | 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": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required":... | {"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*", "RemConConfig" : {"NirCmdExeLocation" : "C:/nircmd/nircmd.exe", "AudioDevices" : ["Desktop DACAMP", "Speakers"]}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Lua.diagnostics.globals": {"type": "array", "items": {"type": "string"}}, "Lua.diagnostics.disable": {"type": "array", "items": {"type": "string"}}}, "required": ["Lua.diagnostics.globals", "Lua.diagnostics.disable"]... | {"Lua.diagnostics.globals" : ["awesome", "client"], "Lua.diagnostics.disable" : ["different-requires"]} | json_instruct | {"type": "object", "properties": {"Lua.diagnostics.globals": {"type": "array", "items": {"type": "string"}}, "Lua.diagnostics.disable": {"type": "array", "items": {"type": "string"}}}, "required": ["Lua.diagnostics.globals", "Lua.diagnostics.disable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "s... | {"name" : "asp.net.ajax.ts", "version" : "1.0.0", "description" : "## TypeScript port ot the Microsoft ASP.NET AJAX framework (MicrosoftAjax.js)", "main" : "index.js", "scripts" : {"build" : "node ./node_modules/webpack/bin/webpack.js --watch", "start" : "node server.js"}, "author" : "Markus Mauch", "license" : "MIT", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "author": {"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"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "... | {"name" : "include-exclude-regex-relativity", "version" : "1.0.0", "description" : "integration test for patch-package", "main" : "index.js", "author" : "", "license" : "ISC", "dependencies" : {"lodash" : "4.17.4", "replace" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "replace": {"type": "st... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "t... | {"source" : "http://www.spanishdict.com/conjugate/desanudar", "word" : "desanudar", "infinitivo" : "desanudar", "gerundio" : ["desanudando"], "participio" : ["desanudado"], "tenses" : {"3" : [["desanudo"], ["desanudas"], ["desanuda"], ["desanudamos"], ["desanud\u00e1is"], ["desanudan"]], "4" : [["desanud\u00e9"], ["des... | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item... |
Construct a JSON document that adheres to this schema specification:
{"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" : "magic-marble-tutorial", "version" : "0.0.0", "scripts" : {"dev" : "vite", "build" : "vite build", "serve" : "vite preview"}, "dependencies" : {"@react-three/drei" : "^7.3.1", "@react-three/fiber" : "^7.0.6", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-spring" : "^9.2.3", "three" : "^0.131.1"}, "devD... | 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": {"@reac... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "iconUrl": {"type": "string"}, "orgUrl": {"type": "string"}}, "required": ["name", "id", "iconUrl", "orgUrl"], "$schema": "http://json-schema.org/draft-07/sc... | {"name" : "Wufoo", "id" : "WUFOO", "iconUrl" : "https://www.tapclicks.com/wp-content/uploads/2020/06/WUFOO.svg", "orgUrl" : "https://www.wufoo.com/"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "iconUrl": {"type": "string"}, "orgUrl": {"type": "string"}}, "required": ["name", "id", "iconUrl", "orgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"yiisoft/yii2-redis": {"type": "string"}}, "required": ["yiisoft/yii2-redis"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"yiisoft/yii2-redis" : "^2.0"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"yiisoft/yii2-redis": {"type": "string"}}, "required": ["yiisoft/yii2-redis"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"commentSum": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "punishType": {"type": "integer"}, "uname": {"type": "string"}, "blockedForever": {"type": "boolean"}, "moralNum": {"type": "integer"}, "reasonType": {... | {"commentSum" : 225, "reasonTypeName" : "\u53d1\u5e03\u5f15\u6218\u8a00\u8bba", "punishType" : 2, "uname" : "", "blockedForever" : false, "moralNum" : 10, "reasonType" : 9, "uid" : 12719703, "punishTime" : 1501224797000, "blockedType" : 0, "blockedDays" : 7, "originType" : 2, "id" : 48334, "punishTitle" : "\u5728\u5f39... | json_instruct | {"type": "object", "properties": {"commentSum": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "punishType": {"type": "integer"}, "uname": {"type": "string"}, "blockedForever": {"type": "boolean"}, "moralNum": {"type": "integer"}, "reasonType": {"type": "integer"}, "uid": {"type": "integer"}, "punishTime": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "content": {"type": "string"}, "server_id": {"type": "string"}, "details": {"type": "string"}}, "required": ["id", "name", "content", "s... | [{"id" : "1", "name" : "custom_1", "content" : "content", "server_id" : "server_id", "details" : "user#tag, user_id, date"}, {"id" : "2", "name" : "custom_2", "content" : "content", "server_id" : "server_id", "details" : "user#tag, user_id, date"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "content": {"type": "string"}, "server_id": {"type": "string"}, "details": {"type": "string"}}, "required": ["id", "name", "content", "server_id", "details"]}, "$schema": "http://json-schema.org/draft-07/s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severit... | {"schema_version" : "1.2.0", "id" : "GHSA-284m-6732-qrhg", "modified" : "2022-04-28T00:00:35Z", "published" : "2022-04-28T00:00:35Z", "aliases" : ["CVE-2022-1503"], "details" : "A vulnerability, which was classified as problematic, has been found in GetSimple CMS. Affected by this issue is the file /admin/edit.php of 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... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": ... | [{"name" : "Marantz MPH-2", "id" : "57ac11219a365dd44d618092f6ca96a175403e4d", "isDefault" : false, "gains" : {"global" : -5.5, "bands" : [-5.7, -2.5, -6.1, -5.0, 4.5, -0.2, 1.8, 5.4, -3.2, -2.5]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "requ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type"... | {"directions" : ["In a large pot, heat oil over medium heat. Cook onion, stirring occasionally, until golden, 3 to 5 minutes. Add celery, carrots and garlic; cook, stirring, until vegetables soften, 3 to 5 minutes. Add wine; stir to scrape brown bits off bottom of pot. Add stock, beans, tomatoes, bay leaves and 1/4 tea... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "mocha": {"type": "string"}, "node": {"type": "string"}}, "required": ["discord.js", "mocha", "node"]}}, "required": ["globa... | {"globalDependencies" : {"discord.js" : "github:nicholastay/discord.js.d.ts", "mocha" : "registry:dt/mocha#2.2.5+20160619032855", "node" : "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts"}} | json_instruct | {"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "mocha": {"type": "string"}, "node": {"type": "string"}}, "required": ["discord.js", "mocha", "node"]}}, "required": ["globalDependencies"], "$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"}, "namespace": {"type": "string"}, "meta": {"type": "string"}, "description": {"type": "string"}, "dimensions": {"type": "array", "items": {"type": "object", ... | {"name" : "Person", "version" : "0.2", "namespace" : "http://onto-ns.com/meta", "meta" : "http://onto-ns.com/meta/0.3/EntitySchema", "description" : "A person.", "dimensions" : [{"name" : "N", "description" : "Number of skills."}, {"name" : "M", "description" : "Number of temperature measurements."}], "properties" : [{... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "namespace": {"type": "string"}, "meta": {"type": "string"}, "description": {"type": "string"}, "dimensions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "str... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"img": {"type": "string"}, "category": {"type": "string"}, "number": {"type": "integer"}, "playNumber": {"type": "string"}, "author": {"type": "string"}, "createDate": {"type": "string"}, "label": {"type": "arra... | {"img" : "/wangyiyun-online/assets/images/s1.jpg", "category" : "\u534e\u8bed", "number" : 32, "playNumber" : "30\u4e07", "author" : "Tataaaa", "createDate" : "2019-08-27", "label" : ["\u534e\u8bed", "\u6d41\u884c", "\u601d\u5ff5"], "desc" : "\u5fd8\u5374\uff0c\u771f\u662f\u5929\u4e0b\u6700\u7b80\u5355\u53c8\u6700\u96b... | json_instruct | {"type": "object", "properties": {"img": {"type": "string"}, "category": {"type": "string"}, "number": {"type": "integer"}, "playNumber": {"type": "string"}, "author": {"type": "string"}, "createDate": {"type": "string"}, "label": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "songs": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"SpectatorCasualty": {"type": "array", "items": {"type": "string"}}}, "required": ["SpectatorCasualty"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SpectatorCasualty" : ["TrialByCombat", "GladiatorGames", "NotAGame", "TakeThat", "TakeThatAudience", "HumanShield", "InnocentBystanders", "InUniverse", "TheFourthWallWillNotProtectYou", "SisterTrope", "DeadlineNews", "FatalMethodActing", "DealWithTheDevil", "EvilSorcerer", "CombatByChampion", "HumanShield", "MyGreate... | json_instruct | {"type": "object", "properties": {"SpectatorCasualty": {"type": "array", "items": {"type": "string"}}}, "required": ["SpectatorCasualty"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_project_name": {"type": "string"}, "settings": {"type": "object", "properties": {}, "required": []}, "build_systems": {"type": "array", "items": {}}}, "... | {"name" : "C++ Project", "description" : "A C++ project template", "default_project_name" : "NewCppProject", "settings" : {}, "build_systems" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "default_project_name": {"type": "string"}, "settings": {"type": "object", "properties": {}, "required": []}, "build_systems": {"type": "array", "items": {}}}, "required": ["name", "description", "default_project_name", "se... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"model": {"type": "object", "properties": {"modelName": {"type": "string"}, "dbVersion": {"type": "string"}, "dbVendor": {"type": "string"}, "port": {"type": "integer"}}, "required": ["modelName", "dbVersion", "dbVend... | {"model" : {"modelName" : "New model", "dbVersion" : "6.x", "dbVendor" : "Elasticsearch", "port" : 9200}, "container" : {"name" : "New index", "indexes" : [], "number_of_shards" : 5, "number_of_replicas" : 1}, "collection" : {"collectionName" : "New type", "collectionUsers" : [], "collation" : {}, "dynamic" : "true"}, ... | json_instruct | {"type": "object", "properties": {"model": {"type": "object", "properties": {"modelName": {"type": "string"}, "dbVersion": {"type": "string"}, "dbVendor": {"type": "string"}, "port": {"type": "integer"}}, "required": ["modelName", "dbVersion", "dbVendor", "port"]}, "container": {"type": "object", "properties": {"name":... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-s... | [{"date" : "2022-04-02", "total" : 3509, "delta" : 2, "version" : "0.17"}, {"date" : "2022-04-08", "total" : 3529, "delta" : 20, "version" : "0.17"}, {"date" : "2022-04-10", "total" : 3538, "delta" : 9, "version" : "0.17"}, {"date" : "2022-04-12", "total" : 3542, "delta" : 4, "version" : "0.17"}, {"date" : "2022-04-13"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}},... | [{"Id" : "245449", "ThreadId" : "71908", "Html" : "<p>Hello!</p>\r\n<p>There is an interesting behavior in my windows forms app. I created a WPF window, added the DataGrid, and presented the window from my windows forms application.This case the cell editor does not work, you cannot type letters in the cell, only space... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"},... | {"name" : "dspinnerbot", "version" : "1.0.0", "description" : "", "main" : "dist/main.js", "scripts" : {"build" : "tsc", "start" : "node dist/main.js", "start-dev" : "npm run build && node dist/main.js"}, "author" : "", "license" : "ISC", "dependencies" : {"discord.js" : "^12.5.1", "node" : "^15.10.0", "typescript" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "start-dev": {"type": "string"}}, "required": ["build", "star... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "re... | {"name" : "qqingdou/message-notify", "description" : "auto catch exception and notify", "keywords" : ["message", "notify", "exception", "auto", "catch"], "type" : "library", "require" : {"php" : ">=5.4.0"}, "license" : "MIT", "authors" : [{"name" : "alvin", "email" : "pingtang000@foxmail.com"}], "support" : {"issues" :... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "license": {"type": "string"}, "authors"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"},... | {"\u5de5\u5ee0\u540d\u7a31" : "\u5408\u5bcc\u570b\u969b\u80a1\u4efd\u6709\u9650\u516c\u53f8\u53f0\u4e2d\u4e00\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99672488", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u897f\u5c6f\u5340\u5354\u548c\u91cc\u5de5\u... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"abstract": {"type": "string"}, "description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items"... | {"abstract" : "https://jsconfbp.com/speakers/sam-bellen.html", "description" : "As a guitar player, I usually use some effect-pedals to change the sound of my guitar. I started wondering: \u201cWhat if, it would be possible to recreate these pedals using the web-audio-api?\u201d. Well, it turns out, it is entirely poss... | json_instruct | {"type": "object", "properties": {"abstract": {"type": "string"}, "description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"REGION": {"type": "string"}, "LATEST_ADMIN_DATE": {"type": "string"}, "PUBLISHED_DATE": {"type": "string"}}, "required": ["REGION", "LATEST_ADMIN_DATE", "PUBLISHED_DATE"]}, ... | {"meta" : {"REGION" : "Del Norte", "LATEST_ADMIN_DATE" : "2021-05-25", "PUBLISHED_DATE" : "2021-05-26"}, "data" : [{"CATEGORY" : "Female", "METRIC_VALUE" : 0.524449}, {"CATEGORY" : "Male", "METRIC_VALUE" : 0.47406}, {"CATEGORY" : "Unknown/undifferentiated", "METRIC_VALUE" : 0.001491}]} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"REGION": {"type": "string"}, "LATEST_ADMIN_DATE": {"type": "string"}, "PUBLISHED_DATE": {"type": "string"}}, "required": ["REGION", "LATEST_ADMIN_DATE", "PUBLISHED_DATE"]}, "data": {"type": "array", "items": {"type": "object", "properties": {"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ImportPath": {"type": "string"}, "GoVersion": {"type": "string"}, "Deps": {"type": "array", "items": {"type": "object", "properties": {"ImportPath": {"type": "string"}, "Rev": {"type": "string"}}, "required": ["ImportPath", "Rev... | {"ImportPath" : "github.com/pocke/ekm", "GoVersion" : "go1.4.2", "Deps" : [{"ImportPath" : "github.com/awslabs/aws-sdk-go/aws", "Rev" : "89181488c74e6bbea5e96d1bd0e4bbe409d498a4"}, {"ImportPath" : "github.com/awslabs/aws-sdk-go/internal/endpoints", "Rev" : "89181488c74e6bbea5e96d1bd0e4bbe409d498a4"}, {"ImportPath" : "g... | json_instruct | {"type": "object", "properties": {"ImportPath": {"type": "string"}, "GoVersion": {"type": "string"}, "Deps": {"type": "array", "items": {"type": "object", "properties": {"ImportPath": {"type": "string"}, "Rev": {"type": "string"}}, "required": ["ImportPath", "Rev"]}}}, "required": ["ImportPath", "GoVersion", "Deps"], "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type":... | {"id" : "a5de88ed-4c71-4fb0-aed4-5c45778c4524", "name" : "Kingsdown & Ringwould CEP", "code" : "A", "address" : {"addressLine1" : "Glen Road", "addressLine2" : "Kingsdown", "town" : "Deal", "county" : "Kent", "postcode" : "CT14 8DD"}, "organisation" : {"id" : "e93d662c-62f0-4292-aba3-60e6503e14a8", "code" : "2DG", "nam... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]... | {"type" : "Feature", "id" : "CI_ISA", "geometry" : {"type" : "Point", "coordinates" : [-118.474, 35.663, 873]}, "properties" : {"accelerometer" : "", "broadband" : "STS-1", "datalogger" : "--", "host" : null, "name" : "Isabella", "network_code" : "CI", "start_date" : "1991,038", "station_code" : "ISA", "virtual_network... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"acceler... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "... | {"name" : "dersam/rt-php-lib", "type" : "library", "description" : "Wrapper class for Request Tracker REST API", "keywords" : ["request tracker", "rest", "rt", "rt3", "rt4"], "homepage" : "http://dersam.github.com/RTPHPLib/", "license" : "MIT", "authors" : [{"name" : "Sam Schmidt", "email" : "samuel@dersam.net", "homep... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {... |
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-rgxg-7vf9-fg6x", "modified" : "2022-05-13T01:52:47Z", "published" : "2022-05-13T01:52:47Z", "aliases" : ["CVE-2018-5340"], "details" : "An issue was discovered in Zoho ManageEngine Desktop Central 10.0.124 and 10.0.184: database access using a superuser account (specifically, a... | 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": {"type": "object", "properti... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "requir... | {"ETag" : "W/\"b13638f422401eeda204638eeda960fa\"", "Last-Modified" : "Mon, 27 Jul 2020 00:07:47 GMT", "base" : {"repo" : {"name" : "fisspy-feedstock"}}, "closed_at" : "2020-07-27T00:07:47Z", "created_at" : "2019-08-16T03:24:57Z", "draft" : false, "head" : {"ref" : "0.9.61"}, "html_url" : "https://github.com/conda-forg... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"jquery.flexdatalist.css": {"type": "string"}, "jquery.flexdatalist.js": {"type": "string"}, "jquery.flexdatalist.min.css": {"type": "string"}, "jquery.flexdatalist.min.js": {"type": "string"}}, "required": ["jquery.... | {"jquery.flexdatalist.css" : "sha256-S8iQpeTnVe2ueF/a7sKVaPfGIRqPQun7l6HTGkbdI1c=", "jquery.flexdatalist.js" : "sha256-juWLa7xoDFzwvY0sC/QDms3Ndqlbk2YCOrksxU71968=", "jquery.flexdatalist.min.css" : "sha256-Es39yk+Miuc5WvyM0vvj2BHGMYBD9nXJSd+w8exzYiA=", "jquery.flexdatalist.min.js" : "sha256-H7nNejLTvjRDXN0nMwEZEHQjlIpx... | json_instruct | {"type": "object", "properties": {"jquery.flexdatalist.css": {"type": "string"}, "jquery.flexdatalist.js": {"type": "string"}, "jquery.flexdatalist.min.css": {"type": "string"}, "jquery.flexdatalist.min.js": {"type": "string"}}, "required": ["jquery.flexdatalist.css", "jquery.flexdatalist.js", "jquery.flexdatalist.min.... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "type", "mode"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "member_id", "type" : "INTEGER", "mode" : "REQUIRED"}, {"name" : "event_id", "type" : "INTEGER", "mode" : "REQUIRED"}, {"name" : "group_id", "type" : "INTEGER", "mode" : "REQUIRED"}, {"name" : "response", "type" : "STRING", "mode" : "REQUIRED"}, {"name" : "guests", "type" : "INTEGER", "mode" : "REQUIRED"}, {... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "mode": {"type": "string"}}, "required": ["name", "type", "mode"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract... | {"contract" : "0x3e121d5ab1b3f9998adb5324b17f91d75acac47a", "tool" : "osiris", "start" : 1564590599.9240818, "end" : 1564590602.385342, "duration" : 2.4612600803375244, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Based on the schema below, produce a valid JSON object:
{"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"}}}}}, "requir... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.0, 40.75], [145.0, 40.833333333333336], [145.125, 40.833333333333336], [145.125, 40.75], [145.0, 40.75]]]}, "properties" : {"code" : 614510, "url" : "http://madefor.github.io/0410/api/v1/614510.geojson", "view" : "https://github.com/madefor/0... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Generate sample JSON data that conforms to the following schema definition:
{"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-sche... | [{"year" : 1967, "sex" : "F", "n" : 5, "prop" : 2.91e-06}, {"year" : 1981, "sex" : "F", "n" : 7, "prop" : 3.91e-06}, {"year" : 1982, "sex" : "F", "n" : 7, "prop" : 3.86e-06}, {"year" : 1986, "sex" : "F", "n" : 6, "prop" : 3.25e-06}, {"year" : 1989, "sex" : "F", "n" : 5, "prop" : 2.51e-06}, {"year" : 2011, "sex" : "F", ... | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build-dev": {"type": "string"}, "build-p... | {"description" : "luma.gl port of the Khronos Physically-Based Rendering reference application", "license" : "MIT", "contributors" : [], "scripts" : {"start" : "yarn build-lib && open index.html", "build-dev" : "webpack", "build-prod" : "webpack --env minified", "build" : "mkdir -p dist/lib dist/es && yarn build-dev &&... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build-dev": {"type": "string"}, "build-prod": {"type": "string"}, "build": {"type": "string"}, "b... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "pr... | {"type" : "MultiPolygon", "coordinates" : [[[[-75.266038, 44.3206], [-75.261116, 44.324565], [-75.260774, 44.324845], [-75.260253, 44.325213], [-75.259353, 44.32585], [-75.258043, 44.326781], [-75.254449, 44.329813], [-75.254324, 44.329918], [-75.254567, 44.330055], [-75.255214, 44.330356], [-75.256062, 44.33071], [-75... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "... | [{"liveId" : "5a37adfb0cf21e6b1ed4955a", "title" : "\u77f3\u52e4\u7684\u76f4\u64ad\u95f4", "subTitle" : "hello\uff5e", "picPath" : "/mediasource/live/151359845834141q75iaPPt.jpg", "startTime" : 1513598458965, "memberId" : 614758, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5a37adfb0cf21e6b1ed4... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"menu": {"type": "object", "properties": {"menu": {"type": "string"}, "menu2": {"type": "string"}}, "required": ["menu", "menu2"]}, "schema": {"type": "object", "properties": {"id": {"type": "integer"}, "fwh": {"type": "stri... | {"menu" : {"menu" : "\u6536\u53d1\u6587", "menu2" : "\u53d1\u6587\uff08\u653f\u5e9c\uff09"}, "schema" : {"id" : 1, "fwh" : "\u53d1\u6587\u53f7", "dtime" : "\u53d1\u6587\u65e5\u671f", "filename" : "\u6587\u4ef6\u540d\u79f0", "zsdw" : "\u795d\u9882\u5355\u4f4d", "nwbm" : "\u62df\u6587\u90e8\u95e8", "nwqz" : "\u62df\u6587... | json_instruct | {"type": "object", "properties": {"menu": {"type": "object", "properties": {"menu": {"type": "string"}, "menu2": {"type": "string"}}, "required": ["menu", "menu2"]}, "schema": {"type": "object", "properties": {"id": {"type": "integer"}, "fwh": {"type": "string"}, "dtime": {"type": "string"}, "filename": {"type": "strin... |
Following the schema specification below, generate a valid JSON instance:
{"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"}, "wo... | {"id" : 101875349, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "6956acdbe0fd55111acbea428c45a663", "wof:id" : 101875349, "wof:repo" : "whosonfirst-data-admin-ua"}, "bbox" : [32.73274, 46.67885, 32.73274, 46.67885], "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": ["... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"question": {"type": "object", "properties": {"id": {"type": "string"}, "category": {"type": "string"}, "nerd_level": {"type": "integer"}, "text": {"type": "string"}, "a1": {"type": "string"}, "a2": {"type": "string"}, "a3":... | {"question" : {"id" : "", "category" : "algorithms", "nerd_level" : 3, "text" : "Which one is the fastest sorting algorithm?", "a1" : "Selection Sort", "a2" : "Quick Sort", "a3" : "Bubble Sort", "a4" : "All the same", "right_answer" : "a2", "created_at" : "2011-06-20", "created_by" : "eray"}} | json_instruct | {"type": "object", "properties": {"question": {"type": "object", "properties": {"id": {"type": "string"}, "category": {"type": "string"}, "nerd_level": {"type": "integer"}, "text": {"type": "string"}, "a1": {"type": "string"}, "a2": {"type": "string"}, "a3": {"type": "string"}, "a4": {"type": "string"}, "right_answer":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"CVE": {"type": "string"}, "state": {"type": "string"}, "repository": {"type": "string"}, "prePatch": {"type": "object", "properties": {"commit": {"type": "string"}, "weaknesses": {"type": "array", "items": {"type": "... | {"CVE" : "CVE-2018-3732", "state" : "PUBLISHED", "repository" : "https://github.com/pillarjs/resolve-path.git", "prePatch" : {"commit" : "7330f714649ae4f10de73837f5c9fcfdc7979697", "weaknesses" : [{"location" : {"file" : "index.js", "line" : 89}, "explanation" : "Lack of file path sanitization for windows based paths"}... | json_instruct | {"type": "object", "properties": {"CVE": {"type": "string"}, "state": {"type": "string"}, "repository": {"type": "string"}, "prePatch": {"type": "object", "properties": {"commit": {"type": "string"}, "weaknesses": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"leaf_type": {"type": "string"}, "branching_factor": {"type": "number"}, "bark_type": {"type": "string"}, "height": {"type": "number"}}, "required": ["leaf_type", "branching_factor", "bark_type", "height"], "$schema": "http://j... | {"leaf_type" : "wide", "branching_factor" : 50.4, "bark_type" : "naked", "height" : 68.6} | json_instruct | {"type": "object", "properties": {"leaf_type": {"type": "string"}, "branching_factor": {"type": "number"}, "bark_type": {"type": "string"}, "height": {"type": "number"}}, "required": ["leaf_type", "branching_factor", "bark_type", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"appid": {"type": "string"}, "appkey": {"type": "string"}, "apptitle": {"type": "string"}, "connectiontag": {"type": "string"}, "host": {"type": "string"}, "projectid": {"type": "string"}}, "required": ["appid", "appkey", "a... | {"appid" : "s5b4da7o4lgmz7i7pzfqu67t", "appkey" : "2229bae112205971d3587f91e91c01b9cec76322", "apptitle" : "Barcode Scanner Angular", "connectiontag" : "0.0.3", "host" : "https://jfrizelle.us.demos.redhatmobile.com", "projectid" : "s5b4dazmbtmq5pgmeoyrncif"} | json_instruct | {"type": "object", "properties": {"appid": {"type": "string"}, "appkey": {"type": "string"}, "apptitle": {"type": "string"}, "connectiontag": {"type": "string"}, "host": {"type": "string"}, "projectid": {"type": "string"}}, "required": ["appid", "appkey", "apptitle", "connectiontag", "host", "projectid"], "$schema": "h... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type"... | {"directions" : ["Preheat oven to 300\u00b0F. Place chicken halves skin side up in roasting pan. Place 3 slices pancetta atop each chicken half. Pour wine and vinegar over chicken. Sprinkle garlic and rosemary over. Drizzle chicken with olive oil. Cover and bake until chicken is cooked through, about 1 hour 45 minutes.... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["Patreon", "arctur", "gsap"]} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"an4.77:0.1": {"type": "string"}, "an4.77:0.2": {"type": "string"}, "an4.77:0.3": {"type": "string"}, "an4.77:1.1": {"type": "string"}, "an4.77:1.2": {"type": "string"}, "an4.77:1.3": {"type": "string"}, "an4.77:1.4": {"type... | {"an4.77:0.1" : "Nummerierte Lehrreden 4 ", "an4.77:0.2" : "8. Gesichert ", "an4.77:0.3" : "77. Durch Denken nicht zu fassen ", "an4.77:1.1" : "\u201eM\u00f6nche und Nonnen, diese vier Dinge sind durch Denken nicht zu fassen. Man sollte nicht dar\u00fcber nachdenken, und jeder, der es versucht, wird verr\u00fcckt oder ... | json_instruct | {"type": "object", "properties": {"an4.77:0.1": {"type": "string"}, "an4.77:0.2": {"type": "string"}, "an4.77:0.3": {"type": "string"}, "an4.77:1.1": {"type": "string"}, "an4.77:1.2": {"type": "string"}, "an4.77:1.3": {"type": "string"}, "an4.77:1.4": {"type": "string"}, "an4.77:1.5": {"type": "string"}, "an4.77:1.6": ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.