input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type":...
{"name" : "Stomt-iOS-SDK", "version" : "2.0.1", "summary" : "Integrate your iOS app with stomt.com", "description" : "Implement stomt.com feedback system in your iOS application.", "homepage" : "https://github.com/stomt/stomt-ios-sdk", "license" : {"type" : "MIT"}, "authors" : {"H3xept" : "h3xept@gmail.com"}, "social_m...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "authors": {"type": "object", "p...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["sta...
{"name" : "blog-express", "version" : "0.0.5", "private" : true, "scripts" : {"start" : "node app.js", "test" : "mocha test"}, "dependencies" : {"express" : "4.1.2", "jade" : "1.3.1", "stylus" : "0.44.0", "mongoose" : "3.8.4", "cookie-parser" : "1.0.1", "body-parser" : "1.0.2", "method-override" : "1.0.0", "serve-favic...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"express":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"errorMessage" : "Invalid Serverless Application Specification document. Number of errors found: 1. SourceVpcBlacklist must be a list of strings. Use IntrinsicVpcBlacklist instead for values that use Intrinsic Functions"}
json_instruct
{"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"...
{"uuid" : "6773162f-f9ec-466a-aa8a-3dd7acaee1f8", "befores" : [{"name" : "path_dict", "status" : "passed", "start" : 1580625313488, "stop" : 1580625313488}], "start" : 1580625313488, "stop" : 1580625313562}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"application": {"type": "object", "properties": {"db": {"type": "object", "properties": {"uri": {"type": "string"}, "authSource": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "poo...
{"application" : {"db" : {"uri" : "mongodb://mongodb:27017/diabetes-assistant-bot", "authSource" : "admin", "user" : "", "password" : "", "poolSize" : 10, "ssl" : false, "useNewUrlParser" : true, "useCreateIndex" : true}, "telegram" : {"url" : ""}, "hapiFhir" : {"baseURL" : "http://hapi.fhir.org/baseDstu3", "patientId"...
json_instruct
{"type": "object", "properties": {"application": {"type": "object", "properties": {"db": {"type": "object", "properties": {"uri": {"type": "string"}, "authSource": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "poolSize": {"type": "integer"}, "ssl": {"type": "boolean"}, "useNewUrlParse...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$sche...
{"name" : "Token 3MPs", "symbol" : "3MPso", "decimals" : 6, "address" : "3MPsoFehqyGLzbx7GmBcMb1TbFuPJvqNDnSz5y1fANri", "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {...
{"origin" : "http://wallbase.cc/wallpaper/59473", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-59473.jpg", "views" : 1327, "x_resolution" : 1920, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 1200, "colors" : ["#d58300", "#f9b364", "#b67151", "#fa2524", "#a35703"], "comments" : [""], ...
json_instruct
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}...
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": {"test": {"type": "string"}}, "required": ["t...
{"name" : "nforce-analytics", "version" : "1.0.0", "description" : "Salesforce analytics api plugin for nforce", "main" : "index.js", "scripts" : {"test" : "mocha ./tests"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kevinohara80/nforce-analytics.git"}, "keywords" : ["nforce", "nforce-plugin", "sal...
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"css/intlTelInput.css": {"type": "string"}, "js/intlTelInput.js": {"type": "string"}, "js/intlTelInput.min.js": {"type": "string"}, "lib/libphonenumber/build/utils.js": {"type": "string"}}, "required": ["css/intlTelI...
{"css/intlTelInput.css" : "sha256-bIFuJaxUgUmzyjOLjnOw5tsh6p0mIPP6viPMGSLxc6M=", "js/intlTelInput.js" : "sha256-g7x/Ke+dh872myEmmikY8rYtVm9fiS+aM+UJvKknV0I=", "js/intlTelInput.min.js" : "sha256-mltDpaeo+eSTxUKy7RzPasarhMRKz8IrLeq+JXMgvRk=", "lib/libphonenumber/build/utils.js" : "sha256-IuFHGBn8Q9BFlHgzMWT9gmiXpSOyJViS8...
json_instruct
{"type": "object", "properties": {"css/intlTelInput.css": {"type": "string"}, "js/intlTelInput.js": {"type": "string"}, "js/intlTelInput.min.js": {"type": "string"}, "lib/libphonenumber/build/utils.js": {"type": "string"}}, "required": ["css/intlTelInput.css", "js/intlTelInput.js", "js/intlTelInput.min.js", "lib/libpho...
Based on the schema below, produce a valid JSON object: {"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": ...
{"name" : "API Coin", "symbol" : "API", "logoURI" : "https://theblockchainapi-website.s3.amazonaws.com/logo512.png", "decimals" : 9, "address" : "cPQm9UM1ekMeAgRcYGLfNcBC65SLA8o2BVTaBUA7kTg", "chainId" : 101, "tags" : ["community-token", "platform"], "extensions" : {"website" : "https://blockchainapi.com/", "twitter" :...
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"}}, "extensions": {"type": "object", "properties"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "stri...
{"id" : 106542, "info" : {"name" : "Game*Spark \u30b9\u30c3\u30ad\u30ea\u8868\u793a", "description" : "Game*Spark \u3055\u3093\u306e\u8a18\u4e8b\u3092\u8aad\u307f\u3084\u3059\u3044\u3088\u3046\u306b\u30b9\u30c3\u30ad\u30ea\u3068\u8868\u793a\u3057\u307e\u3057\u305f\u3002\r\n\u6d88\u3057\u304d\u308c\u3066\u3044\u306a\u30...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": [...
{"id" : "c8274432-c069-4c14-b2c5-8e78d17a4e9f", "name" : "stag", "values" : [{"key" : "api_server", "value" : "https://stagingpepo.com", "enabled" : true}], "_postman_variable_scope" : "environment", "_postman_exported_at" : "2019-06-10T13:33:21.851Z", "_postman_exported_using" : "Postman/7.1.1"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"ngx-address": {"type": "string"}}, "req...
{"name" : "ngx-address-data-tw", "version" : "1.0.0", "module" : "index.js", "typings" : "index.d.ts", "peerDependencies" : {"ngx-address" : "^1.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"ngx-address": {"type": "string"}}, "required": ["ngx-address"]}}, "required": ["name", "version", "module", "ty...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "input": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "optional":...
{"title" : "date", "desc" : "(year,month,day, etc.) extract date information from string", "input" : [{"name" : "data", "type" : "string", "description" : "data with date time information", "optional" : false}], "params" : [{"name" : "format", "type" : "string", "description" : "see https://golang.org/pkg/time/", "opti...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "input": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "optional": {"type": "boolean"}}, "required": ["name", "type", "desc...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cmd": {"type": "string"}, "data": {"type": "object", "properties": {"title": {"type": "string"}, "area_id": {"type": "integer"}, "parent_area_id": {"type": "integer"}, "area_name": {"type": "string"}, "parent_area_name": {"...
{"cmd" : "ROOM_CHANGE", "data" : {"title" : "\u73a9\u4f1a\u513f\u73a9\u4f1a\u513f", "area_id" : 86, "parent_area_id" : 2, "area_name" : "\u82f1\u96c4\u8054\u76df", "parent_area_name" : "\u7f51\u6e38", "live_key" : "129686069351480645", "sub_session_key" : "129686069351480645sub_time:1615798624"}}
json_instruct
{"type": "object", "properties": {"cmd": {"type": "string"}, "data": {"type": "object", "properties": {"title": {"type": "string"}, "area_id": {"type": "integer"}, "parent_area_id": {"type": "integer"}, "area_name": {"type": "string"}, "parent_area_name": {"type": "string"}, "live_key": {"type": "string"}, "sub_session...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Pomn\u00edk osvobozen\u00ed u obecn\u00edho \u00fa\u0159adu v Nov\u00e9 Vsi v Hor\u00e1ch", "P31" : "http://www.wikidata.org/entity/Q4989906", "P31^label:cs" : "Pomn\u00edk", "P131^label:cs" : "Nov\u00e1 Ves v Hor\u00e1ch", ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"widgetLabel": {"type": "string"}, "points": {"type": "string"}, "lines": {"type": "string"}, "polygons": {"type": "string"}, "creatingLegend": {"type": "string"}, "noLegend": {"type": "string"}, "dotValue": {"t...
{"widgetLabel" : "Jelmagyar\u00e1zat", "points" : "Pontok", "lines" : "Vonalak", "polygons" : "Polygonok", "creatingLegend" : "Jelmagyar\u00e1zat l\u00e9trehoz\u00e1sa", "noLegend" : "Nincs jelmagyar\u00e1zat", "dotValue" : "1 pont = {value} {unit}", "currentObservations" : "Jelenlegi megfigyel\u00e9sek", "previousObse...
json_instruct
{"type": "object", "properties": {"widgetLabel": {"type": "string"}, "points": {"type": "string"}, "lines": {"type": "string"}, "polygons": {"type": "string"}, "creatingLegend": {"type": "string"}, "noLegend": {"type": "string"}, "dotValue": {"type": "string"}, "currentObservations": {"type": "string"}, "previousObserv...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, ...
{"id" : "b8deb976-8791-4120-a323-31e4ef214493", "name" : "Brooke Hill Academy", "code" : "5", "address" : {"addressLine1" : "Brooke Road", "addressLine2" : "Oakham", "town" : "Rutland", "postcode" : "LE15 6HQ"}, "organisation" : {"id" : "be910803-8849-4a51-8edb-9437052c53c9", "code" : "1F1", "name" : "The Rutland and D...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]...
{"componentChunkName" : "component---src-pages-konfigurator-index-tsx", "path" : "/konfigurator/", "result" : {"pageContext" : {}}}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http:...
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": "array", "items": {"type": "array", "ite...
{"contract" : "0x417bdc58ef9a3d7de04a66ab84ed13048d9a82bb", "tool" : "manticore", "start" : 1564124157.7787294, "end" : 1564125965.3651087, "duration" : 1807.586379289627, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "arr...
{"version" : "4.5.7", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[300.0, 844.0], [727.0, 913.0], [740.0, 1055.0], [305.0, 984.0]], "group_id" : 2, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[250.0, 698.0], [630.0, 768.0], [635.9649122807017, 908.7719298245613], [259.0, 840.0]]...
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "group...
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" : "igor_vdj", "downloads" : 4100, "count" : 3754}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:mined": {"type": "object", "properties": {"minecraft:stone": {"type": "integer"}}, "required": ["minecraft:stone"]}, "minecraft:used": {"type": "object", "properti...
{"stats" : {"minecraft:mined" : {"minecraft:stone" : 3}, "minecraft:used" : {"minecraft:diamond_pickaxe" : 4}, "minecraft:custom" : {"minecraft:time_since_rest" : 686, "minecraft:leave_game" : 1, "minecraft:play_time" : 686, "minecraft:time_since_death" : 686, "minecraft:walk_one_cm" : 1503, "minecraft:total_world_time...
json_instruct
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:mined": {"type": "object", "properties": {"minecraft:stone": {"type": "integer"}}, "required": ["minecraft:stone"]}, "minecraft:used": {"type": "object", "properties": {"minecraft:diamond_pickaxe": {"type": "integer"}}, "required": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "...
{"text" : {"0" : {"m1" : "\u0627\u0632 \u062c\u0645\u0644\u0647\u0654 \u0628\u0646\u062f\u06af\u0627\u0646 \u0645\u0646\u0634 \u0628\u0646\u062f\u0647\u200c\u062a\u0631\u0645", "m2" : "\u0648\u0632 \u0686\u0634\u0645 \u062e\u062f\u0627\u0648\u0646\u062f\u06cc\u0634 \u0627\u0641\u06a9\u0646\u062f\u0647\u200c\u062a\u0631...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "dateUpdated": {"type": "string"}}, "required": ["itemDisplayName", "des...
{"itemDisplayName" : "SQL Server 2014 SP2 Enterprise with Auto Backup", "description" : "This template will create a SQL Server 2014 SP2 Enterprise edition with Auto Backup feature enabled", "summary" : "SQL Server 2014 SP2 Enterprise edition with Auto Backup feature enabled", "githubUsername" : "weidaiMS", "dateUpdate...
json_instruct
{"type": "object", "properties": {"itemDisplayName": {"type": "string"}, "description": {"type": "string"}, "summary": {"type": "string"}, "githubUsername": {"type": "string"}, "dateUpdated": {"type": "string"}}, "required": ["itemDisplayName", "description", "summary", "githubUsername", "dateUpdated"], "$schema": "htt...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ...
{"index" : 4141, "hash" : 4147232923, "artDyeHash" : 4147232923, "redacted" : false, "dyeManifestHash" : 1120355995, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["360121107001", "\u5188\u4e0a\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["360121107002", "\u5e02\u6c4a\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["360121107003", "\u4e07\u820d\u8857\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["360121107004", "\u6c34\u5efa\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"terraformer.js": {"type": "string"}, "terraformer.min.js": {"type": "string"}}, "required": ["terraformer.js", "terraformer.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"terraformer.js" : "sha256-31CSoxhzWYLPLj2OnmUSqgGddAcVlTSWO2MvBZvJ/9Q=", "terraformer.min.js" : "sha256-Ei1mWWI7IQ6csT1mEI5YAA4jGKqQates8x56E8PdEoQ="}
json_instruct
{"type": "object", "properties": {"terraformer.js": {"type": "string"}, "terraformer.min.js": {"type": "string"}}, "required": ["terraformer.js", "terraformer.min.js"], "$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#"}
[["420529113001", "\u957f\u4e50\u576a\u5c45\u59d4\u4f1a", "121", "0"], ["420529113201", "\u6d1e\u53e3\u6751\u59d4\u4f1a", "122", "0"], ["420529113202", "\u8170\u724c\u6751\u59d4\u4f1a", "122", "0"], ["420529113203", "\u767d\u5ca9\u576a\u6751\u59d4\u4f1a", "220", "0"], ["420529113204", "\u6708\u5c71\u6751\u59d4\u4f1a", ...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"...
{"id" : "35426", "name" : {"en" : "Temir"}, "country" : "KZ", "region" : "AKT", "identifiers" : {"wmo" : "35426", "ghcn" : "KZ000035426", "usaf" : "354260"}, "location" : {"latitude" : 49.15, "longitude" : 57.1167, "elevation" : 236}, "timezone" : "Asia/Aqtobe"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}, "usaf...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 28184, "cartId" : "0611b213-8202-40f5-9196-8adea719871b", "preferredProducts" : [808], "productReviews" : [{"productId" : 4349, "reviewText" : "heard about this on songo radio, decided to give it a try.", "reviewDate" : "2019-03-28T04:24:11.9482909+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"user": {"type": "string"}, "home": {"type": "string"}, "type": {"type": "string"}, "server": {"type": "string"}, "localPort": {"type": "integer"}, "remote": {"type": "integer"}, "autoStart": {"type": "boolean"}...
{"user" : "test", "home" : "https://cunchu.site/lamp/index.html", "type" : "tcp", "server" : "lamp.run:7000", "localPort" : 3389, "remote" : 6010, "autoStart" : true}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "home": {"type": "string"}, "type": {"type": "string"}, "server": {"type": "string"}, "localPort": {"type": "integer"}, "remote": {"type": "integer"}, "autoStart": {"type": "boolean"}}, "required": ["user", "home", "type", "server", "localPort", "remote", "a...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "perl-biox-workflow", "downloads" : 10400, "count" : 6253}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"name": {"type": "string"}, "location_type": {"type": "string"}}, "req...
{"data" : {"id" : "4debca7f-9251-403f-b893-ff0e78bd6af4", "type" : "location", "attributes" : {"name" : "Jamaica", "location_type" : "municipality"}, "relationships" : {"parent" : {"data" : {"id" : "5331a4ba-ef75-4b7f-8cdd-8ec39e692bbd", "type" : "location"}}}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"name": {"type": "string"}, "location_type": {"type": "string"}}, "required": ["name", "location_type"]}, "relationships": {"type": "object", ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/index.js": {"type": "boolean"}}, "required": ["static/development/pages/index.js"]}}, "required": ["h", "c"], "$schema": "http://json-...
{"h" : "b59ca71140a54ea8b0d7", "c" : {"static/development/pages/index.js" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/index.js": {"type": "boolean"}}, "required": ["static/development/pages/index.js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}}, "required": ["node-sass"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": ...
{"main" : "./src/index.js", "devDependencies" : {"node-sass" : "^4.7.2"}, "name" : "ui-interface", "description" : "UI interface", "version" : "0.2.8", "directories" : {"test" : "test"}, "dependencies" : {}, "scripts" : {"test" : "node ./test/index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/s...
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}}, "required": ["node-sass"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "directories": {"type": "object", "properties": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"epoch": {"type": "integer"}, "loss_trn": {"type": "number"}, "loss_val": {"type": "number"}, "acc_val": {"type": "number"}, "lwlrap_val": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integ...
{"epoch" : 24, "loss_trn" : 0.05989426794488734, "loss_val" : 0.10972414709261206, "acc_val" : 0.4918032786885246, "lwlrap_val" : 0.657336345911026, "_step" : 23, "_runtime" : 8239, "_timestamp" : 1613274213}
json_instruct
{"type": "object", "properties": {"epoch": {"type": "integer"}, "loss_trn": {"type": "number"}, "loss_val": {"type": "number"}, "acc_val": {"type": "number"}, "lwlrap_val": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}}, "required": ["epoch", "loss_...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash-node": {"type": "object", "propert...
{"name" : "sentence-extractor", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"lodash-node" : {"version" : "3.10.2", "resolved" : "https://registry.npmjs.org/lodash-node/-/lodash-node-3.10.2.tgz", "integrity" : "sha1-JZjVsbVOami0y1ROXHMJU8v2Mvc="}, "uuid" : {"version" : "8.3.1", "reso...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"lodash-node": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "st...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"docs": {"type": "object", "properties": {"Getting Started": {"type": "array", "items": {"type": "string"}}, "Guides": {"type": "array", "items": {"type": "string"}}, "Hot Module Reloading": {"type": "array", "items": {"type": ...
{"docs" : {"Getting Started" : ["getting_started", "configuration"], "Guides" : ["cli", "recipes", "codepush"], "Hot Module Reloading" : ["hmr_setup", "hmr_api", "hmr_react_navigation", "hmr_react_native_navigation"]}}
json_instruct
{"type": "object", "properties": {"docs": {"type": "object", "properties": {"Getting Started": {"type": "array", "items": {"type": "string"}}, "Guides": {"type": "array", "items": {"type": "string"}}, "Hot Module Reloading": {"type": "array", "items": {"type": "string"}}}, "required": ["Getting Started", "Guides", "Hot...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "pr...
{"name" : "madnesscode/voluum", "description" : "Voluum SDK for PHP", "keywords" : ["voluum", "sdk"], "type" : "library", "version" : "1.2", "require" : {}, "require-dev" : {"phpunit/phpunit" : "5.6"}, "license" : "MIT", "authors" : [{"name" : "Marko Janosevic", "email" : "madness.studio@gmail.com"}], "autoload" : {"ps...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "prop...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["410204001000", "\u76f8\u56fd\u5bfa\u8857\u9053", "4", "1"], ["410204002000", "\u65b0\u534e\u8857\u9053", "4", "1"], ["410204003000", "\u5367\u9f99\u8857\u9053", "4", "1"], ["410204004000", "\u5dde\u6865\u8857\u9053", "4", "1"], ["410204005000", "\u897f\u53f8\u95e8\u8857\u9053", "4", "1"], ["410204006000", "\u5357\u8...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "3aa427440885ff0764e5", "c" : {"app" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-...
{"word" : "Indifferentism", "definitions" : ["The belief that differences of religious belief are of no importance."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "number"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[{"count" : 25.71, "_tpl" : "5696686a4bdc2da3298b456a"}]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "number"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "integer"}, "source": {"type": "string"}, "authorIds": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "title": {"type": "string"}, "link": {"type": "string"}, "tags": {"type...
{"version" : 1, "source" : "other", "authorIds" : ["patilshreyas"], "author" : "Shreyas Patil", "title" : "Leveraging the Semaphore concept in Coroutines to limit the parallelism \ud83d\udd00", "link" : "https://blog.shreyaspatil.dev/leveraging-the-semaphore-concept-in-coroutines-to-limit-the-parallelism", "tags" : ["k...
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "source": {"type": "string"}, "authorIds": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "title": {"type": "string"}, "link": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["versi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "...
{"n_dim" : 55, "n_trials" : 80, "objective" : "markowitz_analytic_on_cube", "white" : "bobyqa_noise", "black" : "platypus_evolutionary", "traceback" : ["passing", "passing"], "best_val" : [25.869882419713395, 20.88081630414857], "best_x" : [[0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.4, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
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" : "\u7def\u9054\u6a5f\u68b0\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99657927", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u5357\u5e02\u4ec1\u5fb7\u5340\u6210\u529f\u91cc\u4fdd\u751f\u6771\u8def206\u865f1\u6a13", "...
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...
Generate sample JSON data that conforms to the following schema definition: {"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": {...
{"\u5de5\u5ee0\u540d\u7a31" : "\u6377\u5eb7\u98df\u54c1\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "03002196", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u8606\u7af9\u5340\u9577\u8208\u91cc\u5357\u5d01\u8def\u4e8c\u6bb522...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "insignment", "definition" : "A token, mark, or explanation. [Obs.] Sir T. Elyot."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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", "...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [427.613, 234.745, 1, 426.773, 268.042, 1, 402.798, 267.359, 1, 403.67, 305.356, 1, 380.768, 298.436, 1, 452.986, 262.877, 1, 488.614, 275.53, 1, 464.081, 246.922, 1, 414.388, 365.887, 1, 400.365, 413.352, 1, 399.894, 448.843, 1, 444.801, 364.297, 1, 441.054, 426.667...
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "prop...
{"name" : "data-api-client", "description" : "A lightweight wrapper that simplifies working with the Amazon Aurora Serverless Data API", "keywords" : ["serverless", "data-api", "aurora", "aws"], "license" : "MIT", "homepage" : "https://github.com/jeremydaly/data-api-client#readme", "repository" : {"type" : "git", "url"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"...
{"asset" : {"format" : "jpg", "id" : "88a1999fb79975ae4b16b83ad9e858d5", "name" : "dimas%20-%20o.jpg", "path" : "file:C:/Python27/YOLO%20+%20GABOR/Data/Source_Images/Training_Images/dimas%20-%20o.jpg", "size" : {"width" : 1196, "height" : 1795}, "state" : 2, "type" : 1}, "regions" : [{"id" : "CPdaa3RDm", "type" : "RECT...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"format": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "path": {"type": "string"}, "size": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}}, "required": ["width", "heig...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"4871": {"type": "string"}, "4873": {"type": "string"}}, "required": ["4871", "4873"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"4871" : "4872", "4873" : "4874"}
json_instruct
{"type": "object", "properties": {"4871": {"type": "string"}, "4873": {"type": "string"}}, "required": ["4871", "4873"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"boxContainers": {"type": "array", "items": {"type": "string"}}, "needParseInfo": {"type": "array", "items": {"type": "string"}}, "parseInfo": {"type": "object", "properties": {"tfdt": {"type": "object", "properties": {"version...
{"boxContainers" : ["avc1", "dinf", "edts", "ilst", "mdia", "minf", "moov", "moof", "mvex", "stbl", "traf", "trak", "udta"], "needParseInfo" : ["dref", "meta", "stsd"], "parseInfo" : {"tfdt" : {"version" : {"length" : 8}, "flags" : {"length" : 24}, "baseMediaDecodeTime" : {"length" : 32, "type" : "decimal"}}}}
json_instruct
{"type": "object", "properties": {"boxContainers": {"type": "array", "items": {"type": "string"}}, "needParseInfo": {"type": "array", "items": {"type": "string"}}, "parseInfo": {"type": "object", "properties": {"tfdt": {"type": "object", "properties": {"version": {"type": "object", "properties": {"length": {"type": "in...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_...
{"MRRm_new" : 0.1303101662622371, "MRm_new" : 16006.157164596558, "HITS@1m_new" : 0.08845348980731796, "HITS@3m_new" : 0.14581156636821105, "HITS@10m_new" : 0.2142471987613244}
json_instruct
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or...
Based on the schema below, produce a valid JSON object: {"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": "ar...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.708956, 42.021737], [-87.708661, 42.033676], [-87.699302, 42.033873], [-87.699497, 42.024803], [-87.690106, 42.024957], [-87.690174, 42.019528], [-87.709027, 42.019134], [-87.708956, 42.021737]]]}, "type" : "Feature",...
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...
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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords"...
{"name" : "learn-hardhat", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "mocha --exit --recursive"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"@nomiclabs/hardhat-ethers" : "^2.0.0", "@nomiclabs/hardhat-waffle" : "^2.0.0", "@openzeppelin/contracts" : ...
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"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "str...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean...
{"track" : "csharp", "exercise" : "perfect-numbers", "id" : "a506b2d9488a4e69a7fe4dd170db74ef", "url" : "https://exercism.io/my/solutions/a506b2d9488a4e69a7fe4dd170db74ef", "handle" : "Josris", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "proxy": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "devexpres...
{"name" : "mern", "version" : "0.1.0", "private" : true, "proxy" : "http://localhost:3001/", "dependencies" : {"axios" : "^0.21.1", "devexpress-diagram" : "^2.0.23", "devexpress-gantt" : "^2.0.29", "devextreme" : "^20.2.6", "devextreme-quill" : "^1.0.0", "devextreme-react" : "^20.2.6", "es6-object-assign" : "^1.1.0", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "proxy": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "devexpress-diagram": {"type": "string"}, "devexpress-gantt": {"type": "string"}, "deve...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children...
{"code" : 3674030003, "parent" : 3674030, "name" : "PAMULANG TIMUR", "latitude" : null, "longitude" : null, "postal" : [15436, 15417], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"general": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "cover-image": {"type": "string"}, "favicon": {"type": "string"}, "product-categories": {"type": "array...
{"general" : {"name" : "<eshop name - all caps works best>", "description" : "<eshop description - will be show on homepage - try to fit into one sentence", "cover-image" : "Needs to be saved to /static/images/ and named 'cover.jpg'", "favicon" : "<can be url or needs to be saved in /static - e.g. /static/images/favico...
json_instruct
{"type": "object", "properties": {"general": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "cover-image": {"type": "string"}, "favicon": {"type": "string"}, "product-categories": {"type": "array", "items": {"type": "string"}}, "shipping-price": {"type": "string"}}, "re...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"definitions": {"type": "object", "properties": {}, "required": []}, "$schema": {"type": "string"}, "$id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", ...
{"definitions" : {}, "$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "http://chronetriggerjs.com/schema/timeline-provider-settings.json", "type" : "object", "title" : "The TimelineProviderSettings Schema", "required" : ["selector", "systemName"], "properties" : {"vendor" : {"$id" : "#/properties/vendor",...
json_instruct
{"type": "object", "properties": {"definitions": {"type": "object", "properties": {}, "required": []}, "$schema": {"type": "string"}, "$id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properti...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "examples": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type...
{"name" : "Transmission", "keywords" : "Serial, slave", "description" : "", "version" : "0.1", "examples" : "examples/*/*.ino", "frameworks" : "arduino", "platforms" : "*"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "examples": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}}, "required": ["name", "keywords", "description", "version", "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, ...
{"userId" : 33630, "cartId" : "971acd23-83c6-4140-9021-933245f69d23", "preferredProducts" : [], "productReviews" : [{"productId" : 378, "reviewText" : "I tried to nail it but got strawberry all over it.", "reviewDate" : "2017-05-27T15:23:16.2984597+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["330683101001", "\u957f\u4e50\u5c45\u59d4\u4f1a", "121", "0"], ["330683101002", "\u5f00\u5143\u5c45\u59d4\u4f1a", "122", "0"], ["330683101201", "\u4e0b\u66f9\u6751\u59d4\u4f1a", "122", "0"], ["330683101209", "\u957f\u4e50\u4e00\u6751\u59d4\u4f1a", "122", "0"], ["330683101213", "\u957f\u4e50\u4e09\u6751\u59d4\u4f1a", ...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "ReduceApplicationCapacityByInstanceIds", "protocol" : "HTTP|HTTPS", "method" : "PUT", "pathPattern" : "/pop/v1/sam/app/ScaleInApplicationWithInstanceIds", "parameters" : [{"name" : "AppId", "position" : "Query", "type" : "String", "required" : true}, {"name" : "InstanceIds", "position" : "Query", "type" : "S...
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"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type...
{"title" : "Kilo-NOC: a heterogeneous network-on-chip architecture for scalability and service guarantees.", "fields" : ["node", "heterogeneous network", "cache", "server", "network on a chip"], "abstract" : "Today's chip-level multiprocessors (CMPs) feature up to a hundred discrete cores, and with increasing levels of...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"vue.common.js": {"type": "string"}, "vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.common.js", "vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vue.common.js" : "sha256-bq0atrl7shDhPCpc+psb29flaGmymVcWLpRigxeR6e8=", "vue.js" : "sha256-iGamwIonsPrxfA7xMtklWQgARIudDIIuzw4eiGm1Pm4=", "vue.min.js" : "sha256-tz3PtohE22emnYA/TFdSXs7L8xi/lciveOFKDddqEws="}
json_instruct
{"type": "object", "properties": {"vue.common.js": {"type": "string"}, "vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.common.js", "vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "bin": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start"...
{"name" : "signalhubws", "version" : "1.0.3", "description" : "Drop in replacement for signalhub with websockets", "main" : "index.js", "bin" : "bin.js", "scripts" : {"test" : "standard && tape test.js", "start" : "node bin.js"}, "keywords" : [], "author" : "", "license" : "MIT", "dependencies" : {"debug" : "^3.1.0", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "k...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", ...
{"name" : "ohvitorino/php_design_patterns", "description" : "PHP Design Patterns", "license" : "MIT", "keywords" : ["php", "design patterns"], "authors" : [{"name" : "Bruno Vitorino", "email" : "bruno.vitorino@gmail.com"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "5.3.*"}, "autoload" : {"psr-4" : {"OhVitor...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r...
Construct a JSON document that adheres to this schema specification: {"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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-77.531698, 39.012478], [-77.523952, 39.014661], [-77.519872, 39.014451], [-77.518735, 39.01738], [-77.514992, 39.017666], [-77.50599, 39.016229], [-77.503815, 39.013649], [-77.496561, 39.01068], [-77.498926, 39.009979], ...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "st...
{"name" : "pholdcroft/doctrine-entity-generator", "description" : "Generate Basic Doctrine Suitable Entity and Repository Classes from your Database", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Pierce Holdcroft", "email" : "pholdcroft@gmail.com"}], "minimum-stability" : "dev", "require" : {}, "autol...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type...
{"userId" : 50743, "cartId" : "6efb768e-3beb-4163-8529-136fc2dd4c89", "preferredProducts" : [4097, 1542, 4954, 4248, 3448, 4376, 4613], "productReviews" : [{"productId" : 3125, "reviewText" : "The box this comes in is 4 mile by 5 inch and weights 19 megaton!", "reviewDate" : "2019-01-20T00:11:54.1251406+02: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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd...
{"templmd5" : "0f5f718e7703eaa46b1a36127cb4199f", "number" : "576", "title" : "Mappa di tutte le Prefetture in Italia con info e contatti", "BACKCOLOR" : "white", "FRONTCOLOR" : "black", "filemd5" : "5948a94774ffed17e1b15c780605b248"}
json_instruct
{"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "h...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs"...
{"artist_id" : "AR0OE2I1187B989368", "artist_latitude" : 40.71455, "artist_location" : "NY - New York City", "artist_longitude" : -74.00712, "artist_name" : "Stephen Lynch", "duration" : 180.74077, "num_songs" : 1, "song_id" : "SOOLPEM12A8C13FAE3", "title" : "Gay", "year" : 2000}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "ti...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rmse" : [27.559971557931295]}
json_instruct
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "google": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "google", "note"], "$schema": ...
{"name" : "Palmberry's Blog", "tagline" : "TEST @ FIRST", "body" : "# Happy New Year\r\n\r\n---\r\n\r\n## blog test\r\n\r\n- [ ] hello\r\n- [x] hello\r\n\r\n---\r\n\r\n### test blog\r\n\r\n**Happy?**\r\n\r\n- yes\r\n- no\r\n- yes or no\r\n- do not know\r\n\r\n> shut up! and take my money!\r\n\r\n\r\n", "google" : "", "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "body": {"type": "string"}, "google": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "body", "google", "note"], "$schema": "http://json-schema.org/draft-07/schema#"}
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.804917, 51.21473]}, "properties" : {"ownership-status" : "owned by a public authority", "maximum-net-dwellings" : "40", "name" : "961", "point" : "POINT(-0.804917 51.21473)", "start-date" : "2018-12-12", "planning-permission-status" : "not permiss...
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": {"ownership-status": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"typ...
{"actors" : ["Group of 77"], "countries" : ["China"], "enb_end_date" : "09-Jun-98", "enb_long_title" : "Eighth Subsidiary Body for Scientific and Technological Advice (SBSTA) and the Subsidiary Body for Implementation (SBI)", "enb_short_title" : "8th Session SBSTA & SBI, AG13 6", "enb_start_date" : "09-Jun-98", "enb_ur...
json_instruct
{"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"typ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"w...
{"name" : "Alur", "lsg_code" : "253063", "district" : "Kanniyakumari", "state" : "Tamil Nadu", "no_of_wards" : 15, "wards" : [{"ward_no" : "4", "ward_name" : "Alur (TP) - Ward No.4", "ward_id" : "48274"}, {"ward_no" : "1", "ward_name" : "Alur (TP) - Ward No.1", "ward_id" : "48271"}, {"ward_no" : "14", "ward_name" : "Al...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "strin...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "usermerge": {"type": "string"}, "usermerge-desc": {"type": "string"}, "usermerge-badolduse...
{"@metadata" : {"authors" : ["Crazymadlover", "Eduardo.mps", "Jorge Morais", "Luckas", "Helder.wiki", "He7d3r", "Nemo bis", "Araceletorres", "Opraco"]}, "usermerge" : "Fus\u00e3o e elimina\u00e7\u00e3o de utilizadores", "usermerge-desc" : "[[Special:UserMerge|Unifica as refer\u00eancias de um usu\u00e1rio em outro usu\...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "usermerge": {"type": "string"}, "usermerge-desc": {"type": "string"}, "usermerge-badolduser": {"type": "string"}, "usermerge-badnewuser": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object", "prop...
{"name" : "ibrahimlawal/new-relic-craft-3", "description" : "Fork of TopShelfCraft/New-Relic This plugin helps instrument your Craft 3 app with New Relic APM by setting transaction names and (optionally) an App Name on each request.", "type" : "craft-plugin", "version" : "1.0.1", "keywords" : ["craft", "cms", "craftcms...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object", "properties": {"docs": {"type": "string"}, "issues": {"type": "string"}}, ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"gmail": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["email", "name", "password"]}, "users": {"type": "array", "items"...
{"gmail" : {"email" : "fake.messenger@gmail.com", "name" : "FakeMessenger", "password" : "secret"}, "users" : [{"name" : "bobby", "password" : "12345"}]}
json_instruct
{"type": "object", "properties": {"gmail": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "password": {"type": "string"}}, "required": ["email", "name", "password"]}, "users": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "password":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"accounts": {"type": "array", "items": {}}, "targets": {"type": "array", "items": {}}, "settings": {"type": "object", "properties": {"scanInterval": {"type": "integer"}, "scanLimit": {"type": "integer"}}, "required"...
{"accounts" : [], "targets" : [], "settings" : {"scanInterval" : 15, "scanLimit" : 5}}
json_instruct
{"type": "object", "properties": {"accounts": {"type": "array", "items": {}}, "targets": {"type": "array", "items": {}}, "settings": {"type": "object", "properties": {"scanInterval": {"type": "integer"}, "scanLimit": {"type": "integer"}}, "required": ["scanInterval", "scanLimit"]}}, "required": ["accounts", "targets", ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors"...
{"contract" : "0x1bd2851c322d1030669759ceba9791601660e6bb", "tool" : "osiris", "start" : 1564598985.920787, "end" : 1564599048.0668218, "duration" : 62.146034717559814, "analysis" : [{"errors" : [{"line" : 62, "column" : 13, "message" : "overflow_bugs"}], "file" : "/unique_chucks/31/0x1bd2851c322d1030669759ceba97916016...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properti...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2003, 7], [2004, 13], [2005, 12], [2006, 12], [2007, 18], [2008, 9], [2009, 11], [2010, 6], [2011, 8], [2012, 6], [2013, 6], [2014, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"DTD_z0p015_bw500_0.55<mwd<0.65_2.1e-08<mdot": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p015_bw500_0.55<mwd<0.65_2.1e-08<mdot", "arrbool"], "$schema": "http://json-sch...
{"DTD_z0p015_bw500_0.55<mwd<0.65_2.1e-08<mdot" : [7.110438900686129e-05, 0.00017730178259460413, 0.0002554188493712939, 0.0005360909078066461, 0.0018280245510391244, 0.003612038902023984, 0.0026456000267228866, 0.002711524806524236, 0.0017338148135993166, 0.002488333356870291, 0.0018817474609170437, 0.00142142669463515...
json_instruct
{"type": "object", "properties": {"DTD_z0p015_bw500_0.55<mwd<0.65_2.1e-08<mdot": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p015_bw500_0.55<mwd<0.65_2.1e-08<mdot", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"MeasInterpreter": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["MeasInterpreter"]}}, "required": [...
{"profiles" : {"MeasInterpreter" : {"commandName" : "Project"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"MeasInterpreter": {"type": "object", "properties": {"commandName": {"type": "string"}}, "required": ["commandName"]}}, "required": ["MeasInterpreter"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "strin...
{"name" : "Dc-web", "productName" : "Dc-web", "version" : "0.0.0", "description" : "my awesome react project", "repository" : {"url" : "zcong1993/Dc-web", "type" : "git"}, "scripts" : {"dev" : "poi --port 3000", "test" : "echo 'no test'", "build" : "poi build"}, "author" : "zcong1993 <1005997919@qq.com>", "license" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "scripts": {"type": "ob...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}, "core/amd/backbone.marionette.js": {"type": "string"}, "core/amd/backbone.marionette.min.js": {"type": "string"}, "core/...
{"backbone.marionette.js" : "sha512-B2ol1YkWUcy6QLgIGhSGNjs+KHEO33dz831FzjUkZ5mJdLAu0/ixdaLkfZlAzLwMkH+YcnWYrNrFhekj4hYsFQ==", "backbone.marionette.min.js" : "sha512-m5UDAbPf3cqXbK7QekR/BtOULIqIFYI67dTewgwC4KhjOzj9RXRG9nGIOXXFb1kBOjLYaAH1HQJLgfkL6BT5Rw==", "core/amd/backbone.marionette.js" : "sha512-k1s9UW6Zb20llIuopUw...
json_instruct
{"type": "object", "properties": {"backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}, "core/amd/backbone.marionette.js": {"type": "string"}, "core/amd/backbone.marionette.min.js": {"type": "string"}, "core/backbone.marionette.js": {"type": "string"}, "core/backbone.marionette...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string...
{"name" : "signum-react-extensions", "version" : "1.0.0", "description" : "Resable modules to use on top of Signum Framework", "repository" : "https://github.com/signumsoftware/extensions", "keywords" : ["Signum", "Framework", "React", "LINQ", "Bootstrap", "D3"], "author" : "Signum Software", "license" : "MIT", "depend...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "p...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "command_name": {"type": "string"}, "extension_author": {"type": "string"}, "original_author": {"type": "string"}, "repo_url": {"type": "string"}, "help": {"type": "...
{"name" : "nanodump", "version" : "0.0.0", "command_name" : "nanodump", "extension_author" : "@moloch--", "original_author" : "@HelpSystems", "repo_url" : "https://github.com/sliverarmory/nanodump", "help" : "A Beacon Object File that creates a minidump of the LSASS process.", "depends_on" : "coff-loader", "entrypoint"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "command_name": {"type": "string"}, "extension_author": {"type": "string"}, "original_author": {"type": "string"}, "repo_url": {"type": "string"}, "help": {"type": "string"}, "depends_on": {"type": "string"}, "entrypoint": {"ty...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"tha-ap456:0.1": {"type": "string"}, "tha-ap456:0.2": {"type": "string"}, "tha-ap456:0.3": {"type": "string"}, "tha-ap456:1.1": {"type": "string"}, "tha-ap456:1.2": {"type": "string"}, "tha-ap456:1.3": {"type": "string"}, "tha-...
{"tha-ap456:0.1" : "<article id='tha-ap456'><header><ul><li class='division'>{}</li>", "tha-ap456:0.2" : "<li>{}</li></ul>", "tha-ap456:0.3" : "<h1>{}</h1></header>", "tha-ap456:1.1" : "<blockquote class='gatha'><p><span class='verse-line'>{}</span>", "tha-ap456:1.2" : "<span class='verse-line'>{}</span>", "tha-ap456:1...
json_instruct
{"type": "object", "properties": {"tha-ap456:0.1": {"type": "string"}, "tha-ap456:0.2": {"type": "string"}, "tha-ap456:0.3": {"type": "string"}, "tha-ap456:1.1": {"type": "string"}, "tha-ap456:1.2": {"type": "string"}, "tha-ap456:1.3": {"type": "string"}, "tha-ap456:1.4": {"type": "string"}, "tha-ap456:2.1": {"type": "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_10538": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_10538"], "$schema": "http://json-schema.or...
{"id_10538" : {"publicdate" : "2016-05-24 05:01:36", "downloads" : 0}}
json_instruct
{"type": "object", "properties": {"id_10538": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_10538"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"komentarz": {"type": "string"}, "nie": {"type": "integer"}, "tak": {"type": "integer"}}, "required": ["komentarz", "nie", "tak"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"komentarz" : "Prezes si\u0119 u\u015bmia\u0142, to i inni si\u0119 \u015bmiej\u0105. Inaczej nie wypada. Jak w bajce \"Nowe szaty cesarza\".", "nie" : 0, "tak" : 3}
json_instruct
{"type": "object", "properties": {"komentarz": {"type": "string"}, "nie": {"type": "integer"}, "tak": {"type": "integer"}}, "required": ["komentarz", "nie", "tak"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"properties": {"type": "object", "properties": {"ssn": {"type": "object", "properties": {"encrypt": {"type": "object", "properties": {"keyId": {"type": "object", "properties": {"$binary": {"type": "string"}, "$type"...
{"properties" : {"ssn" : {"encrypt" : {"keyId" : {"$binary" : "YWFhYWFhYWFhYWFhYWFhYQ==", "$type" : "04"}, "type" : "string", "algorithm" : "AEAD_AES_CBC_HMAC_SHA512-Deterministic"}}}, "bsonType" : "object"}
json_instruct
{"type": "object", "properties": {"properties": {"type": "object", "properties": {"ssn": {"type": "object", "properties": {"encrypt": {"type": "object", "properties": {"keyId": {"type": "object", "properties": {"$binary": {"type": "string"}, "$type": {"type": "string"}}, "required": ["$binary", "$type"]}, "type": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"t...
{"id" : 618, "category" : {"name" : "Quests", "subset" : "Levequests"}, "help" : {"de" : "20 verschiedene Plattner-Fertigungserlasse wurden erfolgreich abgeschlossen.", "en" : "Complete 20 unique armorer levequests.", "fr" : "Accomplir 20 mandats d'armurier diff\u00e9rents.", "jp" : "\u7532\u5191\u5e2b\u306e\u30ea\u30f...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "object", "properties": {"name": {"type": "string"}, "subset": {"type": "string"}}, "required": ["name", "subset"]}, "help": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"totalQuantity": {"type": "integer"}, "totalPrices": {"type": "integer"}, "orders": {"type": "array", "items": {"type": "object", "properties": {"shop": {"type": "string"}, "orderItems": {"type": "array", "items": {"...
{"totalQuantity" : 2, "totalPrices" : 8998, "orders" : [{"shop" : "\u70ab\u9f99\u5b98\u65b9\u65d7\u8230\u5e97", "orderItems" : [{"pid" : "10803521657", "image" : "http://img10.360buyimg.com/cms/s80x80_jfs/t2941/284/2460981288/184644/79d9d20b/57bd9890N73efbc30.jpg", "title" : "\u70ab\u9f99\u6bc1\u706d\u8005DC \u684c\u97...
json_instruct
{"type": "object", "properties": {"totalQuantity": {"type": "integer"}, "totalPrices": {"type": "integer"}, "orders": {"type": "array", "items": {"type": "object", "properties": {"shop": {"type": "string"}, "orderItems": {"type": "array", "items": {"type": "object", "properties": {"pid": {"type": "string"}, "image": {"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type"...
{"Id" : "loot_mix_food_med_ammo (11)(Clone)4936458", "IsStatic" : false, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : -316.875732, "y" : 22.65081, "z" : 276.774719}, "Rotation" : {"x" : -1.06815605e-05, "y" : 358.725159, "z" : -3.91571775e-05}, "IsGroupPosition" : false, "GroupPositions" : [], "Ro...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "b...
{"n_dim" : 2, "n_trials" : 340, "objective" : "matyas_on_cube", "white" : "bayesopt_ei", "black" : "scipy_lbfgsb", "traceback" : ["passing", "passing"], "best_val" : [2.3836385871146479e-07, 4.3740839349743955e-15], "best_x" : [[0.5833039379921662, 0.5831464102324802], [0.5829039397635186, 0.5829039204807146]], "feval_...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...