input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"v1": {"type": "object", "properties": {"config": {"type": "object", "properties": {}, "required": []}, "upstream": {"type": "string"}, "contentSHA": {"type": "string"}, "metadata": {"type": "object", "properties": {"applicatio...
{"v1" : {"config" : {}, "upstream" : "staging.replicated.app/some-cool-ci-tool?installation_id=OafdEI-lF2IQV0Il3bfzrIl5mUdHCb3j&customer_id=-Am-_6i5pw0u4AbspOwKN4lZUCn49u_G", "contentSHA" : "3f27933df35c90e60a3c943e6fa765bc6116e8e6e17f89cdb6976ccc52e1cb65", "metadata" : {"applicationType" : "replicated.app", "customerI...
json_instruct
{"type": "object", "properties": {"v1": {"type": "object", "properties": {"config": {"type": "object", "properties": {}, "required": []}, "upstream": {"type": "string"}, "contentSHA": {"type": "string"}, "metadata": {"type": "object", "properties": {"applicationType": {"type": "string"}, "customerID": {"type": "string"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type":...
{"author" : {"id" : "t2_16p2gq", "name" : "Toridan"}, "date" : {"day" : 1620691200, "full" : 1620695793, "month" : 1619827200, "week" : 1620518400}, "id" : "t3_n9lct0", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 105094, "fullUrl" : "https://external-preview.redd.it/SH4jHNTs6R7bSipxG1rzv44aNZ0eRz5O-BqKHy...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Create an example JSON object that satisfies this schema: {"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...
{"uuid" : "e6849863-536f-41d8-9fc2-38d03fd4ec94", "befores" : [{"name" : "checkout_tria", "status" : "passed", "start" : 1597806093063, "stop" : 1597806093063}], "start" : 1597806093063, "stop" : 1597806102870}
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":...
Following the schema specification below, generate a valid JSON instance: {"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" : 9007200855600470000, "key" : "0d13c539143de7a94f0081a0fdbcfc33{\"color\":\"#64ffda\"}", "val" : "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='400'%20height='283'%20viewBox='0%200%20400%20283'%20preserveAspectRatio='none'%3e%3cpath%20d='M41%20127l-1%205c-2%207-4%2010-6%209h-2c-...
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "strin...
{"citations" : [{"textCitation" : "[See anxordi on Metamath](http://us.metamath.org/mpegif/anxordi.html)"}], "names" : ["anxordi"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wa", "#T_wps", "#T_wxo", "#T_wch", "#T_wb", "#T_wph", "#T_wa", "#T_wps", "#T_wxo", "#T_wph", "#T_wa", "#T_wch"], "metaLanguag...
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 a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$s...
{"name" : "XITO", "symbol" : "USDX", "address" : "0x237c0e91c28d20254a2f25976b81262e63bb767f", "decimals" : 18, "type" : "ERC20"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleTe...
{"pages" : ["pages/product/product", "pages/detail/detail", "pages/index/index", "pages/member/member", "pages/order/order", "pages/logs/logs"], "window" : {"backgroundTextStyle" : "light", "navigationBarBackgroundColor" : "#fff", "navigationBarTitleText" : "\u60a6\u60a6", "navigationBarTextStyle" : "black"}, "tabBar" ...
json_instruct
{"type": "object", "properties": {"pages": {"type": "array", "items": {"type": "string"}}, "window": {"type": "object", "properties": {"backgroundTextStyle": {"type": "string"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTitleText": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"users" : 209, "id" : "KR-49"}, {"users" : 1, "id" : "KR-48"}, {"users" : 1, "id" : "KR-47"}, {"users" : 2, "id" : "KR-46"}, {"users" : 2, "id" : "KR-45"}, {"users" : 1, "id" : "KR-44"}, {"users" : 1, "id" : "KR-43"}, {"users" : 30, "id" : "KR-42"}, {"users" : 679, "id" : "KR-41"}, {"users" : 259, "id" : "KR-31"}, {"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"...
{"artist_id" : "ARCAEMJ1187B9AF210", "artist_latitude" : null, "artist_location" : "Teheran, Iran", "artist_longitude" : null, "artist_name" : "Sharam feat. Kid Cudi", "duration" : 495.28118, "num_songs" : 1, "song_id" : "SOZRRIM12A8C13F9A0", "title" : "She Came Along", "year" : 0}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["binary-automation", "binary-bot"]
json_instruct
{"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"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
{"name" : "noisy-jasmine", "version" : "1.0.2", "description" : "Tools to make Jasmine testing in Node a little easier", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com:noisygerman/noisy-jasmine.git"}, "scripts" : {"start" : "npm test", "test" : "node run-tests.js", "tdd" : "node run-tests.js continuo...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"ty...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"t...
{"nom" : "Saleignes", "dpt" : "Charente-Maritime", "inscrits" : 47, "abs" : 8, "votants" : 39, "blancs" : 4, "nuls" : 2, "exp" : 33, "res" : [{"panneau" : "1", "voix" : 23}, {"panneau" : "2", "voix" : 10}]}
json_instruct
{"type": "object", "properties": {"nom": {"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", "items": {"type": "object"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keyword...
{"name" : "johnfive-windows-sample", "version" : "1.0.0", "description" : "This is the same app as the other platforms. just with the node modules included since in windows you need more setup", "main" : "johnnyFiveSample.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["john", "...
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": {"type": "string"}}, "author...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "face_keypoints_2d": {"type": "array", "items...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [961, 194, 1, 954, 245, 1, 916, 244, 1, 911, 308, 1, 933, 364, 1, 988, 247, 1, 999, 310, 1, 1009, 370, 1, 931, 351, 1, 921, 428, 1, 931, 503, 1, 978, 353, 1, 994, 434, 1, 1007, 509, 1, 949, 188, 1, 963, 192, 1, 936, 199, 1, 966, 196, 1], "face_keypoints_2d" : [], "ha...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "integer"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "ha...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"svg.filter.js": {"type": "string"}, "svg.filter.min.js": {"type": "string"}}, "required": ["svg.filter.js", "svg.filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"svg.filter.js" : "sha512-nH1/RXjmptH2S7ryiQmgLVVXhUj//gsHv1SN44ey4yYwOBlNW1PAppZ5+IITixF64r8Dw+FYi1IF0YAKv9gMHQ==", "svg.filter.min.js" : "sha512-IQnPK7nt8OkwpBBZdXbroDtrDrOgNj+62m+5Tou2WZi8hdH7Vs5aImjf2Rf80QFbwc0qeZ7Shqa1VavDjmuzQw=="}
json_instruct
{"type": "object", "properties": {"svg.filter.js": {"type": "string"}, "svg.filter.min.js": {"type": "string"}}, "required": ["svg.filter.js", "svg.filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "tag": {"type": "string"}, "version": {"type": "string"}, "comments": {"type": "object", "propertie...
{"name" : "@fluentui/react-image", "entries" : [{"date" : "Tue, 25 Aug 2020 12:36:19 GMT", "tag" : "@fluentui/react-image_v0.4.2", "version" : "0.4.2", "comments" : {"patch" : [{"comment" : "feat(react-image): improve accessibility, align with design spec", "author" : "olfedias@microsoft.com", "commit" : "e15ddb80624e2...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "tag": {"type": "string"}, "version": {"type": "string"}, "comments": {"type": "object", "properties": {"patch": {"type": "array", "items": {"type": "object",...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wo...
{"id" : 85771975, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "fe697f3ee75440f4dc8eed03e5f62fc8", "wof:id" : 85771975, "wof:repo" : "whosonfirst-data-admin-za"}, "bbox" : [28.09884, -26.10528, 28.09884, -26.10528], "geometry" : {"coordinate...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, ...
{"id" : 94827, "name" : "Karneval - Nai Return to Top", "description" : "Made by request.", "user" : {"id" : 199434, "name" : "trashtheidols", "email" : "redacted", "paypal_email" : "nydelizann@gmail.com", "homepage" : null, "about" : null, "license" : "publicdomain"}, "updated" : "2013-11-05T18:52:45.000Z", "weekly_in...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "string"}, "homepage": {"type": "null"}, "abo...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"loss": {"type": "number"}, "val_loss": {"type": "number"}, "accuracy": {"type": "number"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}}, "required": ["loss",...
{"loss" : 46.6960334777832, "val_loss" : 57.894737243652344, "accuracy" : 0.533, "_runtime" : 8, "_timestamp" : 1621482061, "_step" : 211}
json_instruct
{"type": "object", "properties": {"loss": {"type": "number"}, "val_loss": {"type": "number"}, "accuracy": {"type": "number"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}}, "required": ["loss", "val_loss", "accuracy", "_runtime", "_timestamp", "_step"], "$schema": "ht...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array...
{"type" : "Feature", "properties" : {}, "geometry" : {"type" : "Polygon", "coordinates" : [[[286.5234375, 11.350796722383672], [278.26171875, -3.688855143147035], [284.58984375, -14.944784875088372], [289.6875, -19.145168196205297], [283.7109375, -50.51342652633955], [291.26953125, -55.67758441108951], [294.609375, -54...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository"...
{"name" : "f-cell", "description" : "", "version" : "0.0.1", "main" : "lib/index.js", "author" : "fakership", "homepage" : "", "license" : "MIT", "repository" : "", "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "p...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"links": {"type": "array", "items": {"type": "object", "properties": {"icon...
{"data" : {"site" : {"siteMetadata" : {"links" : [{"icon" : {"prefix" : "fas", "iconName" : "home"}, "link" : "/", "name" : "\u9996\u9801", "external" : false}, {"icon" : {"prefix" : "fas", "iconName" : "user"}, "link" : "/about", "name" : "\u95dc\u65bc\u6211", "external" : false}, {"icon" : {"prefix" : "fas", "iconNam...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"links": {"type": "array", "items": {"type": "object", "properties": {"icon": {"type": "object", "properties": {"prefix": {"type": "string"}, "iconName"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:dev": {"type": "string"}...
{"name" : "iotplatform-mqtt", "version" : "1.0.0", "description" : "A single IoT Platform - MQTT Server", "main" : "server.js", "scripts" : {"start" : "NODE_ENV=production node server.js", "start:dev" : "DEBUG=iotplatform:* nodemon server.js", "lint" : "standard"}, "repository" : {"type" : "git", "url" : "git+https://g...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:dev": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "start...
Generate sample JSON data that conforms to the following schema definition: {"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"}, "lo...
{"id" : "122222882", "name" : "Newton Road", "nodes" : [{"type" : "node", "id" : 1366429279, "lat" : 52.2870191, "lon" : -0.5816987}, {"type" : "node", "id" : 1366429288, "lat" : 52.2870697, "lon" : -0.5816219}], "volunteer_postcode" : "NN10 0HU", "closest_distance" : 415}
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...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema":...
[{"name" : "RIHANE", "frequency" : 165, "males" : "18.181818181818183 %", "females" : "81.81818181818183 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {...
{"ImageDescription" : "HDC-303X ExifImageTitle ", "Make" : "Hitachi Living Systems, Ltd. ", "Model" : "HDC-303X ", "Orientation" : 1, "XResolution" : 1, "YResolution" : 1, "ResolutionUnit" : 2, "Software" : "Ver 57.09.09.12", "YCbCrPositioning" : 2, "Copyright" : "Hitachi Living Systems, Ltd. ", "ExifOffset" : 274, "C...
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"}, "YCbCrPosi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]...
{"name" : "@kartotherian/cassandra", "version" : "0.2.1", "description" : "Cassandra tile storage for Kartotherian map tile server", "main" : "CassandraStore.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : "kartotherian/cassandra", "keywords" : ["kartotherian", "cassandra", "ti...
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": "string"}, "keywords": {"type": "array", "it...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[374.83872149602735, 487.4464426801136], [1237.6924778175426, 512.2998451376006], [1254.6337340116895, 561.0059566957727], [1273.6926472301045, 582.1825269384562], [1292.7515604485197, 597.0061261083347], [1313.9281306912033, 618.1826963510182], [1324.516415812545, 630.8886384966283]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$s...
{"width" : 0.19289312, "rotation" : 2.7477365, "xCenter" : 0.702828, "yCenter" : 0.69732046, "height" : 0.24111639}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"stonOn:": {"type": "string"}}, "required": ["stonOn:"]}}, "required": ["class", "instance"], "$schema...
{"class" : {}, "instance" : {"stonOn:" : "ChristopheDemarey 11/6/2014 15:03"}}
json_instruct
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"stonOn:": {"type": "string"}}, "required": ["stonOn:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"appName": {"type": "string"}, "endpoint": {"type": "string"}, "port": {"type": "integer"}, "mongoDB": {"type": "object", "properties": {"uri": {"type": "string"}, "dbName": {"type": "string"}, "options": {"type": "object", "pr...
{"appName" : "finsharing", "endpoint" : "http://localhost:8000", "port" : 8000, "mongoDB" : {"uri" : "mongodb://localhost:27017", "dbName" : "finsharing", "options" : {}}, "logger" : {"request" : ":remote-addr :user-id :method :url :graphql-operation HTTP/:http-version :status - :response-time ms"}}
json_instruct
{"type": "object", "properties": {"appName": {"type": "string"}, "endpoint": {"type": "string"}, "port": {"type": "integer"}, "mongoDB": {"type": "object", "properties": {"uri": {"type": "string"}, "dbName": {"type": "string"}, "options": {"type": "object", "properties": {}, "required": []}}, "required": ["uri", "dbNam...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"electron-dev...
{"name" : "terminusdb-desktop", "productName" : "TerminusDB", "version" : "4.2.0", "license" : "Apache-2.0", "main" : "public/electron.js", "scripts" : {"electron-dev" : "electron --no-sandbox .", "build-mac-os" : "npx png2icns public/logo512.png -s 16,32,64,128,256 && npx electron-builder build"}, "devDependencies" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"electron-dev": {"type": "string"}, "build-mac-os": {"type": "string"}}, "required": ["e...
Following the schema specification below, generate a valid JSON instance: {"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_abbr...
{"place_name" : "Pinehill", "state_name" : "New Mexico", "state_abbrv" : "NM", "lat" : "34.9992", "long" : "-108.4112"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Start": {"type": "integer"}, "End": {"type": "integer"}, "Text": {"type": "string"}}, "required": ["Name", "Start", "End", "Text"]}, "$schema": "http://jso...
[{"Name" : "IDENT", "Start" : 0, "End" : 3, "Text" : "gcc"}, {"Name" : "ASCII_45", "Start" : 4, "End" : 5, "Text" : "-"}, {"Name" : "IDENT", "Start" : 5, "End" : 9, "Text" : "fPIC"}, {"Name" : "ASCII_45", "Start" : 10, "End" : 11, "Text" : "-"}, {"Name" : "IDENT", "Start" : 11, "End" : 12, "Text" : "c"}, {"Name" : "IDE...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Start": {"type": "integer"}, "End": {"type": "integer"}, "Text": {"type": "string"}}, "required": ["Name", "Start", "End", "Text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "est:block/cyan_easter_egg"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : ["astromine:univite_ingot"]}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"API_PORT": {"type": "string"}, "REDIS_ADDRESS": {"type": "string"}, "REDIS_PORT": {"type": "string"}, "REDIS_PASSWORD": {"type": "string"}, "REDIS_DB": {"type": "integer"}}, "required": ["API_PORT", "REDIS_AD...
{"API_PORT" : "8080", "REDIS_ADDRESS" : "localhost", "REDIS_PORT" : "6379", "REDIS_PASSWORD" : "", "REDIS_DB" : 0}
json_instruct
{"type": "object", "properties": {"API_PORT": {"type": "string"}, "REDIS_ADDRESS": {"type": "string"}, "REDIS_PORT": {"type": "string"}, "REDIS_PASSWORD": {"type": "string"}, "REDIS_DB": {"type": "integer"}}, "required": ["API_PORT", "REDIS_ADDRESS", "REDIS_PORT", "REDIS_PASSWORD", "REDIS_DB"], "$schema": "http://json-...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type"...
{"categories" : ["Game Development", "Mobile Development", "Programming"], "desc" : "\n", "details" : {"authors" : "James Goodwill, Wesley Matlock", "format" : "pdf", "isbn-10" : "1484204018", "isbn-13" : "978-1484204016", "pages" : "276 pages", "publication date" : "March 25, 2015", "publisher" : "Apress", "size" : "6...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "in...
{"lastUpdated" : 1655019279666, "username" : "Damek", "scores" : [{"xp" : 859, "rank" : 285, "cardId" : 743}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last...
Create a JSON structure that matches this schema definition: {"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"}...
{"text" : {"0" : {"m1" : "\u0645\u06cc\u06af\u0648\u06cc\u062f \u0645\u0631\u0645\u0631\u0627 \u0646\u06af\u0627\u0631 \u062f\u0644\u0633\u0648\u0632", "m2" : "\u0645\u06cc\u0628\u0627\u06cc\u062f \u0631\u0641\u062a \u0686\u0648\u0646 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0634\u062f \u0631\u0648\u0632"}, "1" : ...
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...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["320772001001", "\u82b1\u679c\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["320772001002", "\u5927\u6751\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["320772001003", "\u5927\u6d66\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["320772001004", "\u660c\u6d66\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["3207720...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"ty...
{"name" : "soulworker-password-exchanger", "version" : "1.0.0", "description" : "", "private" : false, "scripts" : {"dev" : "vite", "build" : "vue-tsc --noEmit && vite build", "preview" : "vite preview"}, "dependencies" : {"lodash" : "^4.17.21", "reseter.css" : "^2.0.0", "vue" : "^3.2.25"}, "devDependencies" : {"@types...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "preview": {"type": "string"}}, "required": ["dev", "build"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"sendgrid/sendgrid": {"type": "string"}}, "required": ["sendgrid/sendgrid"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"sendgrid/sendgrid" : "^7.9"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"sendgrid/sendgrid": {"type": "string"}}, "required": ["sendgrid/sendgrid"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "intro0": {"type": "string"}, "intro1": {"type": "string"}, "intro2": {"type": "string"}}, "required": ["title", "intro0", "intro1", "intro2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Hj\u00e6lp", "intro0" : "Hvis du har sp\u00f8rgsm\u00e5l til NWA, eller problemer med din alarmops\u00e6tning, er der hj\u00e6lp at hente p\u00e5 ", "intro1" : "NWAs beskedforum", "intro2" : "."}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "intro0": {"type": "string"}, "intro1": {"type": "string"}, "intro2": {"type": "string"}}, "required": ["title", "intro0", "intro1", "intro2"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "base": {"type": "string"}, "properties": {"type": "object", "properties": {"bufferView": {"...
{"$schema" : "http://json-schema.org/draft-04/schema", "name" : "glTFAccessorSparseValues", "type" : "object", "description" : "Array of size `accessor.sparse.count` times number of components storing the displaced accessor attributes pointed by `accessor.sparse.indices`.", "base" : "glTFProperty", "properties" : {"buf...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "base": {"type": "string"}, "properties": {"type": "object", "properties": {"bufferView": {"type": "object", "properties": {"type": {"type": "string"}, "description...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"county": {"type": "string"}, "executionId": {"type": "string"}, "race": {"type": "string"}, "link": {"type": "string"}, "prisonerId": {"type": "string"}, "firstName": {"type": "string"}, "date": {"type": "string"}, "lastName": {...
{"county" : "Harris", "executionId" : "383", "race" : "Black", "link" : "http://www.tdcj.state.tx.us/stat/dr_info/jacksonjameslast.html", "prisonerId" : "999272", "firstName" : "James", "date" : "7/2/2007", "lastName" : "Jackson", "age" : "47", "statement" : "You know, once upon a time diamonds were priceless. I never ...
json_instruct
{"type": "object", "properties": {"county": {"type": "string"}, "executionId": {"type": "string"}, "race": {"type": "string"}, "link": {"type": "string"}, "prisonerId": {"type": "string"}, "firstName": {"type": "string"}, "date": {"type": "string"}, "lastName": {"type": "string"}, "age": {"type": "string"}, "statement"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object",...
{"name" : "minph", "description" : "minph framework", "keywords" : ["minph"], "license" : "Apache-2.0", "type" : "project", "require" : {"vlucas/phpdotenv" : "^2.4", "tracy/tracy" : "^2.4"}, "autoload" : {"classmap" : ["src/"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"vlucas/phpdotenv": {"type": "string"}, "tracy/tracy": {"ty...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"author": {"type": "string"}, "description": {"type": "string"}, "displayName": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "name": {"type": "string"}...
{"author" : "Naoto Kondo", "description" : "Simple DeckLink I/O plugin for Unity", "displayName" : "DeckLinkPlugin", "keywords" : ["unity", "decklink"], "license" : "MIT License", "name" : "inc.stu.unitydecklinkplugin", "repository" : "github:stu-inc/UnityDeckLinkPlugin", "unity" : "2020.1", "unityRelease" : "1f0", "ve...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "description": {"type": "string"}, "displayName": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "name": {"type": "string"}, "repository": {"type": "string"}, "unity": {"type": "string"}, "uni...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type":...
{"contract" : "0xe28cd88d23f4741d8affb0c0df90cbaef9be31ae", "tool" : "maian", "start" : 1565665151.862296, "end" : 1565665216.5510793, "duration" : 64.68878316879272, "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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"other_ids": {"type": "array", "items": {}}, "mRNA_sequence": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "type": {"type": "string"}, "sequence": {"type": "string"}}, "...
{"other_ids" : [], "mRNA_sequence" : [{"index" : 0, "type" : "five_prime_UTR", "sequence" : "TATATGCATTACCGAGATTGATTTCTTAAATTAATATGCTCAATTTAAAATATATTGAAAATTTTTGTGTCAATGGATTTATAAATTCTGAATATGATAGCGCTGTATTGGCAACACTAGCTCAGATGATAAATGTACTTCTTTGGAAAAAAAGCGAAATGAGTAAATACCTCTATTTGTATATTTGCTAGTGTTTTGAATTACATGGAAGTTGCATAATTATCTCC...
json_instruct
{"type": "object", "properties": {"other_ids": {"type": "array", "items": {}}, "mRNA_sequence": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "type": {"type": "string"}, "sequence": {"type": "string"}}, "required": ["index", "type", "sequence"]}}, "other_names": {"type": "ar...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string...
{"name" : "schema", "status" : "registered", "verifiableDataRegistry" : "Multiple storage networks, currently public IPFS and evan.network IPFS", "contactName" : "51nodes GmbH", "contactEmail" : "", "contactWebsite" : "", "specification" : "https://github.com/51nodes/schema-registry-did-method/blob/master/README.md"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "verifiableDataRegistry": {"type": "string"}, "contactName": {"type": "string"}, "contactEmail": {"type": "string"}, "contactWebsite": {"type": "string"}, "specification": {"type": "string"}}, "required": ["name", "status", "ver...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"manifest_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "manifest_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["me...
{"manifest_name" : {"message" : "Netflix Sans Fin"}, "manifest_description" : {"message" : "Lire automatiquement le prochain \u00e9pisode, ignorer les s\u00e9quences de titres, ignorer \"\u00cates-vous toujours en train de regarder?\" invite et recherchez plus de 3000 genres!"}}
json_instruct
{"type": "object", "properties": {"manifest_name": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "manifest_description": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}}, "required": ["manifest_name", "manifest_description"], "$sch...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location":...
{"id" : 16876, "title" : ["[Cort's Emporium, Wall Displays]"], "description" : ["Roaring laughter booms over a stone partition, a reminder of just how large this furniture warehouse is. Keen-eyed dwarves walk by, in search of spectacular additions for their shops. A particularly appealing display has drawn the attent...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"16877"...
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" : "Simple and Effective Multi-Paragraph Reading Comprehension.", "fields" : ["reading comprehension", "paragraph", "question answering", "artificial intelligence", "machine learning"], "abstract" : "We consider the problem of adapting neural paragraph-level question answering models to the case where entire do...
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": {"an4.39:0.3": {"type": "string"}, "an4.39:1.1": {"type": "string"}, "an4.39:3.3": {"type": "string"}, "an4.39:5.4": {"type": "string"}, "an4.39:6.1": {"type": "string"}, "an4.39:6.3": {"type": "string"}}, "required": ...
{"an4.39:0.3" : "Ujjayasutta \u2192 ujj\u0101yasutta\u1e41 (bj)", "an4.39:1.1" : "ujjayo \u2192 ujj\u0101yo (bj)", "an4.39:3.3" : "Mah\u0101ya\u00f1\u00f1\u0101 mah\u0101rambh\u0101 \u2192 samm\u0101p\u0101sa\u1e41 v\u0101capeyya\u1e41; niraggala\u1e41 mah\u0101rambh\u0101 (pts1ed)", "an4.39:5.4" : "vividh\u0101 nettha...
json_instruct
{"type": "object", "properties": {"an4.39:0.3": {"type": "string"}, "an4.39:1.1": {"type": "string"}, "an4.39:3.3": {"type": "string"}, "an4.39:5.4": {"type": "string"}, "an4.39:6.1": {"type": "string"}, "an4.39:6.3": {"type": "string"}}, "required": ["an4.39:0.3", "an4.39:1.1", "an4.39:3.3", "an4.39:5.4", "an4.39:6.1"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, ...
{"id" : 91624, "name" : "Youtube - Bronybar", "description" : "Tanka. Prova whatever", "user" : {"id" : 125493, "name" : "lidborn", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "publicdomain"}, "updated" : "2013-11-03T22:16:20.000Z", "weekly_install_count" : 0, "total_inst...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"typ...
{"name" : "jquery-inputformat", "version" : "1.0.0", "description" : "jQuery based input formating", "author" : "Ali Irawan <boylevantz@gmail.com>", "contributors" : [{"name" : "Ali Irawan", "email" : "boylevantz@gmail.com"}], "keywords" : ["input", "format", "mask", "number", "numeric", "amount", "money", "jquery"], "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "setup": {"type": "...
{"name" : "pcpp-cli", "version" : "1.0.0", "description" : "The PCpp command line interface", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "setup" : "npm run reset && node .", "compile" : "node compile.js", "compileLocal" : "node compileLocal.js", "run" : "cd workspace && py...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "setup": {"type": "string"}, "compile": {"type": "string"}, "compileLocal": {"type": "strin...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro...
{"userId" : 1728, "cartId" : "5ae43ae0-a075-4a65-ba2a-5bba70da2d93", "preferredProducts" : [1263, 1758, 1124, 1783], "productReviews" : [{"productId" : 1176, "reviewText" : "i use it every Tuesday when i'm in my homeless shelter.", "reviewDate" : "2018-11-19T04:45:41.7965014+02:00"}, {"productId" : 2322, "reviewText" :...
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...
Please provide a valid JSON object following this schema: {"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"}}, "require...
{"track" : "csharp", "exercise" : "gigasecond", "id" : "4ca9cbae91484020bf6774b27a6630fb", "url" : "https://exercism.io/my/solutions/4ca9cbae91484020bf6774b27a6630fb", "handle" : "cmccandless", "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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "...
{"Time" : "2021-05-07T23:00:00Z", "Temp" : 17.8, "RelHum" : 36, "WindSpeed" : 8.3, "WindDir" : 339}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integ...
{"publisher_name" : "Ministere de l'Economie, Direction de la Prevision", "journals" : 1, "scihub" : 17, "crossref_open_access" : 0, "crossref_active" : 1058, "crossref" : 1058, "coverage" : 0.01606805, "publisher_slug" : "ministere-de-leconomie-direction-de-la-prevision"}
json_instruct
{"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integer"}, "coverage": {"type": "number"}, "publisher_slug": {"type": "string...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org...
[{"year" : 1991, "sex" : "F", "n" : 7, "prop" : 3.44e-06}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}, {"year" : 1994, "sex" : "F", "n" : 7, "prop" : 3.59e-06}, {"year" : 1995, "sex" : "F", "n" : 7, "prop" : 3.64e-06}, {"year" : 1997, "sex" : "F", "n" : 7, "prop" : 3.67e-06}, {"year" : 1998, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"ty...
{"name" : "Vajrada Amethyst Gemstone", "description" : "Character Ascension material.\n\"This body is the noblest and most eminent of all in this world.\n\"It should hold absolute control over this world.\n\"It once promised its people a dream: the never-changing 'eternity.'\"", "sortorder" : 1837, "rarity" : "5", "cat...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "descriptio...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"...
{"citations" : [{"textCitation" : "[See dmresv on Metamath](http://us.metamath.org/mpegif/dmresv.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_dmres | |- dom ( A |` _V ) = ( _V i^i dom A ) |\n| 2 | | #P_incom | |- ( _V i^i dom A ) = ( dom A i^i _V ) |\n| 3 ...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:watch": ...
{"name" : "plasmajs-starter-kit", "version" : "0.0.1", "description" : "The starter kit for making a web app in plasmaJS", "main" : "server.jsx", "scripts" : {"start" : "plasmajs .", "start:watch" : "nodemon -e jsx --exec plasmajs .", "build:js" : "webpack", "build:js:watch" : "webpack -w", "build:js:prod" : "webpack -...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:watch": {"type": "string"}, "build:js": {"type": "string"}, "build:js:watch": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"data": {"type": "object", "properties": {"publication": {"type": "object", "properties": {"publicationId": {"type": "string"}, "publicationType": {"type": "string"}, "workId": {"type": "string"}, "isbn": {"ty...
{"data" : {"publication" : {"publicationId" : "34712b75-dcdd-408b-8d0c-cf29a35be2e5", "publicationType" : "PAPERBACK", "workId" : "1399a869-9f56-4980-981d-2cc83f0a6668", "isbn" : null, "publicationUrl" : "http://amzn.to/2hxpKVL", "createdAt" : "2021-01-07T16:32:40.853895+00:00", "updatedAt" : "2021-01-07T16:32:40.85389...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"publication": {"type": "object", "properties": {"publicationId": {"type": "string"}, "publicationType": {"type": "string"}, "workId": {"type": "string"}, "isbn": {"type": "null"}, "publicationUrl": {"type": "string"}, "createdAt": {"type": "st...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"get": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "operationId": {"type": "string"}, "parameters": {"type": "array", "items": {"type...
{"get" : {"tags" : ["Releases"], "description" : "List a project release's commits.", "operationId" : "List a Project Release's Commits", "parameters" : [{"name" : "organization_slug", "in" : "path", "description" : "The slug of the organization the release belongs to.", "required" : true, "schema" : {"type" : "string"...
json_instruct
{"type": "object", "properties": {"get": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "operationId": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "in": {"type": "...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/juux/treyarch/treyarch.head": {"type": "array", "items": {"type": "string"}}}, "required"...
[{"DeniedAlternatives" : [], "Files" : {"items/armors/juux/treyarch/treyarch.head" : ["/description"]}, "Texts" : {"Chs" : "\u6c38\u8fdc\u4e0d\u8981\u76f8\u4fe1\u4e00\u4f4d\u6cd5\u745e\u56fe\u6d41\u653e\u8005\u3002", "Eng" : "Never trust a Pharitu Treyarch."}}, {"DeniedAlternatives" : [], "Files" : {"items/armors/juux/...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/juux/treyarch/treyarch.head": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/juux/treyarch/treyarch.head"]}, "Texts": {...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object",...
{"name" : "zflow-framework", "version" : "0.0.1", "private" : true, "author" : {"name" : "Ezequiel Gandolfi"}, "scripts" : {"build" : ""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "prope...
{"name" : "grundmanis/laracms-pages", "description" : "Laracms pages module", "keywords" : ["laravel", "cms", "admin", "dashboard", "panel", "content", "module"], "license" : "MIT", "authors" : [{"name" : "Armand Grundmanis", "email" : "agrundmanis@inbox.lv"}], "minimum-stability" : "dev", "require" : {"grundmanis/lara...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"meta": {"type": "object", "properties": {"version": {"type": "integer"}}, "required": ["version"]}, "minimum_update": {"type": "object", "properties": {"build_number": {"type": "integer"}, "default_language": {"type": "stri...
{"meta" : {"version" : 1}, "minimum_update" : {"build_number" : 48, "default_language" : "en", "url" : "https://play.google.com/store/apps/details?id=com.togethera.webapp", "strings" : {"en" : {"title" : "Please update now", "update_option" : "Update", "message" : "This version is no longer supported. Please update to ...
json_instruct
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"version": {"type": "integer"}}, "required": ["version"]}, "minimum_update": {"type": "object", "properties": {"build_number": {"type": "integer"}, "default_language": {"type": "string"}, "url": {"type": "string"}, "strings": {"type": "object",...
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": {"start": {"type": "string"}, "build": {"type": "...
{"name" : "test", "version" : "1.0.1", "description" : "", "main" : "index.js", "scripts" : {"start" : "gulp watch", "build" : "gulp build", "lint" : "eslint components"}, "author" : "", "license" : "ISC", "devDependencies" : {"@babel/core" : "^7.1.2", "@babel/plugin-proposal-class-properties" : "^7.1.0", "@babel/prese...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["start", "build", "...
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" : [[[-122.402881, 47.253074], [-122.40078, 47.253713], [-122.382049, 47.254092], [-122.356716, 47.253667], [-122.357142, 47.255339], [-122.359707, 47.256943], [-122.357984, 47.258683], [-122.356606, 47.258215], [-122.356242, 4...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText...
{"media_id" : "77490742", "local_id" : "NT062\n", "title" : "File:Anna_Tropp,_Sven_Tropp_and_Mia_Carlson_in_V\u00e5rdanser_at_Kungliga_Operan_1911_-_SMV_-_NT062.tif", "thumbnail" : "https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Anna_Tropp,_Sven_Tropp_and_Mia_Carlson_in_V\u00e5rdanser_at_Kungliga_Operan_1911...
json_instruct
{"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["tra...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": [...
{"name" : "sveder", "version" : "1.0.0", "description" : "Open sveder.com", "main" : "index.js", "scripts" : {"postinstall" : "node -e 'const open = require(\"open\"); open(\"http://sveder.com\")'"}, "author" : "sveder", "license" : "MIT", "dependencies" : {"open" : "8.2.1"}, "config" : {"unsafe-perm" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": ["postinstall"]}, "author": {"type": "string"}, "license": {"type": "st...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"typ...
{"Update" : "2020-03-23 15:28:16", "answer" : ["D"], "category" : "saa", "choices" : ["A.None of these.", "B.Amazon Instance Storage", "C.Any of these", "D.Amazon EBS "], "detail" : "Which Amazon storage do you think is the best for my database-style applications that frequently encounter many random reads and writes a...
json_instruct
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "prop...
{"contract" : "simple_suicide", "tool" : "solhint", "start" : 1565705909.3025112, "end" : 1565705913.956367, "duration" : 4.653855800628662, "analysis" : [{"file" : "/dataset/access_control/simple_suicide.sol", "line" : "2", "column" : "2", "message" : "Line length must be no more than 120 but current length is 138.", ...
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": {"file": {"type": "string"}, "line": {"type": "string"}, "column":...
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"}, "types": {"type": "string"}, "license": {"type": "string"}, "publishConfig": {"type": "object...
{"name" : "@concepta/nestjs-typeorm-ext", "version" : "4.0.0-alpha.11", "description" : "Rockets NestJS TypeORM Extended", "main" : "dist/index.js", "types" : "dist/index.d.ts", "license" : "BSD-3-Clause", "publishConfig" : {"access" : "public"}, "files" : ["dist/**/!(*.spec|*.e2e-spec|*.fixture).{js,d.ts}"], "dependen...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required":...
{"count" : 13, "N.A.//" : {"count" : 10}, "999920" : {"count" : 3}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "N.A.//", "999920"], "$schema": "ht...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"email": {"type": "string"}, "nombre": {"type": "string"}}, "required": ["email", "nombre"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"email" : "foo@mail.com", "nombre" : "Messi"}
json_instruct
{"type": "object", "properties": {"email": {"type": "string"}, "nombre": {"type": "string"}}, "required": ["email", "nombre"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "stri...
{"derivation" : "from H5255 (\u05e0\u05b8\u05e1\u05b7\u05d7) in the sense of staving off;", "pron" : "mas-sawkh'", "outline" : "<ol><li> meaning uncertain - perhaps<ol><li> guard</li><li> alternately, by turns</li></ol></li></ol>", "kjv_def" : "broken down.", "lemma" : "\u05de\u05b7\u05e1\u05bc\u05b8\u05d7", "frequency...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "req...
{"name" : "reactive.js", "assets" : [{"files" : ["Ractive-legacy.js", "Ractive-legacy.min.js", "Ractive-legacy.runtime.js", "Ractive-legacy.runtime.min.js", "Ractive.js", "Ractive.min.js", "Ractive.runtime.js", "Ractive.runtime.min.js"], "version" : "0.3.6", "mainfile" : "Ractive.min.js"}, {"files" : ["Ractive-legacy.j...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2d889d9eb4c21bf5e3fa2a622464c8f9bf690563"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"time": {"type": "null"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "string"}, "id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"time": {"t...
{"time" : null, "type" : 1, "user" : 3849187751, "tweet_id" : "gossipcop-9943809806", "id" : 7786096696, "children" : [{"time" : 1486920784, "type" : 2, "user" : 8096312665, "tweet_id" : 830832102736211968, "id" : 9510038052}, {"time" : 1486923744, "type" : 2, "user" : 6302845321, "tweet_id" : 830844521651007488, "id" ...
json_instruct
{"type": "object", "properties": {"time": {"type": "null"}, "type": {"type": "integer"}, "user": {"type": "integer"}, "tweet_id": {"type": "string"}, "id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "integer"}, "type": {"type": "integer"}, "user": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["522730103001", "\u8c37\u811a\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["522730103002", "\u5ca9\u540e\u793e\u533a\u5c45\u59d4\u4f1a", "123", "0"], ["522730103003", "\u738b\u5173\u793e\u533a\u5c45\u59d4\u4f1a", "123", "0"], ["522730103004", "\u8d35\u9f99\u793e\u533a\u5c45\u59d4\u4f1a", "123", "0"], ["522730103005"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"content_id": {"type": "string"}, "base_path": {"type": "string"}, "format_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "phase": {"type": "string"}, "filter": {"type"...
{"content_id" : "b7574bba-969f-4c49-855a-ae1586258ff6", "base_path" : "/aaib-reports", "format_name" : "Air Accidents Investigation Branch report", "name" : "Air Accidents Investigation Branch reports", "description" : "Find reports of AAIB investigations into air accidents and incidents", "phase" : "beta", "filter" : ...
json_instruct
{"type": "object", "properties": {"content_id": {"type": "string"}, "base_path": {"type": "string"}, "format_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "phase": {"type": "string"}, "filter": {"type": "object", "properties": {"document_type": {"type": "string"}}, "required"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items...
{"rustc" : 15479600521011547909, "features" : "[]", "target" : 3954734637228664837, "profile" : 14762027784537775720, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/Kronicle-163899eb1dc5b74e/dep-bin-Kronicle"}}], "rustflags" : [], "metadata" : 26904328233221814...
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"ty...
{"id" : 11145, "source" : "ellicott", "verse_id" : 18114, "verse_count" : 1, "reference" : "24:18", "title" : "", "html" : " <p> (18) The windows from on high are open . . .\u2014The phrase reminds us of the narrative of the Flood in <a class=\"ref\">Genesis 7:11; Genesis 8:2</a>. There was a second judgment on the def...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"matter.js": {"type": "string"}, "matter.min.js": {"type": "string"}}, "required": ["matter.js", "matter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"matter.js" : "sha512-LmcaNk4SpIeDIn8noy/vt4k3KSueIDeK7g1mYmaBb5ltMX/SBUhgPT0jxmjYUlfxPBjw95x+xjzyxMOAoBx9Bg==", "matter.min.js" : "sha512-eyqF8JOn0V7g1gAJne0oGRadinMHT2NVJs5r3MTTYjHQFJll1/3AZZ49lIX4iKy/gwExy4FJpJKd7u4/6vlWnA=="}
json_instruct
{"type": "object", "properties": {"matter.js": {"type": "string"}, "matter.min.js": {"type": "string"}}, "required": ["matter.js", "matter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id...
{"id" : 101966739, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "f75c8e72cd2d17af9316375fc728620e", "wof:id" : 101966739, "wof:repo" : "whosonfirst-data-admin-br"}, "bbox" : [-37.20639, -11.01472, -37.20639, -11.01472], "geometry" : {"coordi...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": ...
{"id" : 11801343, "name" : "Garbage Collector", "is_illegal" : false, "is_custom" : false, "text" : "You can target 1 other Cyberse monster you control that began the Duel in the Main Deck; return it to the hand, and if you do, Special Summon from your Deck 1 Cyberse monster with the same Level, but with a different na...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"main": {"type": "string"}, "style": {"type": "string"}}, "required": ["main", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "./form-summary.js", "style" : "./form-summary.scss"}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}, "style": {"type": "string"}}, "required": ["main", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type...
{"userId" : 40326, "cartId" : "107b5fcb-7fff-423c-b98c-d77dcdc06304", "preferredProducts" : [116], "productReviews" : [{"productId" : 1745, "reviewText" : "My goldfinch loves to play with it.", "reviewDate" : "2017-03-30T20:30:09.5595705+03:00"}, {"productId" : 4198, "reviewText" : "This olive works outstandingly well....
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "star...
{"name" : "matabot", "version" : "1.0.1", "description" : "", "main" : "src/index.js", "type" : "module", "scripts" : {"dev" : "nodemon", "start" : "ts-node src/index.ts"}, "repository" : {"type" : "git", "url" : "git+https://github.com/HandsomeRomanian/DiscordBotTemplate.git"}, "author" : "Matei Martin", "license" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "re...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-...
{"wire-plugin" : [{"target" : "\\Spryker\\Client\\PersistentCart\\PersistentCartDependencyProvider::getQuotePersistPlugin", "source" : "\\Spryker\\Client\\MultiCart\\Plugin\\PersistentCart\\MultiCartQuotePersistPlugin"}]}
json_instruct
{"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"511083001": {"type": "string"}, "511083002": {"type": "string"}, "511083102": {"type": "string"}, "511083103": {"type": "string"}, "511083104": {"type": "string"}, "511083105": {"type": "string"}, "511083106": {"type": "str...
{"511083001" : "\u53e4\u6e56\u8857\u9053", "511083002" : "\u91d1\u9e45\u8857\u9053", "511083102" : "\u54cd\u77f3\u9547", "511083103" : "\u5723\u706f\u9547", "511083104" : "\u9ec4\u5bb6\u9547", "511083105" : "\u53cc\u51e4\u9547", "511083106" : "\u9f99\u5e02\u9547", "511083108" : "\u754c\u5e02\u9547", "511083109" : "\u77...
json_instruct
{"type": "object", "properties": {"511083001": {"type": "string"}, "511083002": {"type": "string"}, "511083102": {"type": "string"}, "511083103": {"type": "string"}, "511083104": {"type": "string"}, "511083105": {"type": "string"}, "511083106": {"type": "string"}, "511083108": {"type": "string"}, "511083109": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_comment": {"type": "string"}, "localized-strings": {"type": "object", "properties": {"next": {"type": "string"}, "previous": {"type": "string"}, "tagline": {"type": "string"}, "AddingQEasyDownloader": {"type...
{"_comment" : "This file is auto-generated by write-translations.js", "localized-strings" : {"next" : "Next", "previous" : "Previous", "tagline" : "A Simple and Powerful Downloader Library.", "AddingQEasyDownloader" : "Add QEasyDownloader to Your Project", "Adding QEasyDownloader to Your Project" : "Adding QEasyDownloa...
json_instruct
{"type": "object", "properties": {"_comment": {"type": "string"}, "localized-strings": {"type": "object", "properties": {"next": {"type": "string"}, "previous": {"type": "string"}, "tagline": {"type": "string"}, "AddingQEasyDownloader": {"type": "string"}, "Adding QEasyDownloader to Your Project": {"type": "string"}, "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stab...
{"name" : "fahrettinaksoy/aks-ColumnSortable", "description" : "Column sorting package for Laravel 6 framework", "keywords" : ["laravel", "laravel-sortable", "laravel-sorting", "laravel-column", "sortable", "sorting", "columns", "query-strings"], "homepage" : "https://github.com/fahrettinaksoy/aks-ColumnSortable", "typ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "bool...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Franzl\\Middleware\\Whoops\\": {"type": "string"}}, "required": ["Franzl\\Middleware\\Whoops\...
{"name" : "franzl/whoops-middleware", "autoload" : {"psr-4" : {"Franzl\\Middleware\\Whoops\\" : "src/"}}, "require" : {"filp/whoops" : "^1.1 || ^2.0", "zendframework/zend-diactoros" : "^1.1.0"}, "autoload-dev" : {"psr-4" : {"Franzl\\Middleware\\Whoops\\Test\\" : "tests/"}}, "require-dev" : {"phpunit/phpunit" : "5.0.*"}...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Franzl\\Middleware\\Whoops\\": {"type": "string"}}, "required": ["Franzl\\Middleware\\Whoops\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": ...