input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "protocol": {"type": "string"}, "method": {"type": "string"}, "pathPattern": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"},... | {"name" : "ListJobsWithFilters", "protocol" : "HTTP|HTTPS", "method" : "GET", "pathPattern" : "", "parameters" : [{"name" : "ClusterId", "position" : "Query", "type" : "String", "required" : false}, {"name" : "CreateTimeEnd", "position" : "Query", "type" : "String", "required" : false}, {"name" : "CreateTimeStart", "po... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "protocol": {"type": "string"}, "method": {"type": "string"}, "pathPattern": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "type": {"type": "string"}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-... | {"type" : "Polygon", "coordinates" : [[[-2.569228483, 53.54751532], [-2.530345911, 53.522249598], [-2.542155935, 53.520116634], [-2.538202489, 53.513423726], [-2.559011344, 53.511351648], [-2.566585516, 53.499357649], [-2.582435659, 53.501462062], [-2.596478822, 53.489650082], [-2.607850865, 53.49336796], [-2.609756885... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"], "$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"}, "slug": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "startup": {"type": "string"}, "boot": {"type": "string"}, "ports": ... | {"name" : "arwiupser - Arduino Wireless Update Server", "version" : "0.0.3", "slug" : "arwiupser", "description" : "Simple update server for arduino IoT devices", "url" : "https://github.com/danimtb/arwiupser", "startup" : "services", "boot" : "auto", "ports" : {"8266/tcp" : 8266}, "map" : ["share"], "options" : {}, "s... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "slug": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "startup": {"type": "string"}, "boot": {"type": "string"}, "ports": {"type": "object", "properties": {"8266/tcp": {"type": "integer"}}, "... |
Please provide a valid JSON object following this schema:
{"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_ema... | {"id" : 122914, "name" : "ARMORGAMES ad free", "description" : "Remove ads from armorgames.com", "user" : {"id" : 308094, "name" : "MADPEPPER", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2016-01-10T10:22:50.000Z", "weekly_install_count" : 0, "total_in... | 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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulner... | {"contract" : "0x4bd70556ae3f8a6ec6c4080a0c327b24325438f3", "tool" : "maian", "start" : 1565233703.489765, "end" : 1565233890.0513096, "duration" : 186.56154465675354, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codena... | [{"manufacturer" : "TCL", "market_name" : "TCL 10 SE", "codename" : "Oakland", "model" : "T766A"}, {"manufacturer" : "TCL", "market_name" : "TCL 10 SE", "codename" : "Oakland", "model" : "T766H"}, {"manufacturer" : "TCL", "market_name" : "TCL 10 SE", "codename" : "Oakland", "model" : "T766H_EEA"}, {"manufacturer" : "TC... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins"... | [{"id" : 17876, "title" : "Seeing the Light", "year" : 2014, "type" : "novel", "imageName" : "ecb_seeingth.jpg", "nominations" : 0, "wins" : -1}, {"id" : 17877, "title" : "Drowning in Amber", "year" : 2015, "type" : "novel", "imageName" : "ecb_drowning.jpg", "nominations" : 1, "wins" : -1}, {"id" : 36574, "title" : "St... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "im... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"stackHeaders": {"type": "object", "properties": {"api_key": {"type": "string"}}, "required": ["api_key"]}, "urlPath": {"type": "string"}, "uid": {"type": "string"}, "content_type": {"type... | [{"stackHeaders" : {"api_key" : "blt2be4b9eac1b7b008"}, "urlPath" : "/assets/blta8048dde6e2de6fe", "uid" : "blta8048dde6e2de6fe", "content_type" : "image/jpeg", "file_size" : "8494", "tags" : [], "filename" : "AlbertEinstein.jpeg", "url" : "https://images.contentstack.io/v3/assets/blt2be4b9eac1b7b008/blta8048dde6e2de6f... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"stackHeaders": {"type": "object", "properties": {"api_key": {"type": "string"}}, "required": ["api_key"]}, "urlPath": {"type": "string"}, "uid": {"type": "string"}, "content_type": {"type": "string"}, "file_size": {"type": "string"}, "tags": {"type": "array"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "sampleUrl": {"type": "string"}, "template": {"type": "object", "pr... | {"name" : "\u6d4b\u8bd5\u63a5\u53e3", "version" : "0.1.0", "description" : "\u6d4b\u8bd5\u63a5\u53e3", "title" : "Custom apiDoc browser title", "url" : "http://127.0.0.1:3001", "sampleUrl" : "http://127.0.0.1:3001", "template" : {"forceLanguage" : "zh_cn", "withCompare" : true, "withGenerator" : true, "jQueryAjaxSetup"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "sampleUrl": {"type": "string"}, "template": {"type": "object", "properties": {"forceLanguage": {"type": "string"}, "withCompare": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "strin... | {"name" : "koa-twitch-bot", "version" : "0.5.2", "main" : "app.js", "scripts" : {"start" : "node app.js"}, "author" : "Ivan Teoreez B", "license" : "MIT", "dependencies" : {"dotenv" : "^8.0.0", "koa" : "^2.7.0", "koa-route" : "^3.2.0", "koa-static" : "^5.0.0", "lodash" : "^4.17.11", "lowdb" : "^1.0.0", "twitch-bot" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "pro... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "app": {"type": "string"}, "name": {"type": "string"}, "appSecret": {"type": "string"}, "masterSecret": {"type": "string"}, "apiVersion": {"type": "integer"}, "numberOfCollabor... | [{"id" : "kid_Sy4yRNV_M", "app" : "885f5d307afd4168bebca1a64f815c1e", "name" : "Development", "appSecret" : "f006f2fda0fd4fc7b154e12a15ae81fe", "masterSecret" : "f09347efa9394ffdb4b0e8a39bc518f8", "apiVersion" : 3, "numberOfCollaborators" : 0, "numberOfAdmins" : 1}, {"id" : "kid_Ty4yRNV_O", "app" : "885f5d307afd4168beb... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "app": {"type": "string"}, "name": {"type": "string"}, "appSecret": {"type": "string"}, "masterSecret": {"type": "string"}, "apiVersion": {"type": "integer"}, "numberOfCollaborators": {"type": "integer"}, "numberOfAdmins": {"type": "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"test_cases": {"type": "array", "items": {"type": "object", "properties": {"args": {"type": "object", "properties": {"n": {"type": "integer"}, "dislikes": {"type": "array", "items": {"type": "array", "items": {"typ... | {"test_cases" : [{"args" : {"n" : 4, "dislikes" : [[1, 2], [1, 3], [2, 4]]}, "expected" : true}, {"args" : {"n" : 3, "dislikes" : [[1, 2], [1, 3], [2, 3]]}, "expected" : false}, {"args" : {"n" : 5, "dislikes" : [[1, 2], [2, 3], [3, 4], [4, 5], [1, 5]]}, "expected" : false}]} | json_instruct | {"type": "object", "properties": {"test_cases": {"type": "array", "items": {"type": "object", "properties": {"args": {"type": "object", "properties": {"n": {"type": "integer"}, "dislikes": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["n", "dislikes"]}, "expected": {"type": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "nu... | {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [98.4648, 241.417, 0.930575, 88.6868, 276.759, 0.901106, 55.3742, 274.876, 0.920865, 37.6797, 331.574, 0.877366, 27.9375, 380.592, 0.859651, 125.85, 278.686, 0.840723, 153.34, 323.746, 0.874026, 133.796, 366.888, 0.983178, 84.7947, 355.092, 0.8743... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Sample Note", "text" : "Welcome to your brand new Note Taker!\nTo add a note click the + in the upper right.\nOnce you've filled the title and text fields, click the Save button to store your note for later.\nYou can delete a note by clicking its trash can button. Be careful: once you delete a note it's go... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["outDir", "types"]}, "include": {"type": "... | {"extends" : "../../tsconfig-settings.json", "compilerOptions" : {"outDir" : "dist", "types" : ["node", "mocha", "chai"]}, "include" : ["test"], "references" : [{"path" : "../aft-ui-browsers"}, {"path" : "../aft-ui-mobile-apps"}, {"path" : "../aft-logging-awskinesis"}, {"path" : "../aft-logging-html"}, {"path" : "../af... | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["outDir", "types"]}, "include": {"type": "array", "items": {"type": "string"}}, "references": {"type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "2028", "provinceId" : "62", "regencyId" : "12", "districtId" : "03", "name" : "Muara Maruwei II"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "codeowners": {"type": "array", "items": {"type": ... | {"domain" : "ezviz", "name" : "Ezviz", "documentation" : "https://www.home-assistant.io/integrations/ezviz", "dependencies" : ["ffmpeg"], "codeowners" : ["@RenierM26", "@baqs"], "requirements" : ["pyezviz==0.1.8.9"], "config_flow" : true, "iot_class" : "cloud_polling"} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "codeowners": {"type": "array", "items": {"type": "string"}}, "requirements": {"type": "array", "items": {"type": "string"}}, "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"APP_DESC": {"type": "string"}, "APP_NAME": {"type": "string"}}, "required": ["APP_DESC", "APP_NAME"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"APP_DESC" : "Demo site", "APP_NAME" : "the-demo-site"} | json_instruct | {"type": "object", "properties": {"APP_DESC": {"type": "string"}, "APP_NAME": {"type": "string"}}, "required": ["APP_DESC", "APP_NAME"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "district... | {"id" : "2001", "provinceId" : "62", "regencyId" : "02", "districtId" : "07", "name" : "Pondok Damar"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "requ... | {"id" : 8276, "type" : 11, "name" : "Botas del Minotauroro", "level" : 113, "pods" : 40, "ethereal" : false, "stats" : ""} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "required": ["id", "type", "name", "level", "pods", "ethereal", "stats"], "$sche... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "o... | {"versionEnd" : {"versionNum" : 1507, "commit" : "d54b280f9fce850c405f9fa70e50b4a63af463f6", "date" : "2021-05-20T10:05:02.271Z"}, "versionStart" : {"versionNum" : 1506, "commit" : "2ddca7b649cdfe534319285c0590c8941097b93e", "date" : "2021-05-20T10:03:31.015Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "bl... | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"... | {"IsRecentlyVerified" : false, "ID" : 93605, "UUID" : "C7EE26E1-2486-4949-8A28-B02E1F77FA51", "DataProviderID" : 1, "OperatorID" : 25, "OperatorsReference" : "hounslow-welsteadwaycarpark", "UsageTypeID" : 4, "UsageCost" : "\u00a30.059/minute; min \u00a31.18; other tariffs available", "AddressInfo" : {"ID" : 93951, "Tit... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "Ad... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"folder": {"type": "string"}}, "required": ["folder"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"folder" : "file:///home/tinku/Documents/projects/Tinku10"} | json_instruct | {"type": "object", "properties": {"folder": {"type": "string"}}, "required": ["folder"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["360802400498", "\u865a\u62df\u793e\u533a", "123", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"... | {"name" : "jscs-html-output", "version" : "1.0.0", "description" : "A JSCS plugin for producing a pretty HTML report for viewing in browser", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/boldfacedesign/jscs-html-ou... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items":... | {"id" : "05808b30-e403-43f9-a415-375ab7dfa3d2", "firstName" : "Rosendo", "lastName" : "Schmeler", "email" : "rosendo.schmeler-10230@example.com", "username" : "rosendo.schmeler-10230@example.com", "password" : "bat", "organisations" : [{"id" : "4151da2c-ff17-46d4-bbfa-11fb57e76a24", "code" : "1AA", "name" : "St Marys M... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dev": {"type": "object", "properties": {"domainName": {"type": "string"}, "audience": {"type": "string"}}, "required": ["domainName", "audience"]}, "prod": {"type": "object", "properties": {"domainName": {"type": "string"}, "a... | {"dev" : {"domainName" : "api-lambda-dev.rosaenlg.org", "audience" : "https://api-lambda-dev.rosaenlg.org"}, "prod" : {"domainName" : "api-lambda-prod.rosaenlg.org", "audience" : "https://api-lambda-prod.rosaenlg.org"}, "misc" : {"tokenUrl" : "https://dev-bjq72juz.eu.auth0.com/oauth/token"}} | json_instruct | {"type": "object", "properties": {"dev": {"type": "object", "properties": {"domainName": {"type": "string"}, "audience": {"type": "string"}}, "required": ["domainName", "audience"]}, "prod": {"type": "object", "properties": {"domainName": {"type": "string"}, "audience": {"type": "string"}}, "required": ["domainName", "... |
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" : "\u81ea\u7136\u98a8\u751f\u7269\u79d1\u6280\u6709\u9650\u516c\u53f8\u98df\u54c1\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99602477", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u6a39\u6797\u5340\u67d1\u5712\u8857\u4e8c\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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "autho... | {"title" : "\u3010\uff2d\uff2d\uff24\u3011LUVORATORRRRRY!\uff08\u30c7\u30c3\u30c9\u30d7\u30fc\u30eb\uff09", "author" : "yagami_nue", "description" : "\u307f\u3093\u306a\u3082\u30c7\u30c3\u30d7\u30fc\u3092\u6620\u753b\u9928\u306b\u898b\u306b\u884c\u3053\u3046\u305c\u3002<br>\uff08\u3061\u3087\u3063\u3068\u4fee\u6b63\u30... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"bounds": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "inserts": {"type": "integer"}, "path": {"type": "string"}, "points": {"type": "integer"}, "status": {"ty... | [{"bounds" : [-50.2505, -59.0863, -53.1389, 54.957200000000014, 59.445800000000006, 56.9975], "id" : "birthResistance.las", "inserts" : 100000, "path" : "/usr/data/SIM_23/models/birthResistance.las", "points" : 100000, "status" : "inserted", "url" : "0.json"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bounds": {"type": "array", "items": {"type": "number"}}, "id": {"type": "string"}, "inserts": {"type": "integer"}, "path": {"type": "string"}, "points": {"type": "integer"}, "status": {"type": "string"}, "url": {"type": "string"}}, "required": ["bounds", "id... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "string"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, ... | {"slug" : "reality-cards", "title" : "Reality Cards", "parent_slug" : "ethereum", "path" : "ethereum/reality-cards", "repoCount" : 3, "userCount" : 4, "popularity" : 1289} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "string"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCoun... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"apiVersion": {"type": "string"}, "kind": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "spec": {"type": "object", "properties": {"selector": {"t... | {"apiVersion" : "extensions/v1beta1", "kind" : "Job", "metadata" : {"name" : "backup-job-nfs"}, "spec" : {"selector" : {"matchLabels" : {"app" : "backup-job-nfs"}}, "template" : {"metadata" : {"name" : "backup-job-nfs", "labels" : {"app" : "backup-job-nfs"}}, "spec" : {"volumes" : [{"name" : "pgdata", "persistentVolume... | json_instruct | {"type": "object", "properties": {"apiVersion": {"type": "string"}, "kind": {"type": "string"}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "spec": {"type": "object", "properties": {"selector": {"type": "object", "properties": {"matchLabels": {"type": "object", "pro... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013824": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties"... | {"type" : "Topology", "objects" : {"E01013824" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00069736", "LAD11CD" : "E06000018"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01013824": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc... | {"userId" : 86223, "cartId" : "2fd05e47-84e2-46cc-a84e-7532a5d32735", "preferredProducts" : [522, 4035, 4057, 7, 3464], "productReviews" : [{"productId" : 2259, "reviewText" : "My neighbor Julisa has one of these. She works as a bartender and she says it looks crooked.", "reviewDate" : "2018-05-24T10:35:25.0227427+03:0... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"agent_version": {"type": "string"}, "integration": {"type": "string"}, "check": {"type": "string"}, "statuses": {"type": "array", "items": {"type": "string"}}, "groups": {"type": "a... | [{"agent_version" : "5.0.0", "integration" : "elasticsearch", "check" : "elasticsearch.cluster_health", "statuses" : ["ok", "warning", "critical"], "groups" : ["host", "port"], "name" : "Sant\u00e9 du cluster", "description" : "Renvoie le `status` de [l'API Cluster Health d'Elasticsearch](http://www.elasticsearch.org/g... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"agent_version": {"type": "string"}, "integration": {"type": "string"}, "check": {"type": "string"}, "statuses": {"type": "array", "items": {"type": "string"}}, "groups": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "description... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties"... | {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.067696, 51.471978]}, "properties" : {"planning-permission-date" : "2016-07-14", "maximum-net-dwellings" : "0", "notes" : "Conversion of an existing single dwelling into x3 flats facilitated by rear and side single storey ground floor extensions an... | 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": {"planning-permission-date": {"type... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"class": {"type": "object", "properties": {"new": {"type": "string"}}, "required": ["new"]}, "instance": {"type": "object", "properties": {"doFullRepaint": {"type": "string"}, "invalidRectsFullBounds:": {"type": "string"}, "... | {"class" : {"new" : ""}, "instance" : {"doFullRepaint" : "", "invalidRectsFullBounds:" : "StephaneDucasse 2/7/2011 22:25", "recordInvalidRect:" : "MarcusDenker 9/26/2014 15:02", "reset" : "sma 6/5/2000 11:55", "updateIsNeeded" : "dgd 2/22/2003 14:43"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"new": {"type": "string"}}, "required": ["new"]}, "instance": {"type": "object", "properties": {"doFullRepaint": {"type": "string"}, "invalidRectsFullBounds:": {"type": "string"}, "recordInvalidRect:": {"type": "string"}, "reset": {"type": "st... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "string"}, "publishedAt": {"type": "integer"}, "ranking": {"type": "object", "properties": {"likes": {"type": "integer"}, "views": {"... | {"description" : "Netlify recently opened the build layer, making it possible to add custom functionality to your builds with community-contributed plugins. Meet a few of the community members who built and shared some of the first plugins available. You\u2019ll learn about the plugins they built and see a live demo of... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "id": {"type": "string"}, "publishedAt": {"type": "integer"}, "ranking": {"type": "object", "properties": {"likes": {"type": "integer"}, "views": {"type": "integer"}}, "required": ["likes", "views"]}, "thumbnails": {"t... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "heroku-postbuild": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "... | {"name" : "basic-product-screen-react", "scripts" : {"dev" : "next", "build" : "./node_modules/next/dist/bin/next build", "heroku-postbuild" : "npm run build", "start" : "./node_modules/next/dist/bin/next start -p $PORT"}, "dependencies" : {"@zeit/next-sass" : "^1.0.1", "autoprefixer" : "^9.4.7", "format-currency" : "^... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "heroku-postbuild": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "build", "heroku-postbuild", "start"]}, "dependencies": {"type": "o... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "fieldcode": {"type": "string"}, "description": {"type": "string"}, "groupcode": {"type": "string"}, "@context": {"type": "string"}, "descriptionFull": {"type": "string"}}, "required": ["code", "fiel... | {"code" : "29.060", "fieldcode" : "29", "description" : "Electrical wires and cables", "groupcode" : "060", "@context" : "https://isoics.org/jsonld/group.jsonld", "descriptionFull" : "Electrical engineering. Electrical wires and cables."} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "fieldcode": {"type": "string"}, "description": {"type": "string"}, "groupcode": {"type": "string"}, "@context": {"type": "string"}, "descriptionFull": {"type": "string"}}, "required": ["code", "fieldcode", "description", "groupcode", "@context", "descriptio... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"json_provider": {"type": "object", "properties": {"top_level": {"type": "string"}}, "required": ["top_level"]}}, "required": ["json_provider"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"json_provider" : {"top_level" : "top level!"}} | json_instruct | {"type": "object", "properties": {"json_provider": {"type": "object", "properties": {"top_level": {"type": "string"}}, "required": ["top_level"]}}, "required": ["json_provider"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-sc... | {"variants" : {"" : {"model" : "chipped:block/green_wool_3"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"metadata": {"type": "object", "properties": {"duration": {"type": "integer"}, "title": {"type": "string"}}, "required": ["duration", "title"]}, "streams": {"type": "array", "items": {"type": "object", "properties": {"sources": {... | {"metadata" : {"duration" : 887, "title" : "HLS live streaming demo"}, "streams" : [{"sources" : {"hls" : [{"src" : "https://streaming.upv.es/test-media/smil:soloUnaResolucion.smil/playlist.m3u8", "mimetype" : "video/mp4", "isLiveStream" : true}]}, "preview" : "", "content" : "presenter"}], "frameList" : []} | json_instruct | {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"duration": {"type": "integer"}, "title": {"type": "string"}}, "required": ["duration", "title"]}, "streams": {"type": "array", "items": {"type": "object", "properties": {"sources": {"type": "object", "properties": {"hls": {"type": "array",... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "stri... | {"author" : {"name" : "Jeff Guo", "email" : "gwjjeff@gmail.com"}, "name" : "cryptojs", "tags" : ["Hash", "MD5", "SHA1", "SHA-1", "SHA256", "SHA-256", "RC4", "Rabbit", "AES", "DES", "PBKDF2", "HMAC", "OFB", "CFB", "CTR", "CBC", "Base64"], "description" : "Following googlecode project crypto-js, provide standard and secu... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "h... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"LavaSurfing": {"type": "array", "items": {"type": "string"}}}, "required": ["LavaSurfing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LavaSurfing" : ["ExactlyWhatItSaysOnTheTin", "Pun", "LethalLavaLand", "ChekhovsVolcano", "MagmaMan", "ImplausibleBoardingSkills", "ClimacticVolcanoBackdrop", "ConvectionSchmonvection", "LavaIsBoilingKoolAid", "RideTheLightning", "GrandFinale", "PlayingWithFire", "BattleAura", "LethalLavaLand", "LethalLavaLand", "Defl... | json_instruct | {"type": "object", "properties": {"LavaSurfing": {"type": "array", "items": {"type": "string"}}}, "required": ["LavaSurfing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "brand_id": {"type": "string"}, "series_id": {"type": "string"}, "value": {"type": "string"}, "nameL": {"type": "string"}, "price": {"type": "string"}, "year": {"type": "strin... | [{"key" : "14117", "brand_id" : "104", "series_id" : "1020", "value" : "2008\u6b3e 1.4L MT CNG", "nameL" : "2008\u6b3e \u9510\u6b27 1.4L MT CNG", "price" : "7.18", "year" : "2008", "max_year" : "2012", "min_year" : "2008"}, {"key" : "14118", "brand_id" : "104", "series_id" : "1020", "value" : "2007\u6b3e 1.4 GL M/T", "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "brand_id": {"type": "string"}, "series_id": {"type": "string"}, "value": {"type": "string"}, "nameL": {"type": "string"}, "price": {"type": "string"}, "year": {"type": "string"}, "max_year": {"type": "string"}, "min_year": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created... | {"type" : "bundle", "id" : "bundle--870f79e3-18e5-4a30-885f-fd9e90d9bf13", "spec_version" : "2.0", "objects" : [{"type" : "relationship", "id" : "relationship--bf0a0418-c17b-4b10-991d-c8eb55e21ab2", "created" : "2019-12-08T02:27:58.373Z", "modified" : "2019-12-08T02:27:58.373Z", "relationship_type" : "uses", "source_re... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "relati... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "tags", "author... | {"name" : "Archer's Silhouette", "tags" : ["archer", "silhouette", ""], "authors" : [""], "license" : "CC0 1.0 Universal"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "tags", "authors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "... | {"schema_version" : "1.2.0", "id" : "GHSA-jxp3-8j73-7x4p", "modified" : "2022-05-13T01:38:22Z", "published" : "2022-05-13T01:38:22Z", "aliases" : ["CVE-2017-10614"], "details" : "A vulnerability in telnetd service on Junos OS allows a remote attacker to cause a limited memory and/or CPU consumption denial of service at... | 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... |
Create an example JSON object that satisfies this schema:
{"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" : "120\u53d15.45x39 PS gs\u5f39\u836f\u5305", "ShortName" : "PS gs", "Description" : "\u4e00\u5305120\u53d1\u7684\u9632\u6c34\u5305\u88c55.45x39 PS gs\u5b50\u5f39\u3002"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]},... | {"sentences" : [{"text" : {"content" : "Have really no time to take care anymore.", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0, "score" : 0}}, {"text" : {"content" : "Know to pee and poo on the grass if bring her out at the correct time.", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0, "score" : 0}}], "t... | json_instruct | {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "hunt": ... | {"lang" : {"en" : {"title" : "Ender Purge", "description" : "Find and kill endermen."}}, "hunt" : {"minecraft:enderman" : 50}, "rewards" : {"items" : {"minecraft:emerald" : 4, "minecraft:diamond_chestplate[enchanted] | minecraft:diamond_sword[enchanted]" : 1, "StoneCircleTotem" : 1}, "xp" : {"count" : 120}}} | json_instruct | {"type": "object", "properties": {"lang": {"type": "object", "properties": {"en": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}}, "required": ["en"]}, "hunt": {"type": "object", "properties": {"minecraft:enderman": {"type": "inte... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d33-94", "text" : "-2-\nNATIONAL ASSOCIATION OF EDUCATIONAL BROADCASTERS\nProposed Budget for July 1, 1954-June 30, 1955\nNAEB BUDGET SUMMARY\nSalaries and Wages $ 46,330.00\nSeminars, Travel, Research 15,500.00\nSupplies and Expenses 20,250.00\nAdministrative Charge (5% of Kellogg Grant) 2,525.00\nContingenci... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}... | {"type" : "FeatureCollection", "title" : "Theotimaion", "id" : "373905", "bbox" : [20.056569, 32.031418, 20.056569, 32.031418], "description" : "An ancient place, cited: BAtlas 38 B1 Theotimaion", "names" : ["Theotimaion"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [20.056569, 3... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 38105, "cartId" : "773aab74-ca7e-4501-8b3b-4ebee0f0fe84", "preferredProducts" : [2451, 3928, 1375, 4658, 3863, 1183, 4438, 2037, 2450], "productReviews" : [{"productId" : 2097, "reviewText" : "My neighbor Isabela has one of these. She works as a taxidermist and she says it looks monochromatic.", "reviewDate... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"],... | {"Time" : "2021-09-20T19:00:00Z", "Temp" : 23, "RelHum" : 40, "WindSpeed" : 8.2, "WindDir" : 330} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "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": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, ... | {"id" : 13931, "source" : "hcc", "verse_id" : 18162, "verse_count" : 1, "reference" : "27:10", "title" : "", "html" : " <p> <i>City. </i> Jerusalem, (Challoner) or more probably Babylon, of which he is going to speak. </p> ", "audit" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"skipLibCheck": {"type": "boolean"}, "outDir": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}}, "required": ["skipLibCheck", "outDir", "lib"]}, "in... | {"compilerOptions" : {"skipLibCheck" : true, "outDir" : "./dist", "lib" : ["es2017", "es7", "dom", "dom.iterable", "scripthost", "es2017.object"]}, "include" : ["src"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"skipLibCheck": {"type": "boolean"}, "outDir": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}}, "required": ["skipLibCheck", "outDir", "lib"]}, "include": {"type": "array", "items": {"type": "string"}}}, "r... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"registry": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["registry", "dependencies"], "$schema": "http://json-schema.org/draft-07/sche... | {"registry" : "jspm", "dependencies" : {"jquery" : "*"}} | json_instruct | {"type": "object", "properties": {"registry": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["registry", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft... | {"id" : "03", "provinceId" : "51", "regencyId" : "05", "name" : "Klungkung"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["author", "version", "uuid"]}, "decks": {"type": "object", "prop... | {"meta" : {"author" : "Michael Spengler et al.", "version" : "0.0.1", "uuid" : ""}, "decks" : {"d1" : {"meta" : {"deck_name" : "Open Source Contributor Skills", "next_card_id" : 1, "description" : "Open Source Contributor Skills"}, "cards" : {"0" : {"q" : "Where can I get some information about the GitHub CLI?", "a" : ... | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["author", "version", "uuid"]}, "decks": {"type": "object", "properties": {"d1": {"type": "object", "properties": {"meta": {"type": "object", ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"ty... | {"name" : "bob-validator", "version" : "1.4.4", "description" : "A library of validators", "main" : "index.js", "homepage" : "https://github.com/alexeybob/bob-validator.git", "scripts" : {"test" : "node test/validators.js"}, "keywords" : ["assert", "scheme", "schema", "constraints", "constraint", "validate", "validatio... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "item... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "fal-lals", "definition" : "Gay ornaments; frippery; gewgaws. [Colloq.] Thackeray."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maint... | {"name" : "backbone.js", "filename" : "backbone-min.js", "version" : "1.1.2", "description" : "Backbone supplies structure to JavaScript-heavy applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connec... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "filename": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "maintainers": {"type": "array", "items": {"type": "object", "proper... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["abort"]}}, "required": ["config"... | {"config" : {"abort" : {"already_configured" : "Slu\u017eba u\u017e je nakonfigurovan\u00e1"}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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... | [{"package" : "r-rcpptoml", "downloads" : 3100, "count" : 2884}] | 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#"} |
Please provide a valid JSON object following this 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"], "$schema":... | {"Time" : "2021-03-19T17:00:00Z", "Temp" : 16.8, "RelHum" : 63, "WindSpeed" : 4.2, "WindDir" : 329} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Multivariable Calculus | The gradient and directional derivatives.\n\ndirectionol\\n[imath]\\mathbf{D}_{\\hat{\\mathbf{u}}} \\mathbf{f}=[/imath][imath]abla \\mathbf{f} \\cdot \\hat{\\mathbf{u}}[/imath]\\nderivative\n\n\n", "url" : "https://www.youtube.com/watch?v=p38hMzyZcmA"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "backgroundColor": {"type": "string"}, "navigationBarBackgroundColor": {"type": "st... | {"pages" : ["pages/gangUp/index", "pages/myPocket/index", "pages/gangUp/subscribe/index", "pages/integralRank/index", "pages/home/index"], "window" : {"backgroundTextStyle" : "dark", "backgroundColor" : "#efefef", "navigationBarBackgroundColor" : "#ffffff", "navigationBarTitleText" : "BigCGame", "navigationBarTextStyle... | json_instruct | {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "backgroundColor": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navi... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "... | {"name" : "yang-compiler", "version" : "0.6.1", "description" : "A YANG module/compiler which parses text/json based input YANG schema into JS class hierarchy (among other things)", "author" : "Peter K Lee <peter@intercloud.net>", "main" : "lib/yang-compiler.js", "scripts" : {"test" : "mocha test", "prepublish" : "mkdi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "prep... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"@odata.context": {"type": "string"}, "@odata.nextLink": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"@odata.id": {"type": "string"}, "@odata.etag": {"type": "string"}, "@odata.e... | {"@odata.context" : "serviceRoot/$metadata#People", "@odata.nextLink" : "serviceRoot/People?%24skiptoken=8", "value" : [{"@odata.id" : "serviceRoot/People('russellwhyte')", "@odata.etag" : "W08D1694BD49A0F11", "@odata.editLink" : "serviceRoot/People('russellwhyte')", "UserName" : "russellwhyte", "FirstName" : "Russell"... | json_instruct | {"type": "object", "properties": {"@odata.context": {"type": "string"}, "@odata.nextLink": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"@odata.id": {"type": "string"}, "@odata.etag": {"type": "string"}, "@odata.editLink": {"type": "string"}, "UserName": {"type": "string"}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"... | [{"namaKab" : "PASURUAN", "originalFilename" : "Kelana Aprilianto jatim2.PNG", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 244713, "noUrut" : 1, "nama" : "H. KELANA APRILIANTO, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BEKASI", "originalFilename" : "mochammad jatim 2.PNG", "namaPartai" : "Part... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"resources": {"type": "array", "items": {}}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resources" : []} | json_instruct | {"type": "object", "properties": {"resources": {"type": "array", "items": {}}}, "required": ["resources"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object",... | {"name" : "CardSlidingView", "version" : "0.0.2", "summary" : "A similar sliding view like the one in Google News App.", "description" : "The sliding view can be used in cells of UITableView or UICollectionView.\nBe able to work as a single UIView as well.", "homepage" : "https://github.com/chunta/CardSlidingView", "li... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Rex": {"type": "string"}}, "required": ["Rex"]}, "pl... |
Please provide a valid JSON object following this schema:
{"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" : "0xb725213a735ae34e1903d1971700dd7f0858f212", "tool" : "oyente", "start" : 1563764653.698743, "end" : 1563764657.381601, "duration" : 3.6828579902648926, "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://... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"success": {"type": "boolean"}, "response": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "expandTimeout": {"type": "string"}, "disableExpandChatSound": {"type": "boole... | {"success" : true, "response" : {"enabled" : true, "id" : "209402600", "expandTimeout" : "0", "disableExpandChatSound" : true, "disableNewMessagesSound" : false, "disableButtonTooltip" : false, "tooltipButtonText" : "\u0415\u0441\u0442\u044c \u0432\u043e\u043f\u0440\u043e\u0441?"}} | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "response": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "expandTimeout": {"type": "string"}, "disableExpandChatSound": {"type": "boolean"}, "disableNewMessagesSound": {"type": "boolean"}, "disableButtonTool... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": ... | {"name" : "@alehuo/coffee-ratio", "version" : "1.0.2", "description" : "Coffee ratio calculator", "main" : "dist/src/index.js", "typings" : "dist/src/index.d.ts", "private" : false, "scripts" : {"test" : "jest", "build" : "tsc -p tsconfig.json", "typecheck" : "tsc -p tsconfig.json --noEmit"}, "keywords" : ["coffee", "c... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"},... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "strin... | {"success" : true, "code" : "SUCCESS", "data" : {"states" : null, "districts" : [{"name" : "indore", "registeredUsers" : 1524036}, {"name" : "bhopal", "registeredUsers" : 1162000}, {"name" : "gwalior", "registeredUsers" : 603096}, {"name" : "jabalpur", "registeredUsers" : 555235}, {"name" : "ujjain", "registeredUsers" ... | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"states": {"type": "null"}, "districts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "registeredUsers": {"type": "integer"}}, "required": [... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "... | {"name" : "thibaud-dauce/laravel-notifications-mattermost", "description" : "Send Laravel Notifications via Mattermost", "homepage" : "https://github.com/thibaud-dauce/laravel-notifications-mattermost", "license" : "MIT", "authors" : [{"name" : "Thibaud Dauce", "email" : "thibaud@dauce.fr", "homepage" : "https://www.fo... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "bundled items": {"type": "string"}, "model": {"type": "string"}}, "required": ["<page title>", "brand", "bundled items", "model"], "$schema": "http://... | {"<page title>" : "Contour 1080p Nflightcam Camera System Flight Cam | eBay", "brand" : "Contour, Inc", "bundled items" : "Case or Bag", "model" : "CONTOUR GPS"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "bundled items": {"type": "string"}, "model": {"type": "string"}}, "required": ["<page title>", "brand", "bundled items", "model"], "$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"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", ... | {"name" : "leehwui/appstore-iap", "description" : "PHP Appstore In-App Purchase implementation", "authors" : [{"name" : "leehwui", "email" : "leehwui@gmail.com"}], "require" : {"guzzlehttp/guzzle" : "6.2.3", "nesbot/carbon" : "1.22.1", "ext-json" : "*"}, "autoload" : {"psr-4" : {"Imdhemy\\AppStore\\" : "src/"}}, "autol... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"guzzlehttp/guz... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type... | {"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "techreborn:nickel_dust"}], "result" : {"item" : "techreborn:nickel_small_dust", "count" : 4}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "coun... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Office Depot": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string... | {"Office Depot" : {"domain" : "officedepot.com", "url" : "https://www.officedepot.com", "contact" : {"facebook" : "OfficeDepot", "twitter" : "officedepot"}, "keywords" : ["retail"]}} | json_instruct | {"type": "object", "properties": {"Office Depot": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["facebook", "twitter"]}, "keywords": {"type": "array", "i... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["360802102001", "\u957f\u5cad\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360802102200", "\u6dc7\u5858\u6751\u59d4\u4f1a", "112", "0"], ["360802102201", "\u4e1c\u5bb6\u5e84\u6751\u59d4\u4f1a", "122", "0"], ["360802102202", "\u8def\u53e3\u6751\u59d4\u4f1a", "122", "0"], ["360802102203", "\u5927\u5858\u6751\u59d4\u4... | json_instruct | {"type": "array", "items": {"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": {"eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "dependencies"]}}, "required": ["eggPlugin"], "$schema": "http://jso... | {"eggPlugin" : {"name" : "ldc", "dependencies" : ["rpc", "zoneclient", "vip"]}} | json_instruct | {"type": "object", "properties": {"eggPlugin": {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "dependencies"]}}, "required": ["eggPlugin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "tooltip-pt-notifications-alert": {"type": "string"}, "notification-link-text-expa... | {"@metadata" : {"authors" : ["Iyuqciyang"]}, "tooltip-pt-notifications-alert" : "{{GENDER:|Su}} ptqlahang", "notification-link-text-expand-all" : "muda", "notification-inbox-filter-read" : "smpug patas", "notification-inbox-filter-all" : "Kana"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "tooltip-pt-notifications-alert": {"type": "string"}, "notification-link-text-expand-all": {"type": "string"}, "notification-inbox-filter-read": {"type":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"user": {"type": "string"}, "database": {"type": "string"}, "password": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "integer"}, "max": {"type": "integer"}, "idleTimeoutMillis": {"type": "integer"}... | {"user" : "thihara", "database" : "haraka", "password" : "", "host" : "127.0.0.1", "port" : 5432, "max" : 20, "idleTimeoutMillis" : 30000, "sqlQuery" : "SELECT EXISTS(SELECT 1 FROM valid_emails WHERE email_id=$1) AS \"exists\""} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "database": {"type": "string"}, "password": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "integer"}, "max": {"type": "integer"}, "idleTimeoutMillis": {"type": "integer"}, "sqlQuery": {"type": "string"}}, "required": ["user", "database", "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": ... | {"lastUpdated" : 1655019279666, "username" : "enderscar", "scores" : [{"xp" : 8516, "rank" : 463, "cardId" : 220}, {"xp" : 13316, "rank" : 421, "cardId" : 406}, {"xp" : 15620, "rank" : 473, "cardId" : 266}]} | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "array", "i... | {"name" : "Seeed ArduPy Ultrasonic Sensor ", "version" : "1.0.0", "repository" : {"type" : "git", "url" : "https://github.com/Seeed-Studio/seeed-ardupy-ultrasonic-sensor.git"}, "dependencies" : [{"name" : "Seeed_Arduino_UltrasonicSensor", "url" : "https://github.com/Seeed-Studio/Grove_Ultrasonic_Ranger.git"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Title": {"type": "string"}, "Welcome": {"type": "string"}, "Button": {"type": "string"}}, "required": ["Title", "Welcome", "Button"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Title" : "Internationalisering met Node.js", "Welcome" : "Hallo, welkom bij de i18n demo voor Medell\u00edn JS", "Button" : "Ik ben een knop"} | json_instruct | {"type": "object", "properties": {"Title": {"type": "string"}, "Welcome": {"type": "string"}, "Button": {"type": "string"}}, "required": ["Title", "Welcome", "Button"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.115759, 32.755609], [-117.115179, 32.760953], [-117.111694, 32.759925], [-117.109178, 32.760771], [-117.10942, 32.763267], [-117.108357, 32.76326], [-117.108332, 32.764959], [-117.104724, 32.764918], [-117.104792, 32... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
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_34kfhooe", "name" : "axis1970"}, "date" : {"day" : 1641859200, "full" : 1641920969, "month" : 1640995200, "week" : 1641686400}, "id" : "t3_s1hvzj", "picture" : {"filesize" : 101409, "fullUrl" : "https://preview.redd.it/h8wauwrcc3b81.jpg?auto=webp&s=f9f4ddec055e961abc4302b456ba5ab3bad99183", "has... | 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"}},... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"uuid": {"type": "string"}, "parent": {"type": "string"}, "pid": {"type": "integer"}, "argv": {"type": "array", "items": {"type": "string"}}, "execArgv": {"type": "array", "items": {}}, "cwd": {"type": "string"}, "time": {"t... | {"uuid" : "f17bccfb-7c97-4481-ba0e-d54ff33c1c4f", "parent" : "7f1cee20-eafb-4fdd-a091-4385b95e4721", "pid" : 9037, "argv" : ["/home/travis/.nvm/versions/node/v10.16.0/bin/node", "/tmp/shelljs_9d26d7f15fc386de0a1d"], "execArgv" : [], "cwd" : "/home/travis/build/commitizen/cz-cli/test/.tmp/enduser-app", "time" : 15636028... | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "parent": {"type": "string"}, "pid": {"type": "integer"}, "argv": {"type": "array", "items": {"type": "string"}}, "execArgv": {"type": "array", "items": {}}, "cwd": {"type": "string"}, "time": {"type": "integer"}, "ppid": {"type": "integer"}, "root": {"type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "ite... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [967.233, 219.232, 1, 961.62, 247.387, 1, 921.324, 246.557, 1, 910.878, 309.468, 1, 941.209, 293.179, 1, 997.68, 245.304, 1, 1015.85, 307.745, 1, 1012.86, 365.913, 1, 940.362, 359.916, 1, 921.83, 444.423, 1, 913.37, 530.864, 1, 990.927, 359.999, 1, 995.638, 447.602, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "code": {"type": "integer"}}, "required": ["data", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"html" : "PGgzPkphdmHkuK3nmoRSZWFkV3JpdGVMb2Nr5piv5LuA5LmI77yfPC9oMz4KPGhyIC8+CjxwPuS4gOiIrOiAjOiogO+8jOivu+WGmemUgeaYr+eUqOadpeaPkOWNh+W5tuWPkeeoi+W6j+aAp+iDveeahOmUgeWIhuemu+aKgOacr+eahOaIkOaenOOAgkphdmEg5Lit55qEIDxjb2RlPlJlYWRXcml0ZUxvY2s8L2NvZGU+IOaYryBKYXZhIDUg5Lit5paw5aKe55qE5LiA5Liq5o6l5Y+j77yM5LiA5Li... | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "code": {"type": "integer"}}, "required": ["data", "code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"... | {"nft" : {"id" : 9286, "image" : "ipfs://QmWjgNuUNnJCsd9DWF3rXgU7jhePuPg4qiA2oYGwG56PTs", "attributes" : [{"trait_type" : "Eyes", "value" : "Scumbag"}, {"trait_type" : "Background", "value" : "Orange"}, {"trait_type" : "Fur", "value" : "Golden Brown"}, {"trait_type" : "Mouth", "value" : "Dumbfounded"}, {"trait_type" : ... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"author": {"type": "string"}, "classifications": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "groupIdentity": {"type": "string"}, "identity": {"type": "string"}, "shortName": {"type": ... | {"author" : "Thin2d Team", "classifications" : ["Thin2d"], "name" : "Thin2d Windows Desktop Application (Windows DirectX)", "groupIdentity" : "Thin2d.Application.WindowsDX", "identity" : "Thin2d.Application.WindowsDX.CSharp", "shortName" : "tdwindowsdx", "tags" : {"language" : "C#", "type" : "project"}, "primaryOutputs... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classifications": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "groupIdentity": {"type": "string"}, "identity": {"type": "string"}, "shortName": {"type": "string"}, "tags": {"type": "object", "properties": {"language": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "... | {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : 27, "nazev" : "Tachov"}, "clipped" : true, "id" : "d0f61e2431"}]}}, "type" : "Topology", "transform" : {"translate" : [12.52441406250001, 49.61070993807422], "scale" : [4.29153442382639e... | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"react-router.js": {"type": "string"}, "react-router.min.js": {"type": "string"}}, "required": ["react-router.js", "react-router.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"react-router.js" : "sha256-8tIcwNDdOJ2corZvjcZ+pO9i29KZANn4T7Ct2onKBUo=", "react-router.min.js" : "sha256-2p3dIJOGm0oPMyOIWBeVJ4ff27ZbS7ONjBhOohfdVCY="} | json_instruct | {"type": "object", "properties": {"react-router.js": {"type": "string"}, "react-router.min.js": {"type": "string"}}, "required": ["react-router.js", "react-router.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"conditions": {"type": "object", "properties": {"5a03282286f77456b91542ef": {"type": "string"}, "5a03289686f7745dbc6c5063": {"type": "string"}, "5a0328b086f77457a7099ea5": {"type": "string"}, "5a0328cb86f77456b91543b8": {"type"... | {"conditions" : {"5a03282286f77456b91542ef" : "Hitta i r\u00e4d WD-40, 100 ml", "5a03289686f7745dbc6c5063" : "\u00d6verl\u00e4mna WD-40, 100 ml", "5a0328b086f77457a7099ea5" : "Hitta i raid Clin torkare, 2 st", "5a0328cb86f77456b91543b8" : "\u00d6verl\u00e4mna Clin torkar, 2 st", "5a0328f586f774580168ced4" : "Hitta i ra... | json_instruct | {"type": "object", "properties": {"conditions": {"type": "object", "properties": {"5a03282286f77456b91542ef": {"type": "string"}, "5a03289686f7745dbc6c5063": {"type": "string"}, "5a0328b086f77457a7099ea5": {"type": "string"}, "5a0328cb86f77456b91543b8": {"type": "string"}, "5a0328f586f774580168ced4": {"type": "string"}... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.