input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"apparmor": {"type": "boolean"}, "arch": {"type": "array", "items": {"type": "string"}}, "boot": {"type": "string"}, "description": {"type": "string"}, "devices": {"type": "array", "items": {}}, "environment": {"type": "object", ...
{"apparmor" : true, "arch" : ["aarch64", "amd64", "armv7"], "boot" : "auto", "description" : "A free and open source personal finance manager", "devices" : [], "environment" : {"TRUSTED_PROXIES" : "**"}, "map" : ["config:rw", "share:rw", "ssl"], "name" : "Firefly iii", "options" : {"DB_CONNECTION" : "sqlite_internal", ...
json_instruct
{"type": "object", "properties": {"apparmor": {"type": "boolean"}, "arch": {"type": "array", "items": {"type": "string"}}, "boot": {"type": "string"}, "description": {"type": "string"}, "devices": {"type": "array", "items": {}}, "environment": {"type": "object", "properties": {"TRUSTED_PROXIES": {"type": "string"}}, "r...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"development": {"type": "string"}, "watch": {"type": "string"}, "watch-poll": {"type": "string"}, "hot": {"type": "string"}, "production": {...
{"private" : true, "scripts" : {"development" : "mix", "watch" : "mix watch", "watch-poll" : "mix watch -- --watch-options-poll=1000", "hot" : "mix watch --hot", "production" : "mix --production"}, "dependencies" : {"@tailwindcss/forms" : "^0.3.2", "@tailwindcss/line-clamp" : "^0.2.0", "alpinejs" : "^2.8.2", "autoprefi...
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"development": {"type": "string"}, "watch": {"type": "string"}, "watch-poll": {"type": "string"}, "hot": {"type": "string"}, "production": {"type": "string"}}, "required": ["development", "watch", "watch-poll"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "5c0c1dba86f7743e667da8a1", "_tpl" : "5a34fd2bc4a282329a73b4c5", "parentId" : "5c0c1dba86f7743e667da8a0", "slotId" : "mod_muzzle"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "strin...
{"id" : 57825, "name" : "Wide NewNewTwitter", "description" : "Makes the new new Twitter a bit wider.\r\nBy https://twitter.com/#!/lookatme @lookatme (twitter)", "user" : {"id" : 86351, "name" : "lookatme", "email" : "redacted", "paypal_email" : null, "homepage" : "http://atlookatme.tumblr.com/", "about" : null, "licen...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "string"}, "abo...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"media": {"type": "string"}}, "required": ["media"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"media" : "https://plvod01.videocc.net/605ea32bee/1/605ea32bee1295165c63ae6a66047031_1.mp3"}
json_instruct
{"type": "object", "properties": {"media": {"type": "string"}}, "required": ["media"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"anonymousId": {"type": "string"}, "category": {"type": "null"}, "channel": {"type": "string"}, "context": {"type": "object", "properties": {"ip": {"type": "string"}, "library": {"type": "object", "properties": {"n...
{"anonymousId" : "3f4b4697-6ae4-494b-887d-fd5d927fb58b", "category" : null, "channel" : "client", "context" : {"ip" : "199.255.221.234", "library" : {"name" : "analytics.js", "version" : "2.4.20"}, "userAgent" : "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safar...
json_instruct
{"type": "object", "properties": {"anonymousId": {"type": "string"}, "category": {"type": "null"}, "channel": {"type": "string"}, "context": {"type": "object", "properties": {"ip": {"type": "string"}, "library": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["...
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#"}
[["130402001006", "\u7126\u7a91\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["130402001007", "\u90af\u5c71\u5357\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "strin...
{"name" : "userfrosting/cache", "type" : "library", "description" : "Cache module for UserFrosting", "keywords" : ["userfrosting", "cache"], "homepage" : "https://github.com/userfrosting/Cache", "license" : "MIT", "authors" : [{"name" : "Louis Charette", "homepage" : "https://github.com/lcharette"}], "require" : {"php"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Create an example JSON object that satisfies this schema: {"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": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-121.788385, 37.317515], [-121.779995, 37.319759], [-121.781164, 37.320055], [-121.780234, 37.320459], [-121.781993, 37.323261], [-121.782141, 37.324967], [-121.770599, 37.325765], [-121.766612, 37.327554], [-121.765368, ...
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...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"duration": {"type": "number"}, "input_args": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}, "required": ["duration", "input_args"], "$schema": "http://json-schema.org/dra...
{"duration" : 1.2397210597991943, "input_args" : {"address" : "'Hegedyk 9, 8601ZR, Sneek, Nederland'"}}
json_instruct
{"type": "object", "properties": {"duration": {"type": "number"}, "input_args": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}, "required": ["duration", "input_args"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", ...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"squigglesrpg" : {"title" : "SquigglesRPG", "channel_id" : 51669751, "link" : "...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"squigglesrpg": {"type": "object", "properties": {"title": {"t...
Based on the schema below, produce a valid JSON object: {"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": ...
{"code" : 7604020005, "parent" : 7604020, "name" : "TADUI", "latitude" : null, "longitude" : null, "postal" : [91519, 91511], "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": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type...
{"name" : "PROTEXIN INFANT SACHET", "harga" : " Rp. 252.890/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Lactobacillus casei 4 x 10(8) CFU, Lactobacillus rhamnosus 3.5 x 10(8) CFU, Streptococcus thermophilus 1 x 10(8) CFU, Bifidobacterium breve 5 x 10(7)...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"group_id": {"type": "string"}, "function_id": {"type": "string"}, "value_str": {"type": "string"}, "throughput": {"type": "null"}, "full_id": {"type": "string"}, "directory_name": {"type": "string"}, "title": {"typ...
{"group_id" : "Function 3 f32", "function_id" : "Romberg", "value_str" : "40", "throughput" : null, "full_id" : "Function 3 f32/Romberg/40", "directory_name" : "Function 3 f32/Romberg/40", "title" : "Function 3 f32/Romberg/40"}
json_instruct
{"type": "object", "properties": {"group_id": {"type": "string"}, "function_id": {"type": "string"}, "value_str": {"type": "string"}, "throughput": {"type": "null"}, "full_id": {"type": "string"}, "directory_name": {"type": "string"}, "title": {"type": "string"}}, "required": ["group_id", "function_id", "value_str", "t...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"info": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "author", "version", "d...
{"info" : {"name" : "Compass", "author" : "CarlosAir", "version" : "0.1", "description" : "Shows your current heading in a very easy to understand way."}, "appearance" : {"background" : "transparent", "resize" : "aspectRatio", "size" : {"initial" : [150, 150], "minimal" : [100, 100], "maximal" : [500, 500]}}, "data" : ...
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "author", "version", "description"]}, "appearance": {"type": "object", "properties": {"background"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author...
{"title" : "\u3010Genshin Impact MMD\u3011Warrior Song \u25c8Jean the Dandelion Knight \u2661\u301a4K\u301b", "author" : "WhiteFlame_REL", "description" : "1undefinedlikeundefinedtoundefinedgetundefinedcloserundefinedtoundefinedKleeundefined\u2661", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/vi...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"problems": {"type": "array", "items": {"type": "object", "properties": {"avgPts": {"type": "number"}, "constraints": {"type": "array", "items": {}}, "correctRatio": {"type": "number"}, "definition": {"type": "array", "items": {}...
{"problems" : [{"avgPts" : 163.58, "constraints" : [], "correctRatio" : 61.23, "definition" : [], "div" : 0, "examples" : [], "level" : 1, "link" : "http://community.topcoder.com/stat?c=problem_statement&pm=7252&rd=10668", "name" : "VolleyballTournament", "notes" : [], "submission" : 472}, {"avgPts" : 324.91, "constrai...
json_instruct
{"type": "object", "properties": {"problems": {"type": "array", "items": {"type": "object", "properties": {"avgPts": {"type": "number"}, "constraints": {"type": "array", "items": {}}, "correctRatio": {"type": "number"}, "definition": {"type": "array", "items": {}}, "div": {"type": "integer"}, "examples": {"type": "arra...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body":...
{"header" : {"protoclVersion" : {"protocolVersion" : "0.0.2"}}, "body" : {"rx_obcTime" : "3565170", "rx_recvCnt" : "547", "rx_gpsDate" : "170319", "rx_gpsTime" : "124327", "rx_lat" : 35.677772, "rx_long" : 139.76064, "rx_alt" : "12", "rx_temp" : "40.12", "rx_airP" : "101952", "rx_bSize" : "35", "tx_id" : "23", "tx_cnt"...
json_instruct
{"type": "object", "properties": {"header": {"type": "object", "properties": {"protoclVersion": {"type": "object", "properties": {"protocolVersion": {"type": "string"}}, "required": ["protocolVersion"]}}, "required": ["protoclVersion"]}, "body": {"type": "object", "properties": {"rx_obcTime": {"type": "string"}, "rx_re...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"content": {"type": "string"}, "headers": {"type": "string"}, "triples": {"type": "string"}, "extra": {"type": "string"}}, "required": ["content", "headers", "triples", "extra"], "$schema": "http://json-schema.org/dra...
{"content" : "content", "headers" : "headers", "triples" : "triples", "extra" : "extra"}
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "headers": {"type": "string"}, "triples": {"type": "string"}, "extra": {"type": "string"}}, "required": ["content", "headers", "triples", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"require": {"type": "object", "properties": {"omnipay/omnipay": {"type": "string"}, "omnipay/paypal": {"type": "string"}, "omnipay/stripe": {"type": "string"}}, "required": ["omnipay/omnipay", "omnipay/paypal"...
{"require" : {"omnipay/omnipay" : "^2.3", "omnipay/paypal" : "^2.4", "omnipay/stripe" : "^2.2"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"omnipay/omnipay": {"type": "string"}, "omnipay/paypal": {"type": "string"}, "omnipay/stripe": {"type": "string"}}, "required": ["omnipay/omnipay", "omnipay/paypal", "omnipay/stripe"]}}, "required": ["require"], "$schema": "http://json-schem...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"ty...
{"title" : "Virgin Islands (U.S.) - Social Development", "downloads" : 55, "tags" : ["development", "hxl", "indicators", "Virgin Islands (U.S.)"], "hxl" : 1, "org" : "World Bank Group", "id" : "eb4a5087-b833-4678-bcf6-13be59f60e1a", "resources" : [{"update_date" : "2021-02-01T01:03:19.348929", "link" : "https://data.hu...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date...
Generate a valid JSON object that conforms to the following schema: {"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": {}}...
{"contract" : "0x2afae3980e7974662ab3c0113c54dbb74b841d97", "tool" : "manticore", "start" : 1564884268.5984704, "end" : 1564886070.2945375, "duration" : 1801.6960670948029, "analysis" : [[], [], [], [{"name" : "INVALID instruction", "line" : 21, "code" : "return a - b;"}], []]}
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "arra...
{"id" : "7bcd78f1-3348-4d61-8d0f-f5594d2f2391", "firstName" : "Johnnie", "lastName" : "Hartmann", "email" : "johnnie.hartmann-9663@example.com", "username" : "johnnie.hartmann-9663@example.com", "password" : "bat", "organisations" : [{"id" : "93047184-b62a-43bc-b7d5-16e9c65b0ded", "code" : "1Q6", "name" : "Salop Teachi...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long...
{"place_name" : "Warren", "state_name" : "Illinois", "state_abbrv" : "IL", "lat" : "42.489", "long" : "-89.986"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"last_check" : "2017-05-09T19:10:28Z", "pypi_version" : "9.0.1"}
json_instruct
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string...
{"version" : "1.0.4", "name" : "cardio-node", "description" : "Keep your apps in shape with cardio", "author" : "Arvind Kumar <arvind@enkrypt.in> (https://arvind.io)", "contributors" : ["Sohan Manju"], "license" : "MIT", "main" : "dist/index.js", "typings" : "dist/index.d.ts", "files" : ["dist"], "repository" : "github...
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "files":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://docs.renovatebot.com/renovate-schema.json", "extends" : ["github>PixelPizza/.github:renovate", "schedule:nonOfficeHours"]}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "...
{"info" : {"_postman_id" : "bd970f6d-c3aa-410a-a7e6-b3a815b98513", "name" : "LoginTest", "schema" : "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"}, "item" : [{"name" : "Get user with username", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "http://localhost:3001/users/username/...
json_instruct
{"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "requ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"endroid/qrcode": {"type": "string"}}, "required": ["endroid/qrcode"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"endroid/qrcode" : "^2.3"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"endroid/qrcode": {"type": "string"}}, "required": ["endroid/qrcode"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"comments": {"type": "array", "items": {}}}, "required": ["comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"comments" : []}
json_instruct
{"type": "object", "properties": {"comments": {"type": "array", "items": {}}}, "required": ["comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"...
{"content" : "Tories Policies 4 Sale \"Tory are getting 4,000 new donations every month \u201cfrom a wide range of people\u201d George Osborne on the #marrshow", "entities" : [{"offset" : 103, "type" : "ne", "id" : 2, "entity" : "george osborne"}, {"entity" : "tory", "type" : "party keyword", "id" : 3, "offset" : 24}, ...
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "add...
{"type" : "Feature", "id" : "node/5643687848", "properties" : {"addr:city" : "N\u00fcrnberg", "addr:housenumber" : "1", "addr:postcode" : "90455", "addr:street" : "Greuth", "name" : "Holzhobelhof", "opening_hours" : "Mo-Su 8:30 -19:30", "payment:cash" : "yes", "shop" : "farm", "id" : "node/5643687848"}, "geometry" : {"...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "name": {"type": "string"}, "opening_ho...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"t...
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442733994.166057, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 2297211713995214577679074925975978844, "status_code" : "OK", "status_msg" : "OK",...
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "confi...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "...
{"status" : 200, "data" : {"totalSubs" : 270, "subsInEachSource" : {"feedly" : 79, "inoreader" : 149, "feedsPub" : 42}, "failedSources" : {}}, "lastModified" : 1614997245009}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "in...
Using the following JSON schema, generate a compatible 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": "number"...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[152.75, 30.166666666666668], [152.75, 30.25], [152.875, 30.25], [152.875, 30.166666666666668], [152.75, 30.166666666666668]]]}, "properties" : {"code" : 455226, "url" : "http://madefor.github.io/0410/api/v1/455226.geojson", "view" : "https://gith...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type"...
{"requires" : true, "lockfileVersion" : 1, "dependencies" : {"reflect-metadata" : {"version" : "0.1.13", "resolved" : "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", "integrity" : "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg=="}, "typedi" : ...
json_instruct
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"recid": {"type": "integer"}, "fname": {"type": "string"}, "lname": {"type": "string"}, "hasphoto": {"type": "boolean"}, "photo": {"type": "null"}, "hometown": {"type": "string"}, "latitude": {"type": "number"...
{"recid" : 599, "fname" : "ROBERT LEE", "lname" : "KING", "hasphoto" : false, "photo" : null, "hometown" : "PRINCE FREDERICK", "latitude" : 38.5404, "longitude" : -76.5844, "county" : "CALVERT", "countyid" : 9, "stateid" : "24", "badloc" : false, "casdate" : 29030400000.0}
json_instruct
{"type": "object", "properties": {"recid": {"type": "integer"}, "fname": {"type": "string"}, "lname": {"type": "string"}, "hasphoto": {"type": "boolean"}, "photo": {"type": "null"}, "hometown": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "county": {"type": "string"}, "countyid":...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"dataset": {"type": "object", "properties": {"triplestore_urls": {"type": "array", "items": {"type": "string"}}, "file_paths": {"type": "array", "items": {}}}, "required": ["triplestore_urls", "file_paths"]}, "provenance": {...
{"dataset" : {"triplestore_urls" : ["http://localhost:9999/blazegraph/sparql"], "file_paths" : []}, "provenance" : {"triplestore_urls" : ["http://localhost:19999/blazegraph/sparql"], "file_paths" : []}, "blazegraph_full_text_search" : "no", "cache_triplestore_url" : ""}
json_instruct
{"type": "object", "properties": {"dataset": {"type": "object", "properties": {"triplestore_urls": {"type": "array", "items": {"type": "string"}}, "file_paths": {"type": "array", "items": {}}}, "required": ["triplestore_urls", "file_paths"]}, "provenance": {"type": "object", "properties": {"triplestore_urls": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["assemble", "base-cli", "base-cli-process", "base-config", "base-task-prompts", "task-prompts"]
json_instruct
{"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": {"ignorePatterns": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["ignorePatterns"], "$schema": "http://json-schema.org/draft-07/s...
{"ignorePatterns" : [{"pattern" : "^http://localhost:8888"}, {"pattern" : "^http://localhost:5000"}, {"pattern" : "^http://127.0.0.1:8888"}]}
json_instruct
{"type": "object", "properties": {"ignorePatterns": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["ignorePatterns"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"react-data-grid.css": {"type": "string"}, "react-data-grid.js": {"type": "string"}, "react-data-grid.min.js": {"type": "string"}, "react-data-grid.ui-plugins.js": {"type": "string"}, "react-data-grid.ui-plugins.mi...
{"react-data-grid.css" : "sha256-xLIGX03eDkxDwWaKN9E0Kh3RvtfUN+uPTJokJFqr7Jw=", "react-data-grid.js" : "sha256-DKk9aaTv/gDZMAogQzZ7HwHqTctcJMx3LouLLRYZPEU=", "react-data-grid.min.js" : "sha256-9cUSWqVv0q3p+VCbRBBOjeHu3iBBdeMNCadcP8AYIAs=", "react-data-grid.ui-plugins.js" : "sha256-xvqrU0KOTLcS8DB641GL1C1Isp4U1I9LtPexVK...
json_instruct
{"type": "object", "properties": {"react-data-grid.css": {"type": "string"}, "react-data-grid.js": {"type": "string"}, "react-data-grid.min.js": {"type": "string"}, "react-data-grid.ui-plugins.js": {"type": "string"}, "react-data-grid.ui-plugins.min.js": {"type": "string"}}, "required": ["react-data-grid.css", "react-d...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}...
{"name" : "gulp-sass", "version" : "1.0.0", "description" : "Gulp Sass Sample", "main" : "index.js", "repository" : "https://github.com/colorwalf/gulp-sass.git", "author" : "Jeff Liu <jeff@cct95.com>", "license" : "MIT", "dependencies" : {"babel-core" : "^6.7.7", "babel-loader" : "^6.2.4", "babel-plugin-transform-runti...
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"}, "dependencies": {"type": "object", "properties": {"babel-core": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["Coronavirus"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"],...
{"Time" : "2021-04-22T22:00:00Z", "Temp" : 16, "RelHum" : 8, "WindSpeed" : 6.6, "WindDir" : 322}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "city_size": {"type": "string"}, "team": {"type": "string"}, "country": {"type": "string"}, "city": {"type": "string"}, "addr_city": {"type": "string"}, "addr_state":...
{"x" : 11.6399609, "y" : 52.1315889, "city_size" : "town", "team" : "NATO", "country" : "DE", "city" : "Magdeburg", "addr_city" : "Magdeburg", "addr_state" : "Sachsen-Anhalt", "addr_country" : "Deutschland", "display_x" : 1141.3747948057567, "display_y" : 368.77521975879245}
json_instruct
{"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "city_size": {"type": "string"}, "team": {"type": "string"}, "country": {"type": "string"}, "city": {"type": "string"}, "addr_city": {"type": "string"}, "addr_state": {"type": "string"}, "addr_country": {"type": "string"}, "display_x": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "LICENSE-APACHE": {"type": "string"}, "LICENSE-MIT": {"type": "string"}, "README.md": {"type": "string"}, "src/de.rs": {"type": "str...
{"files" : {"Cargo.toml" : "f9774e1885e39b77150bda56e8037ef3b40a8a1d2a45d7667e30c18170755fbb", "LICENSE-APACHE" : "a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2", "LICENSE-MIT" : "6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb", "README.md" : "beecc7bbc5171a265264513a45653e2ffd8dc83...
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "LICENSE-APACHE": {"type": "string"}, "LICENSE-MIT": {"type": "string"}, "README.md": {"type": "string"}, "src/de.rs": {"type": "string"}, "src/error.rs": {"type": "string"}, "src/iter.rs": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[-788929.9166666666, 1.9166666666278616, 334174.0833333333, 0.9166666666860692, 117767.26666666666, 1.7333333333372138, 7246, 3, 3213, 2, 4366, 3, 4365, 2, 4534, 3, 4365, 2, 4366, 3, 4365, 2, 4366, 3, 4365, 2, 4366, 3, 4365, 2, 4366, 3, 4365, 2, 4366, 3, 4365, 2, 7654, 3, 8060, 2, 11354, 1, 3527, 2, 4534, 1, 4367, 2, 3...
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"bug:0": {"type": "array", "items": {"type": "integer"}}, "chore:0": {"type": "array", "items": {"type": "integer"}}, "feature:0": {"type": "array", "items": {"type": "integer"}}, "feature:1": {"type": "array", "it...
{"bug:0" : [26366000000000, 69692000000000], "chore:0" : [351957000000000, 74326000000000, 4139000000000, 8000000000, 14002000000000, 508112000000000, 7616000000000], "feature:0" : [182543000000000, 278460000000000, 274578000000000], "feature:1" : [353743000000000, 163735000000000, 439149000000000, 372204000000000, 156...
json_instruct
{"type": "object", "properties": {"bug:0": {"type": "array", "items": {"type": "integer"}}, "chore:0": {"type": "array", "items": {"type": "integer"}}, "feature:0": {"type": "array", "items": {"type": "integer"}}, "feature:1": {"type": "array", "items": {"type": "integer"}}, "feature:2": {"type": "array", "items": {"ty...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[255, 360, 200, 200], [744, 364, 200, 201], [497, 357, 201, 201], [998, 364, 201, 201], [889, 135, 201, 200], [634, 137, 201, 200], [358, 133, 201, 201], [754, 597, 201, 200], [498, 597, 200, 201]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ID": {"type": "string"}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}}, "requi...
{"ID" : "PatchHDRepair9", "tool" : "HDRepair", "correctness" : "Incorrect", "project" : "Math", "bug_id" : "85", "target" : ["org/apache/commons/math/analysis/solvers/UnivariateRealSolverUtils.java:198"]}
json_instruct
{"type": "object", "properties": {"ID": {"type": "string"}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}}, "required": ["ID", "tool", "correctness", "project", "bug_id", "target"], "$s...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "minimum_chrome_version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type":...
{"name" : "Marionette Inspector", "version" : "0.9.1", "description" : "A devtool for Marionette", "author" : "Jason Laster", "minimum_chrome_version" : "22.0", "icons" : {"16" : "img/marionette-16.png", "48" : "img/marionette-48.png", "128" : "img/marionette-128.jpg"}, "manifest_version" : 2, "devtools_page" : "inspec...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "minimum_chrome_version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "stri...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_versio...
{"slug" : "shs", "name" : "Simple hierarchical select", "latest_version" : "1.x-dev", "last_updated" : "2018-03-28T17:00:14.678Z", "vulnerabilities" : null}
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "achievement": {"type": "integer"}, "achievements": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "name", "achievement", "achievements"], ...
{"id" : 318, "name" : "Champion of Zommoros", "achievement" : 4395, "achievements" : [4395]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "achievement": {"type": "integer"}, "achievements": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "name", "achievement", "achievements"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nu...
{"nom" : "Belloy-en-France", "circ" : "2\u00e8me circonscription", "dpt" : "Val-d'Oise", "inscrits" : 1296, "abs" : 783, "votants" : 513, "blancs" : 38, "nuls" : 5, "exp" : 470, "res" : [{"nuance" : "LR", "nom" : "M. Axel PONIATOWSKI", "voix" : 263}, {"nuance" : "REM", "nom" : "M. Guillaume VUILLETET", "voix" : 207}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"...
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": "object", "pr...
{"contract" : "0xad72327f71586748c6e7718187be906ddea9535d", "tool" : "osiris", "start" : 1564626961.4015038, "end" : 1564627121.5006528, "duration" : 160.09914898872375, "analysis" : [{"errors" : [], "file" : "/unique_chucks/14/0xad72327f71586748c6e7718187be906ddea9535d.sol", "name" : "BasicToken"}, {"errors" : [], "fi...
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": {}}, "file": {"type": "strin...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "radius": {"type": "integer"}, "surfaceNCO2": {"type": "string"}, "atmosphere": {"type": "object", "properties": {"start": {"type": "integer"}, "end": {"type": "integer"}}, "required": [...
{"name" : "Mars", "radius" : 3390000, "surfaceNCO2" : "2.8e17", "atmosphere" : {"start" : 1000, "end" : 40000}, "ionosphere" : [{"name" : "Test Layer", "model" : "chapman", "stratification" : "chapman", "start" : 80000, "end" : 250000, "peakProductionAltitude" : 125000, "electronPeakDensity" : "2.5e11"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "radius": {"type": "integer"}, "surfaceNCO2": {"type": "string"}, "atmosphere": {"type": "object", "properties": {"start": {"type": "integer"}, "end": {"type": "integer"}}, "required": ["start", "end"]}, "ionosphere": {"type": "array", "items": {"type": "obj...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "5da68b8", "CardHash" : "0af416a", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descript...
{"title" : "The TakeOuters Kiss me\u611b\u3057\u3066\u308b", "author" : "system777", "description" : "cautionundefinedsillyundefinedvideo!!!", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/31176/thumbnail-31176_0004.jpg?itok=nk1Z6Tqj", "download" : "https://www.iwara.tv/api/video...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "strin...
{"content" : "Every time I've been drunk and disorderly I've ended up in a police station. I must be missing a trick here. #bbcqt", "entities" : [{"offset" : 21, "type" : "topic keyword", "id" : 2, "entity" : "drunk and disorderly"}, {"offset" : 61, "type" : "topic keyword", "id" : 3, "entity" : "police"}], "topics" : ...
json_instruct
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"offset": {"type": "integer"}, "type": {"type": "string"}, "id": {"type": "integer"}, "entity": {"type": "string"}}, "required": ["offset", "type", "id", "entity"]}}, "topics": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Id": {"type": "array", "items": {"type": "number"}}, "KP": {"type": "number"}, "Vg": {"type": "array", "items": {"type": "number"}}, "Vth": {"type": "number"}}, "required": ["Id", "KP", "Vg", "Vth"], "$schema": "htt...
{"Id" : [0.013, 0.052, 0.092, 0.118, 0.132, 0.198, 0.356, 0.33, 0.422, 0.62, 0.845, 1.004, 1.175, 1.413, 1.466, 1.638, 2.113, 2.721, 3.144, 3.566, 3.989, 4.002, 5.046, 6.05, 6.354, 6.592, 7.609, 8.415, 9.498, 10.714, 11.282, 12.458, 13.739, 15.39, 18.284, 19.605, 21.732, 22.419, 23.145, 25.735, 27.426, 29.421, 33.661, ...
json_instruct
{"type": "object", "properties": {"Id": {"type": "array", "items": {"type": "number"}}, "KP": {"type": "number"}, "Vg": {"type": "array", "items": {"type": "number"}}, "Vth": {"type": "number"}}, "required": ["Id", "KP", "Vg", "Vth"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "0xe5e29692829b2d41298930f7a3abb06cffa73052", "tool" : "oyente", "start" : 1563343039.3998375, "end" : 1563343046.4301682, "duration" : 7.030330657958984, "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://...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"next_post_id": {"type": "integer"}, "next_comment_id": {"type": "integer"}, "next_follow_id": {"type": "integer"}, "avatar": {"type": "string"}, "user_name": {"type": "string"}, "hub": {"type": "string"}, "intro": {...
{"next_post_id" : 5, "next_comment_id" : 1, "next_follow_id" : 3, "avatar" : "jpg", "user_name" : "\u5e2e\u4f60\u6ce8\u518c.bit\u57df\u540d", "hub" : "1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL", "intro" : "\u6211\u53ef\u4ee5\u5e2e\u4f60\u6ce8\u518c.bit\u57df\u540d\uff0c\u4f46\u662f\u6211\u662f\u6536\u8d39\u7684\u3002", "post" ...
json_instruct
{"type": "object", "properties": {"next_post_id": {"type": "integer"}, "next_comment_id": {"type": "integer"}, "next_follow_id": {"type": "integer"}, "avatar": {"type": "string"}, "user_name": {"type": "string"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "post": {"type": "array", "items": {"type": "object...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["c:iridium_gear"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size"...
{"md5" : "84CDA375D959C593EDB6F00590303A33", "size" : 164352, "compressed_size" : 78214, "node_id" : 0, "file_path" : "/var/cb/data/modulestore/84C/DA3/84CDA375D959C593EDB6F00590303A33.zip", "event_timestamp" : 1447703636.573}
json_instruct
{"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size", "compressed_size", "node_id", "file_path", "event_timesta...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Resoluti...
{"ImageDescription" : "DCFC0392.JPG ", "Make" : "Polaroid", "Model" : "izone550", "Orientation" : 1, "XResolution" : 72, "YResolution" : 72, "ResolutionUnit" : 2, "Software" : "IZONE550 34N2", "ModifyDate" : "2007:03:22 08:30:03", "YCbCrPositioning" : 2, "ExifOffset" : 246, "Compression" : 6, "Thumbna...
json_instruct
{"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {"type": "integer"}, "Software": {"type": "string"}, "ModifyDat...
Based on the schema below, produce a valid JSON object: {"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": "i...
{"id" : 890461859, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "692bc88415a9e55ac9f483dfd195c781", "wof:id" : 890461859, "wof:repo" : "whosonfirst-data-admin-tr"}, "bbox" : [35.66222, 40.97056, 35.66222, 40.97056], "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": ["...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"D4DJ-Tools": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "require...
{"profiles" : {"D4DJ-Tools" : {"commandName" : "Project", "commandLineArgs" : "chart"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"D4DJ-Tools": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["D4DJ-Tools"]}}, "required": ["profiles"], "$schema": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200884883494000, "key" : "/static/4f27694bd7811d13157e5e488ad64f43/99438/profile-pic.jpg", "val" : "8022a09c8bbfd7fc3bc66e59c959d253"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"examples": {"type": "array", "items": {}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audi...
{"examples" : [], "pronunciation" : {"uk" : {"phonetic" : "d\u026a'bent\u0283\u0259(r)", "audio" : "debenture-uk.mp3"}, "us" : {"phonetic" : "d\u026a'bent\u0283\u0259r", "audio" : "debenture-us.mp3"}}, "definition" : {"en" : {"n" : ["the ability of a customer to obtain goods or services before payment, based on the tru...
json_instruct
{"type": "object", "properties": {"examples": {"type": "array", "items": {}}, "pronunciation": {"type": "object", "properties": {"uk": {"type": "object", "properties": {"phonetic": {"type": "string"}, "audio": {"type": "string"}}, "required": ["phonetic", "audio"]}, "us": {"type": "object", "properties": {"phonetic": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"typ...
{"citations" : [{"textCitation" : "[See mul01 on Metamath](http://us.metamath.org/mpegif/mul01.html)"}], "names" : ["mul01"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wcel", "#T_cc", "#T_wi", "#T_cA", "#T_cmul", "#T_cc0", "#T_wceq", "#T_cc0"], "metaLanguage" : "METAMATH", "remarks" : " Multiplicati...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra...
{"directions" : ["Bring a 4-quart pot of salted water to a boil; add cauliflower and simmer until tender, 7 to 10 minutes. Drain cauliflower, reserving 1 cup cooking liquid.", "Blend cauliflower and 1/4 cup cooking liquid in a blender until smooth, adding more water until desired consistency is reached. Add butter and ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}, "linters": {"type": "object", "properties": {"*.{js,ts,tsx}": {"type": "array", "items": {"type": "string"}}}, "required": ["*.{js,ts,tsx}"]}}, "required": ["ignore", "l...
{"ignore" : ["src/**/*.js"], "linters" : {"*.{js,ts,tsx}" : ["npm run format", "git add"]}}
json_instruct
{"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}, "linters": {"type": "object", "properties": {"*.{js,ts,tsx}": {"type": "array", "items": {"type": "string"}}}, "required": ["*.{js,ts,tsx}"]}}, "required": ["ignore", "linters"], "$schema": "http://json-schema.org/draft-07/schem...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"ty...
{"id" : "96831880", "name" : "Rosebay Road", "nodes" : [{"type" : "node", "id" : 1121969848, "lat" : 52.4480262, "lon" : -0.8189638}, {"type" : "node", "id" : 1121969944, "lat" : 52.448242, "lon" : -0.8190711}, {"type" : "node", "id" : 1121970132, "lat" : 52.4478334, "lon" : -0.8189201}, {"type" : "node", "id" : 112197...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "sours", "definition" : "Source. See Source. [Obs.] Chaucer."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"topojson.js": {"type": "string"}, "topojson.min.js": {"type": "string"}}, "required": ["topojson.js", "topojson.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topojson.js" : "sha512-dVbQL8fY0hNR73jZ1AVzNuOFahkdcMQTGT8QHEXAfgx0DdAIrIksogRDjBP8EX7MA5sFzqBCItLmNb2o2JsqpA==", "topojson.min.js" : "sha512-RzAPb80dX80u+WhT+/e+t3J+Oa1aHEkUuPrb5pkLCf6UInraMxYY9PtIe0zZFFp7IWr5RWLr0qvCwCZf0JvqMw=="}
json_instruct
{"type": "object", "properties": {"topojson.js": {"type": "string"}, "topojson.min.js": {"type": "string"}}, "required": ["topojson.js", "topojson.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ApiKey": {"type": "object", "properties": {"Id": {"type": "integer"}, "Owner": {"type": "string"}, "Key": {"type": "string"}, "Created": {"type": "string"}}, "required": ["Id", "Owner", "Key", "Created"]}, "ServiceBus": {"type":...
{"ApiKey" : {"Id" : 1, "Owner" : "Admin", "Key" : "bef4ca48-3f1f-4567-ad4c-333aa774e7d1", "Created" : "2020-08-02"}, "ServiceBus" : {"Endpoint" : "Endpoint=sb://weatherdelivery.servicebus.windows.net/;SharedAccessKeyName=sender;SharedAccessKey=aJ1wuQsKtKTRzB6fncb91q/2d84xRwhFMwXy9siTu2U=", "QueueName" : "weatherdeliver...
json_instruct
{"type": "object", "properties": {"ApiKey": {"type": "object", "properties": {"Id": {"type": "integer"}, "Owner": {"type": "string"}, "Key": {"type": "string"}, "Created": {"type": "string"}}, "required": ["Id", "Owner", "Key", "Created"]}, "ServiceBus": {"type": "object", "properties": {"Endpoint": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type":...
{"name" : "data", "version" : "1.0.0", "description" : "", "scripts" : {"start" : "node src/index.js"}, "dependencies" : {"axios" : "^0.19.2", "cherio" : "^1.0.0-rc.2", "node-schedule" : "^1.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cherio": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type":...
{"vendor" : "zulu", "filename" : "zulu16.0.87-ea-jdk16.0.0-ea.35-win_x64.zip", "release_type" : "ea", "version" : "16.0.87", "java_version" : "16.0.0-ea.35", "jvm_impl" : "hotspot", "os" : "windows", "architecture" : "x86_64", "file_type" : "zip", "image_type" : "jdk", "features" : [], "url" : "https://static.azul.com/...
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"time": {"type": "array", "items": {"type": "number"}}, "PCC": {"type": "array", "items": {"type": "number"}}, "RMSE": {"type": "array", "items": {"type": "number"}}}, "required": ["time", "PCC", "RMSE"], "$schema": "http://...
{"time" : [177.91230845451355, 178.34332132339478, 180.38975930213928, 184.63596177101135, 187.01052045822144], "PCC" : [0.5046664958101039, 0.4033659426095628, 0.36701718018539237, 0.4520622338501186, 0.3638822182937508], "RMSE" : [1.1008213877890094, 1.2141924028847917, 1.2501667388334883, 1.1469522850335478, 1.31552...
json_instruct
{"type": "object", "properties": {"time": {"type": "array", "items": {"type": "number"}}, "PCC": {"type": "array", "items": {"type": "number"}}, "RMSE": {"type": "array", "items": {"type": "number"}}}, "required": ["time", "PCC", "RMSE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {...
{"contract" : "0x27054b13b1b798b345b591a4d22e6562d47ea75a", "tool" : "maian", "start" : 1565168902.1505454, "end" : 1565169108.2671967, "duration" : 206.1166512966156, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i...
Construct a JSON document that adheres to this schema specification: {"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":...
{"\u5de5\u5ee0\u540d\u7a31" : "\u5b8f\u5b89\u51b7\u51cd\u8a2d\u5099\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99663819", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "08810012800303", "\u5de5\u5ee0\u5730\u5740" : "\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u93ae\u5317\u91cc\u9cf3\u4ec1\u8def...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", ...
{"status" : 1, "startTimes" : [0, 12, 11, 25, 37], "objectiveValue" : 42.0, "solverRuntimeInMilliseconds" : 0, "optional" : {}}
json_instruct
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"account": {"type": "string"}, "application": {"type": "string"}, "availabilityZones": {"type": "object", "properties": {"us-west-2": {"type": "array", "items": {"type": "string"}}}, "required": ["us-west-2"]}, "capacity": {"ty...
{"account" : "ecs-account", "application" : "ecs", "availabilityZones" : {"us-west-2" : ["us-west-2a", "us-west-2c"]}, "capacity" : {"desired" : 1, "max" : 1, "min" : 1}, "cloudProvider" : "ecs", "computeUnits" : 256, "containerPort" : 80, "credentials" : "ecs-account", "dockerImageAddress" : "nginx", "ecsClusterName" ...
json_instruct
{"type": "object", "properties": {"account": {"type": "string"}, "application": {"type": "string"}, "availabilityZones": {"type": "object", "properties": {"us-west-2": {"type": "array", "items": {"type": "string"}}}, "required": ["us-west-2"]}, "capacity": {"type": "object", "properties": {"desired": {"type": "integer"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"...
{"id" : "18565549", "tms:id" : "76066", "accession_number" : "1942-36-18", "title" : "Print, \"A plate from the set of twelve projects for engraved silver cups (12 Stick Zvm Ver Zaichnen Stechen ver Fertigt Bernhartzan Goldschmid Gesel Inn Niernberg)\", 1580", "url" : "http://collection.cooperhewitt.org/objects/1856554...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "la...
{"display-name" : "", "package-name" : "free-manga-downloader", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "free-manga-downloader", "latest-version" : "1.3.3.0", "1.3.3.0" : {"url" : "https://github.com/fmd-project-team/FMD/releases/download/1.3.3.0/fmd_1.3.3.0_x86_64-win64.7z", "file-typ...
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.3.3.0": {"type": "o...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"receiver": {"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "bankCode": {"type": "string"}, "accountId": {"type": "string"}}, "required": ["firstName", "lastName", "bankCode", ...
{"receiver" : {"firstName" : "BZIDWB", "lastName" : "USBARH", "bankCode" : "SICOTHBK", "accountId" : "receiverAccountId"}, "deliveryMethod" : "account_deposit", "sender" : {"firstName" : "SKANTE", "lastName" : "MYCYBX", "address" : {"address" : "senderAddress", "city" : "senderCity", "countryCode" : "THA", "postalCode"...
json_instruct
{"type": "object", "properties": {"receiver": {"type": "object", "properties": {"firstName": {"type": "string"}, "lastName": {"type": "string"}, "bankCode": {"type": "string"}, "accountId": {"type": "string"}}, "required": ["firstName", "lastName", "bankCode", "accountId"]}, "deliveryMethod": {"type": "string"}, "sende...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"...
{"name" : "vhall", "version" : "1.0.0", "description" : "vhall", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "shen", "license" : "MIT", "dependencies" : {"echarts" : "^3.1.10", "jquery" : "^2.2.4", "semantic-ui" : "^2.1.8", "underscore" : "^1.8.3"}, "devDependen...
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score":...
{"Id" : "145475", "ProductId" : "B003D4F1QS", "UserId" : "AXBC52UXVOIO0", "ProfileName" : "Aleisha Fritzen", "HelpfulnessNumerator" : 1, "HelpfulnessDenominator" : 1, "Score" : 5, "date" : "2011-09-21", "Summary" : "Love Stash decaf chai", "text" : "I love stash decaf chai it is very good. I love the taste for being de...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "date": {"type": "string"}, "Summary": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "opening_hours": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "s...
{"type" : "Feature", "id" : "node/4177955839", "properties" : {"name" : "Hofladen Gro\u00dfz\u00f6bern", "opening_hours" : "Tu-Fr 09:00-18:00; Sa 08:00-11:00", "phone" : "037436 / 126 31", "shop" : "farm", "website" : "http://www.ag-grosszoebern.de/home/hofladen/willkommen-im-hofladen-grosszoebern/", "id" : "node/41779...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "opening_hours": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "req...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "...
{"\u5de5\u5ee0\u540d\u7a31" : "\u5408\u6587\u80a1\u4efd\u6709\u9650\u516c\u53f8\u5927\u5b89\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99693398", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u571f\u57ce\u5340\u5927\u5b89\u8def\u4e00\u4e09\u516b\u5df7\u...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": ...
{"uuid" : "38ec24d0-7832-4a93-90c2-059fd2c4ce88", "children" : ["0a69620b-ec10-46ac-b0ea-acdcfb9b6d4b"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1618211591560, "stop" : 1618211591600}], "start" : 1618211591560, "stop" : 1618211592727}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "require...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "null"}, "name": {"type": "null"}, "description": {"type": "null"}, "reference": {"type": "null"}, "category": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, ...
{"id" : null, "name" : null, "description" : null, "reference" : null, "category" : {"id" : 3, "name" : "Ventas"}, "price" : [{"idPriceList" : null, "name" : "General", "type" : "amount", "price" : null}], "tax" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "null"}, "name": {"type": "null"}, "description": {"type": "null"}, "reference": {"type": "null"}, "category": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "price": {"type": "array", "items": {"typ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"typ...
{"directions" : ["Preheat oven to 400\u00b0F.", "Butter 11x7x2-inch glass or ceramic baking dish.", "In large saucepan, bring to a boil milk, water, butter, and salt. Reduce heat to medium. Gradually whisk in semolina flour, then whisk until mixture is thick and smooth, about 5 minutes. Whisk in spinach, Parmesan chees...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"url": {"type": "string"}, "timeout": {"type": "string"}, "pdf_options": {"type": "object", "properties": {"pageSize": {"type": "string"}, "marginsType": {"type": "integer"}}, "required": ["pageSize", "marginsType"]}...
{"url" : "https://dash-design-table-css-s-fuheoq.herokuapp.com/report_page_numbers?print=true", "timeout" : "10", "pdf_options" : {"pageSize" : "Letter", "marginsType" : 1}}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "timeout": {"type": "string"}, "pdf_options": {"type": "object", "properties": {"pageSize": {"type": "string"}, "marginsType": {"type": "integer"}}, "required": ["pageSize", "marginsType"]}}, "required": ["url", "timeout", "pdf_options"], "$schema": "http://j...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "arc...
{"vendor" : "adoptopenjdk", "filename" : "OpenJDK8U-jre_ppc64_aix_openj9_8u202b08_openj9-0.12.1.tar.gz", "release_type" : "ga", "version" : "8.0.202+8.openj9-0.12.1", "java_version" : "8u202-b08_openj9-0.12.1", "jvm_impl" : "openj9", "os" : "aix", "architecture" : "ppc64", "file_type" : "tar.gz", "image_type" : "jre", ...
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "requ...
{"accession_number" : "2010.97", "actors" : [{"ULAN" : {"Name" : null, "UlanIdNo" : null}, "after_follower" : null, "birth_date" : null, "collaboration" : null, "death_date" : null, "display_name" : "Peter Bateman", "first" : "Peter", "fullname" : "Peter Bateman", "irn" : 7131, "last" : "Bateman", "middle" : null, "nat...
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birt...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "...
{"kind" : "Method", "name" : "DataTransferItem.webkitGetAsEntry", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/DataTransferItem/webkitGetAsEntry", "description" : "If the item described by the DataTransferItem is a file, webkitGetAsEntry() returns a FileSystemFileEntry or FileSystemDirectoryEntry represen...
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "requi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "ob...
{"id" : "be34e894-5569-4a33-a481-8ff5ffe7460f", "playerTags" : [], "teamTags" : ["747b8e4a-7e50-4638-a973-ea7950a3e739", "3f8bbb15-61c0-4e3f-8e4a-907a5fb1565e", "3f8bbb15-61c0-4e3f-8e4a-907a5fb1565e", "747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : ["022bfae5-a37a-4c17-a7dd-0dfcab19ea76"], "metadata" : {"play" : ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "winner": {"type": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"appearance": {"type": "object", "properties": {"eye-color": {"type": "string"}, "gender": {"type": "string"}, "hair-color": {"type": "string"}, "height": {"type": "array", "items": {"type": "string"}}, "race": ...
{"appearance" : {"eye-color" : "Grey", "gender" : "Male", "hair-color" : "No Hair", "height" : ["6'1", "185 cm"], "race" : "Human", "weight" : ["450 lb", "203 kg"]}, "biography" : {"aliases" : ["Arlys Tigershark"], "alignment" : "bad", "alter-egos" : "No alter egos found.", "first-appearance" : "Sub-Mariner #5 (Septemb...
json_instruct
{"type": "object", "properties": {"appearance": {"type": "object", "properties": {"eye-color": {"type": "string"}, "gender": {"type": "string"}, "hair-color": {"type": "string"}, "height": {"type": "array", "items": {"type": "string"}}, "race": {"type": "string"}, "weight": {"type": "array", "items": {"type": "string"}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "it...
{"title" : "Smoothed marginal distribution constraints for language modeling.", "fields" : ["perplexity", "marginal distribution", "smoothing", "word error rate", "language model"], "abstract" : "We present an algorithm for re-estimating parameters of backoff n-gram language models so as to preserve given marginal dist...
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...