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": {"c": {"type": "object", "properties": {"victoria falls": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}...
{"c" : {"victoria falls" : {"z" : {}, "l" : ["-17.9333", "25.8333"]}, "hwange" : {"z" : {}, "l" : ["-18.3667", "26.4833"]}, "gokwe" : {"z" : {}, "l" : ["-18.2167", "28.9333"]}}, "l" : []}
json_instruct
{"type": "object", "properties": {"c": {"type": "object", "properties": {"victoria falls": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "hwange": {"type": "object", "properties": {"z": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type...
{"name" : "quasar", "version" : "0.1.0", "description" : "The next generation re-write of the Phase Shift Software homepage.", "main" : "src/server.js", "scripts" : {"start" : "node src/server.js", "build" : "npm run lint && npm run build-css", "lint" : "eslint -c eslint.json src", "build-css" : "lessc src/css/main.les...
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"}, "lint": {"type": "string"}, "build-css": {"type": "string"}, ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"liveSassCompile.settings.formats": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "savePath": {"type": "string"}, "extensionName": {"type": "string"}}, "required": ["format", "savePath...
{"liveSassCompile.settings.formats" : [{"format" : "expanded", "savePath" : "/frontend/assets/stylesheets/css", "extensionName" : ".css"}], "liveSassCompile.settings.generateMap" : false, "yaml.schemas" : {"https://json.schemastore.org/electron-builder" : ["electron-builder.yml"]}}
json_instruct
{"type": "object", "properties": {"liveSassCompile.settings.formats": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "savePath": {"type": "string"}, "extensionName": {"type": "string"}}, "required": ["format", "savePath", "extensionName"]}}, "liveSassCompile.settings.generate...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[114.25, 22.25], [114.25, 22.75], [114.75, 22.75], [114.75, 22.25], [114.25, 22.25]]]}, "properties" : {"pr" : 266, "time" : 1370361600000}}
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"dateSelected": {"type": "string"}, "finishRangeSelectionPrompt": {"type": "string"}, "next": {"type": "string"}, "previous": {"type": "string"}, "selectedDateDescription": {"type": "string"}, "selectedRangeDesc...
{"dateSelected" : "izbrano: {date}", "finishRangeSelectionPrompt" : "Kliknite za dokon\u010danje izbire datumskega obsega", "next" : "Naprej", "previous" : "Nazaj", "selectedDateDescription" : "Izbrani datum: {date}", "selectedRangeDescription" : "Izbrani razpon: {dateRange}", "startRangeSelectionPrompt" : "Kliknite za...
json_instruct
{"type": "object", "properties": {"dateSelected": {"type": "string"}, "finishRangeSelectionPrompt": {"type": "string"}, "next": {"type": "string"}, "previous": {"type": "string"}, "selectedDateDescription": {"type": "string"}, "selectedRangeDescription": {"type": "string"}, "startRangeSelectionPrompt": {"type": "string...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"...
{"name" : "webrtc-paint-chat", "version" : "0.1.5", "description" : "PAINT.OK - Example of an app for drawing and communicating together.", "main" : "./server/index.js", "repository" : "https://github.com/GrafSoul/webrtc-paint-chat.git", "author" : "GrafSoul <grafsoul@gmail.com>", "license" : "MIT", "private" : true, "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "proper...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "chipped:block/nether_wart_block_3"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@serverless/serverless-event-gateway-plugin": {"type": "string"}}, "required": ["@serverless/serverless-event-gateway-plugin"]}}, "required": ["devDependen...
{"devDependencies" : {"@serverless/serverless-event-gateway-plugin" : ">=0.6.0"}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@serverless/serverless-event-gateway-plugin": {"type": "string"}}, "required": ["@serverless/serverless-event-gateway-plugin"]}}, "required": ["devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"base": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "template": {"type": "string"}}, "required": ["enabled", "template"]}, "display": {"type": "object", "properties": {"posX": {"type": "i...
{"base" : {"enabled" : true, "template" : "bar"}, "display" : {"posX" : 120, "posY" : 200, "posZ" : 0}}
json_instruct
{"type": "object", "properties": {"base": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "template": {"type": "string"}}, "required": ["enabled", "template"]}, "display": {"type": "object", "properties": {"posX": {"type": "integer"}, "posY": {"type": "integer"}, "posZ": {"type": "integer"}}, "require...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "shader": {"type": "string"}, "count": {"type": "integer"}, "vertexSize": {"type": "integer"}, "vertices": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["typ...
{"type" : "jr::geometry::triangle-strip", "shader" : "jr::shader::simple", "count" : 2, "vertexSize" : 3, "vertices" : [[0.0, 1.0, 0.0], [-1.0, -1.0, 0.0], [1.0, -1.0, 0.0], [0.0, -2.0, 0.0]]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "shader": {"type": "string"}, "count": {"type": "integer"}, "vertexSize": {"type": "integer"}, "vertices": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "shader", "count", "vertexSize", "vertices"], "$schem...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "requ...
{"name" : "STColorPicker", "version" : "1.0.0", "summary" : "A color picker presented in a UIView.", "homepage" : "https://github.com/SebastienThiebaud/STColorPicker", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sebastien THIEBAUD" : "sthiebaud@icloud.com"}, "source" : {"git" : "https://github.com/S...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "strin...
{"schemaVersion" : 1, "id" : "betterloading", "version" : "${version}", "name" : "BetterLoading Mod", "description" : "A mod that speeds up Minecraft resource loading", "authors" : ["xDark"], "contact" : {"sources" : "https://github.com/xxDark/BetterParsing"}, "license" : "MIT", "_icon" : "assets/betterparsing/icon.png...
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"sources": {"type": "str...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WHICH PUTS THE DISTINCTION BETWIXT THE ANIMAL KINGDOM AND THE INFERIOR PARTS OF NATURE.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/8275.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "500111005001", "text" : "\u9752\u6625\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500111005002", "text" : "\u8305\u5e97\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500111005003", "text" : "\u5929\u6865\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500111005004", "text" : "\u5929\u6...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "d...
{"name" : "Yearn Finance V2", "symbol" : "YFIv2", "address" : "0x53d345839E7dF5a6c8Cf590C5c703AE255E44816", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"meta": {"type": "object", "properties": {"generated_at": {"type": "string"}, "location": {"type": "string"}, "api_version": {"type": "string"}, "total_events": {"type": "integer"}}, "required": ["generated_at", "lo...
{"meta" : {"generated_at" : "2016-03-26T19:01:04.710Z", "location" : "Singapore", "api_version" : "v1", "total_events" : 1}, "events" : [{"id" : "229536602", "name" : "Spectate at the FutureMe Drone Race!!!", "description" : "This isn't an organised meetup, don't bring your quads to fly etc...! This is just to advertis...
json_instruct
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"generated_at": {"type": "string"}, "location": {"type": "string"}, "api_version": {"type": "string"}, "total_events": {"type": "integer"}}, "required": ["generated_at", "location", "api_version", "total_events"]}, "events": {"type": "array", "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "stages": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["name", "stages"]...
{"name" : "Mania 7K French Tournament 2021", "stages" : [{"id" : "1.week1", "name" : "Week 1: RO16 + Quarterfinals"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "stages": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["name", "stages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "reauth_successful": {"type": "string"}, "reauth_wrong_account": {"type": "string"}}, "r...
{"config" : {"abort" : {"already_configured" : "L'account \u00e8 gi\u00e0 configurato", "reauth_successful" : "La nuova autenticazione \u00e8 stata eseguita correttamente", "reauth_wrong_account" : "Puoi riautenticare questa voce solo con lo stesso account e hub Overkiz"}, "error" : {"cannot_connect" : "Impossibile con...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "reauth_successful": {"type": "string"}, "reauth_wrong_account": {"type": "string"}}, "required": ["already_configured", "reauth_successful", "reauth_wrong_a...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemTotal": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "req...
{"LineItem" : [{"ItemDescription" : "Grant for Coalition programs", "ItemTotal" : "$ 50,000.00", "ItemUnitCount" : "", "ItemUnitValue" : ""}], "InvoiceNumber" : "", "TotalAmount" : "", "IssuedDate" : ""}
json_instruct
{"type": "object", "properties": {"LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemTotal": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "required": ["ItemDescription", "ItemTotal", "ItemUnitCount", "Ite...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type...
{"name" : "mineflayer-gym", "version" : "1.0.0", "description" : "Environement for training RL agents for mineflayer", "main" : "index.js", "scripts" : {"test" : "npm run lint", "lint" : "standard", "fix" : "standard --fix"}, "author" : "Karang", "license" : "MIT", "dependencies" : {"nodeplotlib" : "^0.7.5", "prismarin...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "fix": {"type": "string"}}, "required": ["test", "lint", "fix"]...
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" : 25114, "cartId" : "4686b17f-2d54-4d0f-ad2f-74d39715e25e", "preferredProducts" : [3728, 3234, 2922, 1412, 3856, 86], "productReviews" : [{"productId" : 1716, "reviewText" : "My co-worker Kazuo has one of these. He says it looks transparent.", "reviewDate" : "2019-05-19T17:38:31.751983+03:00"}, {"productId" :...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Generate a valid JSON object that conforms to the following schema: {"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"...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [290.519, 212.183, 0.928027, 288.39, 266.926, 0.879338, 243.414, 266.929, 0.823418, 225.735, 335.503, 0.78253, 227.8, 402.105, 0.703203, 325.737, 263.005, 0.830894, 361.002, 321.734, 0.798814, 400.178, 368.88, 0.840114, 286.447, 402.118, 0.754439, 253.229, 404.059, 0...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"disk": {"type": "object", "properties": {"I": {"type": "number"}, "Re": {"type": "number"}, "c": {"type": "number"}, "mux": {"type": "number"}, "muy": {"type": "number"}, "n": {"type": "number"}, "q": {"type": "number"}, "roll":...
{"disk" : {"I" : 0.03341692535595821, "Re" : 17.014523738487142, "c" : 2.0, "mux" : 60.38739057617948, "muy" : 60.20954173228861, "n" : 1.0, "q" : 0.7129994481727052, "roll" : 0.12525843421339067}, "bulge" : {"I" : 0.5426489307087856, "Re" : 1.6215606413411323, "c" : 2.0, "mux" : 60.37537983202888, "muy" : 60.247018895...
json_instruct
{"type": "object", "properties": {"disk": {"type": "object", "properties": {"I": {"type": "number"}, "Re": {"type": "number"}, "c": {"type": "number"}, "mux": {"type": "number"}, "muy": {"type": "number"}, "n": {"type": "number"}, "q": {"type": "number"}, "roll": {"type": "number"}}, "required": ["I", "Re", "c", "mux",...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "MoveId": {"type": "integer"}, "Description": {"type": "string"}, "Category": {"type": "integer"}, "BasePower": {"type": "integer"}, "Type": {"type": "integer"}...
{"Id" : "mega-drain", "Name" : "Mega Drain", "MoveId" : 320, "Description" : "Inflicts damage on the target, then restores the user's HP based on the damage inflicted.\nRange: Enemy in front", "Category" : 1, "BasePower" : 8, "Type" : 4, "BasePP" : 17, "Accuracy" : 88}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "MoveId": {"type": "integer"}, "Description": {"type": "string"}, "Category": {"type": "integer"}, "BasePower": {"type": "integer"}, "Type": {"type": "integer"}, "BasePP": {"type": "integer"}, "Accuracy": {"type": "integer"}}, "requ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"src2dstTxHash": {"type": "string"}, "dst2srcTxHash": {"type": "string"}, "accountAddress": {"type": "string"}, "validatorOprAddress": {"type": "string"}}, "required": ["src2dstTxHash", "dst2srcTxHash", "accountAddress", "validat...
{"src2dstTxHash" : "3A9358924FC55CA7614A57596C77D8514926D981D00B7E13B8FEE785F53444EE", "dst2srcTxHash" : "894960D60BA3E8B1AF2C45EAF358ED57373F414A6128CD145561C2243A815759", "accountAddress" : "coho1fdcyrsy08layl9xagdm6k89jfcm7y9w0ajr55v", "validatorOprAddress" : "cohovaloper1fdcyrsy08layl9xagdm6k89jfcm7y9w0dxppvn"}
json_instruct
{"type": "object", "properties": {"src2dstTxHash": {"type": "string"}, "dst2srcTxHash": {"type": "string"}, "accountAddress": {"type": "string"}, "validatorOprAddress": {"type": "string"}}, "required": ["src2dstTxHash", "dst2srcTxHash", "accountAddress", "validatorOprAddress"], "$schema": "http://json-schema.org/draft-...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "decorative_blocks:block/birch_seat_inventory"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"...
{"name" : "Grundschule Bramsche", "id" : "NI-20941-0", "address" : "Mundersumer Str. 4, 49811\u00a0Lingen", "school_type" : "Grundschule", "phone" : "05906 333", "full_time_school" : true, "email" : "sekretariat@grundschule-bramsche.de", "programs" : {"programs" : []}, "state" : "NI", "lon" : 7.36697, "lat" : 52.457322...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"ELTZ": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "str...
{"ELTZ" : {"short_name" : "ELITE GROUP INC", "long_name" : "Elite Group, Inc.", "summary" : "Elite Group, Inc. engages in acquiring water properties for the oilfield service sector. It holds a Salt Water Disposal (Kypo) property in oil and gas land located in Carrizo Springs, Texas. The company was formerly known as El...
json_instruct
{"type": "object", "properties": {"ELTZ": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"ty...
{"categories" : ["Programming", "Web Development"], "desc" : " Part of Packt\u2019s Beginner\u2019s Guide Series, this book follows a sample application, with lots of screenshots, to help you get to grips with the techniques as quickly as possible. Moderately experienced Python programmers who want to learn how to crea...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {...
{"parent" : "inkLayerDefinition", "name" : "inkSystemNotificationsLayerDefinition", "flags" : 2, "props" : [{"type" : "rRef:inkWidgetLibraryResource", "name" : "cursorResource", "flags" : 6627016705}]}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}},...
Generate a valid JSON object that conforms to the following schema: {"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" : "stormysbakery:teacup"}, {"item" : "minecraft:water_bucket"}, {"item" : "minecraft:grass"}], "result" : {"item" : "stormysbakery:green_tea", "count" : 1}}
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "distri...
{"id" : "2003", "provinceId" : "65", "regencyId" : "01", "districtId" : "10", "name" : "Bunyu Timur"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "2starname": {"type": "string"}, "3starname": {"type": "string"}, "4starname": {"type": "string"}, "day": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "...
{"name" : "Freedom", "2starname" : "Teachings of Freedom", "3starname" : "Guide to Freedom", "4starname" : "Philosophies of Freedom", "day" : ["Monday", "Thursday", "Sunday"], "location" : "Springvale", "region" : "Mondstadt", "domainofmastery" : "Forsaken Rift"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "2starname": {"type": "string"}, "3starname": {"type": "string"}, "4starname": {"type": "string"}, "day": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "region": {"type": "string"}, "domainofmastery": {"type": "string"}}, "r...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"...
{"userId" : 71576, "cartId" : "15d0f2f6-7e61-4c34-898e-ad9f737988d2", "preferredProducts" : [4220, 1990, 4586, 4565, 3905, 1977, 2611, 1356, 68, 352], "productReviews" : [{"productId" : 3401, "reviewText" : "I saw one of these in Saint Lucia and I bought one.", "reviewDate" : "2019-08-28T16:01:48.651387+03:00"}, {"prod...
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": {"symptoms": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "object", "properties": {"en-GB": {"type": "string"}}, "required": ["en-GB"]}, "description": {"type": "object", "properties":...
{"symptoms" : [{"title" : {"en-GB" : "A high temperature (fever)"}, "description" : {"en-GB" : "This means that you feel hot to touch on your chest or back (you do not need to measure your temperature)."}, "riskWeight" : 1}, {"title" : {"en-GB" : "A new continuous cough"}, "description" : {"en-GB" : "This means coughin...
json_instruct
{"type": "object", "properties": {"symptoms": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "object", "properties": {"en-GB": {"type": "string"}}, "required": ["en-GB"]}, "description": {"type": "object", "properties": {"en-GB": {"type": "string"}}, "required": ["en-GB"]}, "riskWeight":...
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" : 1225897307, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "fabb67bce319453d8e50a32c64dfc80a", "wof:id" : 1225897307, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [21.87319, 45.93103, 21.87319, 45.93103], "geometry" : {"coordinates" : [21.87319...
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"index": {"type": "object", "properties": {"max_result_window": {"type": "integer"}, "analysis": {"type": "object", "properties": {"analyzer": {"type": "object", "properties": {"ftp_url": {"type": "object", "properties": {"type...
{"index" : {"max_result_window" : 1000000, "analysis" : {"analyzer" : {"ftp_url" : {"type" : "custom", "tokenizer" : "alphanumeric", "filter" : ["lowercase", "file_stopwords"]}, "autocomp" : {"tokenizer" : "autocomplete", "filter" : ["lowercase"]}, "case_insensitive_sort" : {"tokenizer" : "keyword", "filter" : ["lowerc...
json_instruct
{"type": "object", "properties": {"index": {"type": "object", "properties": {"max_result_window": {"type": "integer"}, "analysis": {"type": "object", "properties": {"analyzer": {"type": "object", "properties": {"ftp_url": {"type": "object", "properties": {"type": {"type": "string"}, "tokenizer": {"type": "string"}, "fi...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}...
{"stationId" : 1170514, "stationGroupId" : 1170514, "name" : "\u4e0a\u9053", "lineId" : 11705, "zipCode" : "684-0041", "pref" : "\u9ce5\u53d6\u770c", "city" : "\u5883\u6e2f\u5e02", "town" : "\u4e2d\u91ce\u753a", "longitude" : 133.230748, "latitude" : 35.531148, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"time": {"type": "number"}, "validation_metric": {"type": "number"}, "test_metric": {"type": "number"}}, "required": ["time", "validation_metric", "test_metric"], "$schema": "http://json-schema.org/draft-07/schema#"} ...
{"time" : 4.998, "validation_metric" : 0.320660456750811, "test_metric" : 0.34}
json_instruct
{"type": "object", "properties": {"time": {"type": "number"}, "validation_metric": {"type": "number"}, "test_metric": {"type": "number"}}, "required": ["time", "validation_metric", "test_metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "...
{"number" : "677", "title" : "Map Sum Pairs", "url" : "https://leetcode.com/problems/map-sum-pairs", "difficulty" : "Medium", "question" : "\nImplement a MapSum class with insert, and sum methods.\n\n\n\nFor the method insert, you&apos;ll be given a pair of (string, integer). The string represents the key and the integ...
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema....
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}...
{"name" : "@tervis/tervisadobescene7js", "version" : "0.1.99-0", "type" : "module", "main" : "TervisAdobeScene7JS.js", "repository" : {"type" : "git", "url" : "https://github.com/Tervis-Tumbler/TervisAdobeScene7JS"}, "license" : "MIT", "dependencies" : {"@tervis/adobescene7js" : "^0.1.8", "@tervis/tervisproductmetadata...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "depen...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Instellingen"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "4": {"type": "string"}},...
{"username" : "user10", "additional_items" : [], "items" : {"1" : "positive", "3" : "positive", "2" : "neutral", "4" : "neutral"}, "tweet_id" : "565916965072797696", "timespent" : 29.485804080963, "starttime" : 1429715408.6243, "itemcount" : "4", "savingtime" : 1429715438.1101}
json_instruct
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "4": {"type": "string"}}, "required": ["1", "3", "2", "4"]}, "tweet_id": {"type": "s...
Please provide a valid JSON object following this schema: {"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": "strin...
{"edges" : [[14, 35], [46, 23], [22, 12], [28, 14], [45, 23], [16, 27], [5, 23], [23, 34], [23, 20], [23, 7], [14, 32], [21, 23], [23, 6], [2, 26], [23, 43], [23, 34], [14, 23], [23, 1], [24, 23], [34, 33], [40, 10], [11, 23], [39, 23], [23, 6], [15, 22], [37, 9], [23, 6], [23, 33], [0, 23], [27, 8], [35, 23], [23, 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":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"t...
{"id" : "0x7607308efdb11c2e1aea43eaee899c3826326ec89a295b35ab55572715eba9bb", "title" : "\u5927\u5bb6\u6301\u6709\u591a\u5c11cake\uff1f", "body" : "", "choices" : ["1-10", "10-100", "100-1000", "1000-10000", "10000-100000"], "start" : 1636776000, "end" : 1636862400, "snapshot" : "12614543", "state" : "closed", "author"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "strin...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": ...
{"name" : "generator-react-redux-kit", "version" : "0.0.8", "description" : "Yeoman Generator for building SPA with React, Redux, and React Router", "keywords" : ["yeoman-generator", "react", "reactjs", "webpack", "scaffold", "framework", "component", "frontend", "front-end", "app"], "homepage" : "https://github.com/ma...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": ...
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "8205182001", "id_kecamatan" : "820518", "name" : "Man-Gega"}, {"id" : "8205182002", "id_kecamatan" : "820518", "name" : "Bajo"}, {"id" : "8205182003", "id_kecamatan" : "820518", "name" : "Pohea"}, {"id" : "8205182004", "id_kecamatan" : "820...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "loadDefault": {"type": "boolean"}, "spawnEggName": {"type": "string"}}, "required": ["name", "loadDefault", "spawnEggName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dragon", "loadDefault" : true, "spawnEggName" : "dragonspawn"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "loadDefault": {"type": "boolean"}, "spawnEggName": {"type": "string"}}, "required": ["name", "loadDefault", "spawnEggName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "item...
{"ast" : null, "code" : "import './stylesheets/application.scss';\nconsole.log('saher from admin engine/webpacker');\n\n(function () {\n window.$ = $;\n window.jQuery = jQuery;\n window.moment = moment;\n})();", "map" : {"version" : 3, "sources" : ["/Users/saher/src/dlm/admin/app/javascript/packs/admin/application.j...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/sche...
{"towns" : [{"name" : "Chippenham (bristol)", "url" : "chippenham-bristol"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"src/folder/file.js": {"type": "string"}}, "required": ["src/folder/file.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"src/folder/file.js" : "src/index.js"}
json_instruct
{"type": "object", "properties": {"src/folder/file.js": {"type": "string"}}, "required": ["src/folder/file.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": ...
{"0" : "rgb(20,20,20)", "1" : "rgb(192,109,68)", "2" : "rgb(175,185,122)", "3" : "rgb(194,168,108)", "4" : "rgb(68,71,74)", "5" : "rgb(180,190,124)", "6" : "rgb(119,131,133)", "7" : "rgb(255,255,212)", "8" : "rgb(38,38,38)", "9" : "rgb(222,124,76)", "10" : "rgb(204,216,140)", "11" : "rgb(226,196,126)", "12" : "rgb(90,9...
json_instruct
{"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"ty...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "distinguish", "long" : "<i>Meaning:</i> to \"distinguish\" (literally or figuratively).<br/><i>Usage:</i> put a difference, show marvellous, separate, set apart, sever, make wonderfully.<br/><i>Source:</i> a primitive root;"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"visible": {"type": "boolean"}, "id": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "company": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}},...
{"visible" : true, "id" : "586ab50b-81ed-4302-8405-9a01a266b1ea", "startDate" : "2008-05-26", "endDate" : "2016-03-02", "company" : "15505e0e-0006-44a6-88de-ec2b34bed94f", "title" : "Web Developer", "description" : "During this time I worked on many different projects. I started with Sisal working on SuperEnalotto, Win...
json_instruct
{"type": "object", "properties": {"visible": {"type": "boolean"}, "id": {"type": "string"}, "startDate": {"type": "string"}, "endDate": {"type": "string"}, "company": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}}, "required": ["visible", "id", "startDate", "endDate", "company", "ti...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}, "ssl-verify": {"type": "boolean"}}, "required": ["elapsed", "endpoint-url",...
{"elapsed" : "0.536", "endpoint-url" : "https://docs.tmbc.gov.uk/docs/S106/developer-agreement-contribution_20201231.csv", "entry-date" : "2022-01-04T01:06:27.858071", "exception" : "ConnectionError", "ssl-verify" : true}
json_instruct
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}, "ssl-verify": {"type": "boolean"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception", "ssl-verify"], "$schema": "http://json-schema.org...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"__default__": {"type": "object", "properties": {"cpus-per-task": {"type": "integer"}, "partition": {"type": "string"}, "mem": {"type": "string"}, "time": {"type": "string"}}, "required": ["cpus-per-task", "partition", "mem"...
{"__default__" : {"cpus-per-task" : 1, "partition" : "compute", "mem" : "10G", "time" : "5-00:00:00"}, "trinity" : {"partition" : "largemem"}, "trinityGG" : {"partition" : "largemem"}}
json_instruct
{"type": "object", "properties": {"__default__": {"type": "object", "properties": {"cpus-per-task": {"type": "integer"}, "partition": {"type": "string"}, "mem": {"type": "string"}, "time": {"type": "string"}}, "required": ["cpus-per-task", "partition", "mem", "time"]}, "trinity": {"type": "object", "properties": {"part...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"accessurl": {"type": "string"}, "pointingtourl": {"type": "string"}}, "required": ["accessurl", "pointingtourl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accessurl" : "URL prieiga", "pointingtourl" : "URL \u0161altinis nurodo"}
json_instruct
{"type": "object", "properties": {"accessurl": {"type": "string"}, "pointingtourl": {"type": "string"}}, "required": ["accessurl", "pointingtourl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"snippet": {"type": "string"}, "mime": {"type": "string"}, "image": {"type": "object", "properties": {"byteSize": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ...
{"snippet" : "Discussed 'round the office today: Not only did...", "mime" : "image/jpeg", "image" : {"byteSize" : 65711, "width" : 548, "height" : 335}, "link" : "http://68.media.tumblr.com/77b7324425b1d494f11743d8198c68cd/tumblr_n7ai29lPxg1qc9m1oo6_1280.jpg", "title" : "Discussed 'round the office today: Not only did....
json_instruct
{"type": "object", "properties": {"snippet": {"type": "string"}, "mime": {"type": "string"}, "image": {"type": "object", "properties": {"byteSize": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["byteSize", "width", "height"]}, "link": {"type": "string"}, "title": {"type...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"token": {"type": "string"}, "client": {"type": "string"}, "tag": {"type": "string"}, "case": {"type": "string"}, "separator": {"type": "string"}, "ownerId": {"type": "string"}}, "required": ["token", "client", "tag...
{"token" : "NjA5Mjc2NTU1NTIwMzc2ODMz.XU0XGA.hUgfsh5cTznbbSK7xpv1YHvojAM", "client" : "609276555520376833", "tag" : "/", "case" : "true", "separator" : "\\s+", "ownerId" : "327817420255526912"}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "client": {"type": "string"}, "tag": {"type": "string"}, "case": {"type": "string"}, "separator": {"type": "string"}, "ownerId": {"type": "string"}}, "required": ["token", "client", "tag", "case", "separator", "ownerId"], "$schema": "http://json-schema.org/...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"ty...
{"name" : "Booty Bucks", "symbol" : "BOOBS", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/ByQ9MXaamfBD8DraD5BKgXPffboJwfahknj1cmomawAi/BB.png", "decimals" : 0, "address" : "ByQ9MXaamfBD8DraD5BKgXPffboJwfahknj1cmomawAi", "chainId" : 101, "tags" : ["solana-token", "token", "so...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "d...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "cover": {"type": "string"}, "compiler": {"type": "string"}, "fix": {"type": "string"}, "watch": {"type": "string"}}, "required": ["test", "cove...
{"scripts" : {"test" : "mocha test/", "cover" : "istanbul cover _mocha", "compiler" : "tsc ./src/*.ts --outDir ./dist/", "fix" : "tslint --fix ./src/*.ts", "watch" : "tsc ./src/*.ts --watch --outDir ./dist/"}, "pre-commit" : [], "dependencies" : {"ensure-path" : "^0.0.1", "octonode" : "^0.9.2", "request" : "^2.87.0", "...
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "cover": {"type": "string"}, "compiler": {"type": "string"}, "fix": {"type": "string"}, "watch": {"type": "string"}}, "required": ["test", "cover", "compiler", "fix", "watch"]}, "pre-commit": {"type": "array", "it...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "proper...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-6.224176, 53.308366]}, "properties" : {"name" : "UCD"}}
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": {"name": {"type": "string"}}, "requ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "LastlastModuleExample", "displayName" : "LastlastModule Example"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1223060006", "district_id" : "1223060", "name" : "TELUK PIAI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object...
{"name" : "angular-formly-templates-bootstrap", "version" : "4.4.1", "author" : "Astrism <astrisms@gmail.com>", "contributors" : ["Astrism <astrisms@gmail.com>", "Kent C. Dodds <kent@doddsfamily.us>"], "homepage" : "http://formly-js.github.io/angular-formly-templates-bootstrap/", "repository" : {"type" : "git", "url" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"components": {"type": "object", "properties": {"schemas": {"type": "object", "properties": {"JSONIDModel": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}, "type": {"t...
{"components" : {"schemas" : {"JSONIDModel" : {"description" : "Request ID", "title" : "JSON-RPC Request ID", "type" : "integer", "format" : "int32", "example" : 1609070896412}, "JSONRPCVersionModel" : {"description" : "JSON-RPC Version", "title" : "JSON-RPC Version", "type" : "string", "enum" : ["2.0"], "example" : "2...
json_instruct
{"type": "object", "properties": {"components": {"type": "object", "properties": {"schemas": {"type": "object", "properties": {"JSONIDModel": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "format": {"type": "string"}, "example": {"type": "i...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chai...
{"name" : "Token FaH1", "symbol" : "FaH1U", "decimals" : 6, "address" : "FaH1UoxYzTgvTTXfnjLVeMsistMwwLTreEjkkcYKHoZZ", "chainId" : 103}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " 380 NOTE S O N TH E speech upon this occasion shows that he could think with dignity. See Suetonius, life of Otho, s. lO. Section XLVIII. (a) Augustus, Tiberius, and Caligula, were of the Julian line; Claudius, and Nero (by adoption) were of the Claudian; Galba was of the house of Servius; Otho, of the Salv...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "nu...
{"id" : "spaceballs", "symbol" : "balls", "name" : "SpaceBalls", "platforms" : {"ethereum" : "0x174ed6e64a5903b59ca7910081e1e3a2c551afc6"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "SpaceBalls is a decentralised cryptocurrency built securely on the Ethereum blockchain and created for those...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "descripti...
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" : "0x0b7b9b8f3183191e3437a7f6d451163e437f9640", "tool" : "osiris", "start" : 1564587538.340157, "end" : 1564587541.4983327, "duration" : 3.1581757068634033, "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://...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-sc...
{"assessment" : [{"name" : "Smoking cessation", "weight" : 5}, {"name" : "Aboriginal Cultural Orientation ", "weight" : 10}, {"name" : "Development of oral health promotion material", "weight" : 35}, {"name" : "Social determinants of oral health", "weight" : 50}]}
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xywh" : "960,4864,3898,497"}
json_instruct
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 101778045, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "2c9c3d8e5fc48e35f588856a574f20b5", "wof:id" : 101778045, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-6.5595, 38.14751, -6.5595, 38.14751], "geometry" : {"coordinates"...
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": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": ...
{"timestamp" : "2020-12-22T13:23:37Z", "data" : [{"data_type" : "pm10", "value" : "33.50", "max" : "38.00", "min" : "28.00", "sd" : "2.41"}, {"data_type" : "pm2.5", "value" : "30.17", "max" : "34.00", "min" : "27.00", "sd" : "1.41"}, {"data_type" : "pm1", "value" : "20.82", "max" : "23.00", "min" : "19.00", "sd" : "0.9...
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], ...
{"code" : "UMS010", "lang" : "de", "description" : "\nJahresbauleistung und sonstige Ums\u00e4tze\n\nErl\u00e4uterung f\u00fcr folgende Statistik(en):\n44200 Investitions- und Kostenstrukturerh. im Baugewerbe\n\nBegriffsinhalt:\nJahresbauleistung und sonstige Ums\u00e4tze ist die\nJahresbauleistung plus den Umsatz aus ...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[139.0, 33.333333333333336], [139.0, 33.416666666666664], [139.125, 33.416666666666664], [139.125, 33.333333333333336], [139.0, 33.333333333333336]]]}, "properties" : {"code" : 503900, "url" : "http://madefor.github.io/0410/api/v1/503900.geojson",...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"name" : "TIERNEN", "frequency" : 0, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"324230": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["324230"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"324230" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"324230": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["324230"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["152528201200", "\u5e0c\u535a\u56fe\u560e\u67e5", "210", "0"], ["152528201201", "\u5b9d\u683c\u8fbe\u97f3\u9ad9\u52d2\u560e\u67e5", "220", "0"], ["152528201202", "\u989d\u5f88\u4e4c\u82cf\u560e\u67e5", "220", "0"], ["152528201203", "\u90a3\u65e5\u56fe\u560e\u67e5", "220", "0"], ["152528201204", "\u989d\u52d2\u82cf\u5...
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": {"system_admin": {"type": "array", "items": {"type": "string"}}, "school_admin": {"type": "array", "items": {"type": "string"}}, "teacher": {"type": "array", "items": {"type": "string"}}, "parent": {"type": "array", ...
{"system_admin" : ["create_school", "read_school", "update_school", "delete_school"], "school_admin" : ["create_school", "read_school", "update_school", "delete_school"], "teacher" : ["create_assessment", "read_assessment", "update_assessment", "delete_assessment"], "parent" : ["create", "read", "update", "delete"]}
json_instruct
{"type": "object", "properties": {"system_admin": {"type": "array", "items": {"type": "string"}}, "school_admin": {"type": "array", "items": {"type": "string"}}, "teacher": {"type": "array", "items": {"type": "string"}}, "parent": {"type": "array", "items": {"type": "string"}}}, "required": ["system_admin", "school_adm...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"oneLineDescription": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["oneLineDescription", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"oneLineDescription" : "nop is supported", "tags" : []}
json_instruct
{"type": "object", "properties": {"oneLineDescription": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["oneLineDescription", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "objec...
{"dbId" : "444473", "name" : "Formyl peptide receptors bind formyl peptides and many other ligands", "children" : [], "size" : 1, "symbols" : ["FPR1", "FPR3", "FPR2", "ANXA1", "CCL23", "MT-RNR2", "APP", "SAA1", "HEBP1"], "gallusOrth" : {"sharedSymbols" : ["FPR1", "FPR3", "FPR2", "ANXA1", "CCL23", "MT-RNR2", "APP", "SAA...
json_instruct
{"type": "object", "properties": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "object", "properties": {"sharedSymbols": {"type": "array", "items": {"type...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"sass": {"type": "string"}, "watch": {"type": "string"}, "prestart": {"type": "string"}, "...
{"name" : "good-frontender", "version" : "0.0.1", "description" : "Source code for the my frontend development blog - http://goodfrontender.com", "scripts" : {"sass" : "sass ./src/assets/css/site.scss:./src/assets/css/site.css --style=compressed", "watch" : "npm run sass -- --watch", "prestart" : "npm run sass", "start...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"sass": {"type": "string"}, "watch": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}, "prebuild": {"type": "string"...
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"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "esm": {"type": "string"}, ...
{"name" : "harmony-erc20", "version" : "1.0.0", "description" : "Harmony sample ERC20 deploy", "main" : "truffle.js", "dependencies" : {"dotenv" : "^8.2.0", "esm" : "^3.2.25", "express" : "^4.17.1"}, "scripts" : {"start" : "cp ./../.env ./.env; node src/app.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "esm": {"type": "string"}, "express": {"type": "string"}}, "required": ["dotenv", "e...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"dependencies": {"type": "array", "items": {}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "prope...
{"dependencies" : [], "generated" : {"js" : "module.exports=\"/instagram.b0541397.png\";"}, "hash" : "26b65b3c69220aba6edc015a20be9519", "cacheData" : {}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "array", "items": {}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["dependencies", "generated", "hash...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["luigis_mansion:room/hidden/hallway_16/load/set_loaded", "luigis_mansion:room/hidden/hallway_16/load/lights", "luigis_mansion:room/hidden/hallway_16/load/fake_doors", "luigis_mansion:room/hidden/hallway_16/load/vacuumable"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, ...
{"title" : "Membership Inference Attacks Against Machine Learning Models.", "fields" : ["data modeling", "machine learning", "inference", "computer security", "inference attack"], "abstract" : "We quantitatively investigate how machine learning models leak information about the individual data records on which they wer...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "s...
[{"namaKab" : "KOTA SURABAYA", "originalFilename" : "mustofa.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" : 175896, "noUrut" : 1, "nama" : "MUSTOFA, S.H.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "MOJOKERTO", "originalFilename" : "eka hernawati.jpg", "namaPartai" : "Partai Keadilan Sejahtera", "id" ...
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"generator-cheminfo": {"type": "object", "properties": {"promptValues": {"type": "object", "properties": {"userName": {"type": "string"}, "email": {"type": "string"}}, "required": ["userName", "email"]}}, "req...
{"generator-cheminfo" : {"promptValues" : {"userName" : "Jose Alejandro Bolanos Arroyave", "email" : "jose.bolanos@correounivalle.edu.co"}}}
json_instruct
{"type": "object", "properties": {"generator-cheminfo": {"type": "object", "properties": {"promptValues": {"type": "object", "properties": {"userName": {"type": "string"}, "email": {"type": "string"}}, "required": ["userName", "email"]}}, "required": ["promptValues"]}}, "required": ["generator-cheminfo"], "$schema": "h...
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": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "o...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.880527, 52.485586]}, "properties" : {"site-plan-url" : "https://maps.birmingham.gov.uk/webapps/shlaa/", "notes" : "2016/05749/PA", "planning-permission-type" : "full planning permission", "site" : "N867", "site-address" : "52 Windsor Street South,...
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": {"site-plan-url": {"type": "string"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "addons": {"type": "array", "items": {"type": "string"}}, ...
{"name" : "predefine", "description" : "A representation of stored and retrieved information that does not qualify to belongs to their own domain model.", "repository" : "https://github.com/lykmapipo/predefine.git", "keywords" : ["lykmapipo", "mongoose", "mongoose-module", "predefined", "predefine", "settings", "config...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "addons": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"RUNTIME_ENV": {"type": "objec...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "objec...
{"name" : "text-blaze-templates", "version" : "1.0.0", "description" : "Templates for TextBlaze to use with Roam Research", "keywords" : ["TextBlaze", "Roam-Research"], "homepage" : "https://github.com/jacksteamdev/text-blaze-templates#readme", "bugs" : {"url" : "https://github.com/jacksteamdev/text-blaze-templates/iss...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "reposit...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "...
{"stationId" : 1133316, "stationGroupId" : 1131904, "name" : "\u6d66\u548c", "lineId" : 11333, "zipCode" : "330-0063", "pref" : "\u57fc\u7389\u770c", "city" : "\u3055\u3044\u305f\u307e\u5e02\u6d66\u548c\u533a", "town" : "\u9ad8\u7802", "longitude" : 139.657109, "latitude" : 35.858496, "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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"],...
{"id" : "1001", "provinceId" : "53", "regencyId" : "11", "districtId" : "08", "name" : "Lumbukore"}
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#"}
Create a JSON structure that matches this schema definition: {"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...
{"id" : 404348993, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "e96cf305cb19328ea0d3537fe0aae610", "wof:id" : 404348993, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.07944, 48.68861, 3.07944, 48.68861], "geometry" : {"coordinates"...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1957, 6], [2004, 6], [2005, 7], [2010, 6], [2011, 6], [2012, 10], [2013, 8], [2014, 11]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"vulnerability": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "sink": {"type": "string"}, "sanitizers": {"type": "array", "items": {"type": "string"}}}, "required": ["v...
[{"vulnerability" : "SQL injection", "sources" : ["a"], "sink" : "execute", "sanitizers" : ["mogrify", "escape_string"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"vulnerability": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "sink": {"type": "string"}, "sanitizers": {"type": "array", "items": {"type": "string"}}}, "required": ["vulnerability", "sources", "sink", "sanitizers"]}, "$schem...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "ISO3": {"type": "string"}}, "required": ["name", "ISO3"]}, "geometry": {"type": "object", "properties": {"type...
{"type" : "Feature", "properties" : {"name" : "American Samoa", "ISO3" : "ASM"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-170.542511, -14.297503], [-170.546112, -14.298613], [-170.550293, -14.298334], [-170.555878, -14.295], [-170.560822, -14.287781], [-170.54837, -14.282501], [-170.540039, -14.28389...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "ISO3": {"type": "string"}}, "required": ["name", "ISO3"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}...
{"title" : "Dynomutt, Dog Wonder", "genre" : "", "creators" : ["Joe Ruby", "Ken Spears"], "cast" : [], "country_of_origin" : "United States", "seasons" : 0, "episodes" : 20, "start_date" : "Sat Sep 11 00:00:00 EDT 1976", "end_date" : "Sat Oct 29 00:00:00 EDT 1977"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "genre": {"type": "string"}, "creators": {"type": "array", "items": {"type": "string"}}, "cast": {"type": "array", "items": {}}, "country_of_origin": {"type": "string"}, "seasons": {"type": "integer"}, "episodes": {"type": "integer"}, "start_date": {"type":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "fe72919ae8ca83035653c87c686d8316b22c4719"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}