input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "r-bbmle", "downloads" : 3900, "count" : 3788}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"comment" : "", "ignore" : "test", "package" : [{"checksumSHA1" : "QC5GfBaOFJWLeR/GcVM2Hd6LX/E=", "path" : "github.com/Masterminds/sprig", "revision" : "6b2a58267f6a8b1dc8e2eb5519b984008fa85e8c", "revisionTime" : "2018-04-03T01:34:13Z"}, {"checksumSHA1" : "KmjnydoAbofMieIWm+it5OWERaM=", "path" : "github.com/alecthomas/template", "revision" : "a0175ee3bccc567396460bf5acd36800cb10c49c", "revisionTime" : "2016-04-05T07:15:01Z"}, {"checksumSHA1" : "3wt0pTXXeS+S93unwhGoLIyGX/Q=", "path" : "github.com/alecthomas/template/parse", "revision" : "a0175ee3bccc567396460bf5acd36800cb10c49c", "revisionTime" : "2016-04-05T07:15:01Z"}, {"checksumSHA1" : "fCc3grA7vIxfBru7R3SqjcW+oLI=", "path" : "github.com/alecthomas/units", "revision" : "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", "revisionTime" : "2015-10-22T06:55:26Z"}, {"checksumSHA1" : "v3FvbNaR/CPHNmKqyVNLM4SXjX0=", "path" : "github.com/kballard/go-shellquote", "revision" : "d8ec1a69a250a17bb0e419c386eac1f3711dc142", "revisionTime" : "2015-08-10T07:47:51Z"}, {"checksumSHA1" : "ZvPW/nSYs/UeoZejaV2ZSm9+2Do=", "path" : "gopkg.in/alecthomas/kingpin.v2", "revision" : "7f0871f2e17818990e4eed73f9b5c2f429501228", "revisionTime" : "2017-03-28T23:38:35Z"}], "rootPath" : "docwhat.org/temple"}
json_instruct
{"type": "object", "properties": {"comment": {"type": "string"}, "ignore": {"type": "string"}, "package": {"type": "array", "items": {"type": "object", "properties": {"checksumSHA1": {"type": "string"}, "path": {"type": "string"}, "revision": {"type": "string"}, "revisionTime": {"type": "string"}}, "required": ["checksumSHA1", "path", "revision", "revisionTime"]}}, "rootPath": {"type": "string"}}, "required": ["comment", "ignore", "package", "rootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start_socketio": {"type": "string"}, "start_webhook": {"type": "string"}, "start": {"type": "string"}}, "required": ["start_socketio", "start_webhook", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"blync-core": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "request": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["blync-core", "body-parser", "express", "request", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "isthemountainout-blync", "version" : "1.0.0", "description" : "\"The mountain is out!\" - Blync edition", "main" : "app.js", "scripts" : {"start_socketio" : "USE_SOCKETIO=true node app.js", "start_webhook" : "node app.js", "start" : "node app.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/tylerl0706/isthemountainout-blync.git"}, "author" : "TylerLeonhardt", "license" : "MIT", "bugs" : {"url" : "https://github.com/tylerl0706/isthemountainout-blync/issues"}, "homepage" : "https://github.com/tylerl0706/isthemountainout-blync#readme", "dependencies" : {"blync-core" : "^0.2.0", "body-parser" : "^1.17.2", "express" : "^4.15.3", "request" : "^2.81.0", "socket.io-client" : "^2.0.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start_socketio": {"type": "string"}, "start_webhook": {"type": "string"}, "start": {"type": "string"}}, "required": ["start_socketio", "start_webhook", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"blync-core": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "request": {"type": "string"}, "socket.io-client": {"type": "string"}}, "required": ["blync-core", "body-parser", "express", "request", "socket.io-client"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2007", "provinceId" : "82", "regencyId" : "01", "districtId" : "04", "name" : "Goro goro"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Soleil de Vie", "creation_date" : "1969", "creation_date_earliest" : "1969-01-01", "creation_date_latest" : "1969-01-01", "medium" : "polished bronze", "accession_number" : "70.49", "id" : "cmoa:things/4298a00a-e7ba-4a7e-8864-0095d521c085", "credit_line" : "Gift of Mr. and Mrs. Henry Oliver, Jr., William Frew Memorial", "date_acquired" : "1970-12-17", "department" : "Contemporary Art", "physical_location" : "Not on View", "item_width" : 14.313, "item_height" : 20.5, "item_depth" : 6.687, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1015838", "provenance_text" : "Emile Gilioli", "classification" : "sculpture", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=135547&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/1a417316-3b4e-4727-8a06-f7be2621db86", "party_type" : "Person", "full_name" : "Emile Gilioli", "cited_name" : "Gilioli, Emile", "role" : null, "nationality" : "French", "birth_date" : "1911-01-01", "death_date" : "1977-01-01", "birth_place" : "Paris, France", "death_place" : "Paris, France"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x9247c4fb46058f571a0f9024928d2dfa7787d1aa97cea5d570a11f80637084ce", "parentHash" : "0x52d0a8ffacfa661649e628d018330fded316ee01772423e41752359d8772d198", "number" : 111817, "timestamp" : 1439996704, "nonce" : "0xabd4f95e25380963", "difficulty" : 4426437950613, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x7e8504a5e26df87f6D26fA1ba148BE146F42775A", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 2, 7, 2, 2, 4, 5, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0]
json_instruct
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.0, 43.5], [142.0, 43.583333333333336], [142.125, 43.583333333333336], [142.125, 43.5], [142.0, 43.5]]]}, "properties" : {"code" : 654220, "url" : "http://madefor.github.io/0410/api/v1/654220.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/654220.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2-authclient": {"type": "string"}}, "required": ["php", "yiisoft/yii2-authclient"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"tina\\esia\\": {"type": "string"}}, "required": ["tina\\esia\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "repositories", "require", "extra", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "contrib/yii2-oauth2-esia", "description" : "\u0415\u0434\u0438\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u043e ESIA", "type" : "yii2-extension", "keywords" : ["yii2", "extension", "esia"], "license" : "BSD-3-Clause", "authors" : [{"name" : "tina", "email" : "[email protected]"}, {"name" : "elfuvo", "email" : "[email protected]"}], "repositories" : [{"type" : "composer", "url" : "https://asset-packagist.org"}], "require" : {"php" : ">=7.1.0", "yiisoft/yii2-authclient" : "~2.1.0"}, "extra" : {"branch-alias" : {"dev-master" : "0.0.x-dev"}}, "autoload" : {"psr-4" : {"tina\\esia\\" : "src"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "yiisoft/yii2-authclient": {"type": "string"}}, "required": ["php", "yiisoft/yii2-authclient"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"tina\\esia\\": {"type": "string"}}, "required": ["tina\\esia\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "keywords", "license", "authors", "repositories", "require", "extra", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [0.210487, 0.434642, 0.587573, 0.208953, 0.489177, 0.75369, 0.178389, 0.491776, 0.760664, 0.137011, 0.543631, 0.711488, 0.166109, 0.581854, 0.709485, 0.236558, 0.489078, 0.75907, 0.250288, 0.570855, 0.18382, 0, 0, 0, 0.211996, 0.636262, 0.252653, 0.189038, 0.633552, 0.24735, 0, 0, 0, 0, 0, 0, 0.231947, 0.638989, 0.243291, 0.261018, 0.764352, 0.0559923, 0, 0, 0, 0.202852, 0.423841, 0.637072, 0.215068, 0.423741, 0.666735, 0.190642, 0.426574, 0.498779, 0.224274, 0.426496, 0.488352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "acc", "val_acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"val_loss" : [0.17298648262023925, 0.11725193031281232, 0.10467284911647438, 0.08904854650124908, 0.08367538407072425, 0.06947354335170239, 0.06742602349277586, 0.0667217579960823, 0.06350306846760213, 0.06344627755917609, 0.059816275992896406, 0.05850691255107522, 0.06294534264747054, 0.055487143307365476, 0.054586544705741105, 0.05416474831746891, 0.055258798767020924, 0.06094922187589109, 0.05553574905053247, 0.04966524932212196], "acc" : [0.8003166666348775, 0.9229499999682108, 0.9415999999682109, 0.9509166666666666, 0.9564, 0.9590166666666666, 0.9641166666666666, 0.9678833333015442, 0.9702666666348775, 0.9712999999682108, 0.9735333333015442, 0.9736999999682109, 0.9758666666984558, 0.9768166666984558, 0.9777666666984558, 0.9784833333651225, 0.9794833333333334, 0.9806333333015442, 0.9814333333333334, 0.9819166666348775], "val_acc" : [0.9484, 0.9633, 0.9679, 0.9726, 0.9748, 0.978, 0.9783, 0.9799, 0.9802, 0.9804, 0.9817, 0.9829, 0.9804, 0.9828, 0.9832, 0.984, 0.9837, 0.9814, 0.9829, 0.9854], "loss" : [0.6324959748665492, 0.2515080010652542, 0.19195778963565827, 0.1611210259993871, 0.14489579673608144, 0.13046551743547122, 0.11573412330150604, 0.10632285004258156, 0.09791548555493355, 0.09449974069396655, 0.08794919752875964, 0.08535900034308433, 0.07823670148253441, 0.07577400240004063, 0.07060415831704935, 0.06769894517858824, 0.06288834168215593, 0.061911819576223694, 0.05837297419086099, 0.05626748368243376]}
json_instruct
{"type": "object", "properties": {"val_loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}}, "required": ["val_loss", "acc", "val_acc", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "run": {"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "cpus": {"type": "integer"}, "disk": {"type": "integer"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}}, "required": ["image"]}, "mem": {"type": "integer"}, "placement": {"type": "object", "properties": {}, "required": []}, "restart": {"type": "object", "properties": {}, "required": []}}, "required": ["args", "cpus", "disk", "docker", "mem", "placement", "restart"]}}, "required": ["id", "run"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "metronomikon-test1.hello2", "run" : {"args" : ["/bin/sh", "-c", "date; echo Hello from the Kubernetes cluster hello2"], "cpus" : 1, "disk" : 5, "docker" : {"image" : "busybox"}, "mem" : 512, "placement" : {}, "restart" : {}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "run": {"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "cpus": {"type": "integer"}, "disk": {"type": "integer"}, "docker": {"type": "object", "properties": {"image": {"type": "string"}}, "required": ["image"]}, "mem": {"type": "integer"}, "placement": {"type": "object", "properties": {}, "required": []}, "restart": {"type": "object", "properties": {}, "required": []}}, "required": ["args", "cpus", "disk", "docker", "mem", "placement", "restart"]}}, "required": ["id", "run"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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"}, "dev": {"type": "string"}}, "required": ["start", "build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/bcrypt": {"type": "string"}, "@types/dotenv": {"type": "string"}, "@types/express": {"type": "string"}, "@types/http-errors": {"type": "string"}, "@types/joi": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "@types/mongoose": {"type": "string"}, "@types/morgan": {"type": "string"}, "@types/node": {"type": "string"}, "@types/redis": {"type": "string"}, "bcrypt": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-errors": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "redis": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/bcrypt", "@types/dotenv", "@types/express", "@types/http-errors", "@types/joi", "@types/jsonwebtoken", "@types/mongoose", "@types/morgan", "@types/node", "@types/redis", "bcrypt", "dotenv", "express", "http-errors", "joi", "jsonwebtoken", "mongoose", "morgan", "nodemon", "redis", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "notes-app", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "node ./build/index.js", "build" : "tsc", "dev" : "nodemon ./index.ts"}, "author" : "", "license" : "ISC", "dependencies" : {"@types/bcrypt" : "^3.0.1", "@types/dotenv" : "^8.2.0", "@types/express" : "^4.17.11", "@types/http-errors" : "^1.8.0", "@types/joi" : "^17.2.3", "@types/jsonwebtoken" : "^8.5.1", "@types/mongoose" : "^5.10.5", "@types/morgan" : "^1.9.2", "@types/node" : "^15.0.2", "@types/redis" : "^2.8.28", "bcrypt" : "^5.0.1", "dotenv" : "^9.0.0", "express" : "^4.17.1", "http-errors" : "^1.8.0", "joi" : "^17.4.0", "jsonwebtoken" : "^8.5.1", "mongoose" : "^5.12.7", "morgan" : "^1.10.0", "nodemon" : "^2.0.7", "redis" : "^3.1.2", "ts-node" : "^9.1.1", "typescript" : "^4.2.4"}}
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"}, "dev": {"type": "string"}}, "required": ["start", "build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/bcrypt": {"type": "string"}, "@types/dotenv": {"type": "string"}, "@types/express": {"type": "string"}, "@types/http-errors": {"type": "string"}, "@types/joi": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "@types/mongoose": {"type": "string"}, "@types/morgan": {"type": "string"}, "@types/node": {"type": "string"}, "@types/redis": {"type": "string"}, "bcrypt": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "http-errors": {"type": "string"}, "joi": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "redis": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/bcrypt", "@types/dotenv", "@types/express", "@types/http-errors", "@types/joi", "@types/jsonwebtoken", "@types/mongoose", "@types/morgan", "@types/node", "@types/redis", "bcrypt", "dotenv", "express", "http-errors", "joi", "jsonwebtoken", "mongoose", "morgan", "nodemon", "redis", "ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "40686", "name" : {"en" : "Bussaya"}, "country" : "IQ", "region" : "MU", "identifiers" : {"wmo" : "40686"}, "location" : {"latitude" : 30.1, "longitude" : 46.1167, "elevation" : 144}, "timezone" : "Asia/Baghdad"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["aerolineas galapagos (aerogal)", "bogota", "colombia", "quito", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "cuenca", "ecuador", "quito", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "galapagos", "ecuador", "guayaquil", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "guayaquil", "ecuador", "cuenca", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "guayaquil", "ecuador", "galapagos", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "guayaquil", "ecuador", "quito", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "manta", "ecuador", "quito", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "quito", "ecuador", "bogota", "colombia", "0"], ["aerolineas galapagos (aerogal)", "quito", "ecuador", "cuenca", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "quito", "ecuador", "guayaquil", "ecuador", "0"], ["aerolineas galapagos (aerogal)", "quito", "ecuador", "manta", "ecuador", "0"]]
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": {"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#"}
{"wire-plugin" : [{"target" : "\\Spryker\\Zed\\Installer\\InstallerDependencyProvider::getInstallerPlugins", "source" : "\\Spryker\\Zed\\Newsletter\\Communication\\Plugin\\NewsletterInstallerPlugin"}]}
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#"}
Please provide a valid JSON object following this schema: {"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#"}
[{"name" : "ROSELYNE", "frequency" : 25347, "males" : "0.0 %", "females" : "100.0 %"}]
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"virtualNetworks": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "resourceGroupName": {"type": "string"}, "subscriptionId": {"type": "string"}, "location": {"type": "string"}, "properties": {"type": "object", "properties": {"addressSpace": {"type": "object", "properties": {"addressPrefixes": {"type": "array", "items": {"type": "string"}}}, "required": ["addressPrefixes"]}, "subnets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"addressPrefix": {"type": "string"}}, "required": ["addressPrefix"]}}, "required": ["name", "properties"]}}, "dhcpOptions": {"type": "object", "properties": {"dnsServers": {"type": "array", "items": {"type": "string"}}}, "required": ["dnsServers"]}}, "required": ["addressSpace", "subnets", "dhcpOptions"]}}, "required": ["name", "tags", "resourceGroupName", "subscriptionId", "location", "properties"]}}}, "required": ["value"]}, "virtualNetworkPeerings": {"type": "object", "properties": {"value": {"type": "array", "items": {}}}, "required": ["value"]}, "deploymentContext": {"type": "object", "properties": {"value": {"type": "object", "properties": {"parentTemplateUniqueString": {"type": "string"}, "sasToken": {"type": "string"}}, "required": ["parentTemplateUniqueString", "sasToken"]}}, "required": ["value"]}}, "required": ["virtualNetworks", "virtualNetworkPeerings", "deploymentContext"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion" : "1.0.0.0", "parameters" : {"virtualNetworks" : {"value" : [{"name" : "sbg-sp2016-vnet", "tags" : {}, "resourceGroupName" : "sbg-sp2016-network-rg", "subscriptionId" : "5c3ad1af-0d8b-4a13-9eea-7ec91a37d2d2", "location" : "westeurope", "properties" : {"addressSpace" : {"addressPrefixes" : ["10.0.0.0/16"]}, "subnets" : [{"name" : "web", "properties" : {"addressPrefix" : "10.0.1.0/24"}}, {"name" : "cache", "properties" : {"addressPrefix" : "10.0.2.0/24"}}, {"name" : "sql", "properties" : {"addressPrefix" : "10.0.3.0/24"}}, {"name" : "ad", "properties" : {"addressPrefix" : "10.0.4.0/24"}}, {"name" : "app", "properties" : {"addressPrefix" : "10.0.5.0/24"}}, {"name" : "search", "properties" : {"addressPrefix" : "10.0.6.0/24"}}, {"name" : "mgmt", "properties" : {"addressPrefix" : "10.0.0.128/25"}}, {"name" : "GatewaySubnet", "properties" : {"addressPrefix" : "10.0.255.224/27"}}], "dhcpOptions" : {"dnsServers" : ["10.0.4.4", "10.0.4.5"]}}}]}, "virtualNetworkPeerings" : {"value" : []}, "deploymentContext" : {"value" : {"parentTemplateUniqueString" : "bb-04-vnet", "sasToken" : ""}}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"virtualNetworks": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "resourceGroupName": {"type": "string"}, "subscriptionId": {"type": "string"}, "location": {"type": "string"}, "properties": {"type": "object", "properties": {"addressSpace": {"type": "object", "properties": {"addressPrefixes": {"type": "array", "items": {"type": "string"}}}, "required": ["addressPrefixes"]}, "subnets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"addressPrefix": {"type": "string"}}, "required": ["addressPrefix"]}}, "required": ["name", "properties"]}}, "dhcpOptions": {"type": "object", "properties": {"dnsServers": {"type": "array", "items": {"type": "string"}}}, "required": ["dnsServers"]}}, "required": ["addressSpace", "subnets", "dhcpOptions"]}}, "required": ["name", "tags", "resourceGroupName", "subscriptionId", "location", "properties"]}}}, "required": ["value"]}, "virtualNetworkPeerings": {"type": "object", "properties": {"value": {"type": "array", "items": {}}}, "required": ["value"]}, "deploymentContext": {"type": "object", "properties": {"value": {"type": "object", "properties": {"parentTemplateUniqueString": {"type": "string"}, "sasToken": {"type": "string"}}, "required": ["parentTemplateUniqueString", "sasToken"]}}, "required": ["value"]}}, "required": ["virtualNetworks", "virtualNetworkPeerings", "deploymentContext"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"firebase": {"type": "object", "properties": {"projectId": {"type": "string"}, "appId": {"type": "string"}, "databaseURL": {"type": "string"}, "storageBucket": {"type": "string"}, "locationId": {"type": "string"}, "apiKey": {"type": "string"}, "authDomain": {"type": "string"}, "messagingSenderId": {"type": "string"}, "measurementId": {"type": "string"}}, "required": ["projectId", "appId", "databaseURL", "storageBucket", "locationId", "apiKey", "authDomain", "messagingSenderId", "measurementId"]}}, "required": ["firebase"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"firebase" : {"projectId" : "ath-capital", "appId" : "1:993720228104:web:b1847e54113f31e5cdf4bd", "databaseURL" : "https://ath-capital-default-rtdb.firebaseio.com", "storageBucket" : "ath-capital.appspot.com", "locationId" : "us-central", "apiKey" : "AIzaSyAEJbm5Re_JUy4gfTgFPjh7s_x01lGUagc", "authDomain" : "ath-capital.firebaseapp.com", "messagingSenderId" : "993720228104", "measurementId" : "G-81J356EK5R"}}
json_instruct
{"type": "object", "properties": {"firebase": {"type": "object", "properties": {"projectId": {"type": "string"}, "appId": {"type": "string"}, "databaseURL": {"type": "string"}, "storageBucket": {"type": "string"}, "locationId": {"type": "string"}, "apiKey": {"type": "string"}, "authDomain": {"type": "string"}, "messagingSenderId": {"type": "string"}, "measurementId": {"type": "string"}}, "required": ["projectId", "appId", "databaseURL", "storageBucket", "locationId", "apiKey", "authDomain", "messagingSenderId", "measurementId"]}}, "required": ["firebase"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-rvr2-7hj6-89fr", "modified" : "2022-05-01T07:35:39Z", "published" : "2022-05-01T07:35:39Z", "aliases" : ["CVE-2006-6194"], "details" : "Multiple SQL injection vulnerabilities in index.asp in Ultimate Survey Pro allow remote attackers to execute arbitrary SQL commands via the (1) cat or (2) did parameter.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-6194"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/30499"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/1936"}, {"type" : "WEB", "url" : "http://www.aria-security.com/forum/showthread.php?t=38"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/452554/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/4706"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"gd-sprest.js": {"type": "string"}, "gd-sprest.min.js": {"type": "string"}}, "required": ["gd-sprest.js", "gd-sprest.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"gd-sprest.js" : "sha512-GPnEypUMTpOMgfvrk9E9HcnecBYHI5ppq8IP6kwq+VzlDBNEBw6i9vW03p2QCT6vwvHDig8xqmEkuN8nA0hn7g==", "gd-sprest.min.js" : "sha512-Aho6H7MF0WaVut1Xi6UPa5sdJPSu/kgnmd4wG5JVlKPHv3gHTweseEq4v4RgK10aqBBMFM7H07MDiBU7YALd/Q=="}
json_instruct
{"type": "object", "properties": {"gd-sprest.js": {"type": "string"}, "gd-sprest.min.js": {"type": "string"}}, "required": ["gd-sprest.js", "gd-sprest.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "RESPONSE": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "RESPONSE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DESCRIPTION" : "Antwortet mit einer zuf\u00e4lligen Zahl.", "USAGE" : "zuf\u00e4llig <LowNum> <HighNum>", "RESPONSE" : "\ud83c\udfb2 Zuf\u00e4llige Zahl: {{NUMBER}}"}
json_instruct
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "RESPONSE": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "RESPONSE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"datestamp" : "2020-06-19", "nameWithOwner" : "twitter/ios-twitter-image-pipeline", "name" : "ios-twitter-image-pipeline", "commits" : 40, "forkCount" : 84, "issues" : 23, "openIssues" : 2, "closedIssues" : 21, "pullRequests" : 27, "openPullRequests" : 0, "mergedPullRequests" : 22, "closedPullRequests" : 5, "stargazers" : 1783, "watchers" : 37}
json_instruct
{"type": "object", "properties": {"datestamp": {"type": "string"}, "nameWithOwner": {"type": "string"}, "name": {"type": "string"}, "commits": {"type": "integer"}, "forkCount": {"type": "integer"}, "issues": {"type": "integer"}, "openIssues": {"type": "integer"}, "closedIssues": {"type": "integer"}, "pullRequests": {"type": "integer"}, "openPullRequests": {"type": "integer"}, "mergedPullRequests": {"type": "integer"}, "closedPullRequests": {"type": "integer"}, "stargazers": {"type": "integer"}, "watchers": {"type": "integer"}}, "required": ["datestamp", "nameWithOwner", "name", "commits", "forkCount", "issues", "openIssues", "closedIssues", "pullRequests", "openPullRequests", "mergedPullRequests", "closedPullRequests", "stargazers", "watchers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"size": {"type": "integer"}, "voltages": {"type": "array", "items": {"type": "number"}}, "time_constants": {"type": "array", "items": {"type": "number"}}, "biases": {"type": "array", "items": {"type": "number"}}, "inner_weights": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "outputs": {"type": "array", "items": {"type": "number"}}, "weight_range": {"type": "integer"}, "bias_range": {"type": "integer"}, "tc_min": {"type": "integer"}, "tc_max": {"type": "integer"}, "inv_time_constants": {"type": "array", "items": {"type": "number"}}}, "required": ["size", "voltages", "time_constants", "biases", "inner_weights", "outputs", "weight_range", "bias_range", "tc_min", "tc_max", "inv_time_constants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"size" : 2, "voltages" : [0.0, 0.0], "time_constants" : [1.0, 1.0], "biases" : [-4.502053190141698, 3.495628179780855], "inner_weights" : [[10.714948757300782, -12.646524660164168], [7.8284954137445695, -4.463973239798857]], "outputs" : [0.0, 0.0], "weight_range" : 16, "bias_range" : 16, "tc_min" : 1, "tc_max" : 1, "inv_time_constants" : [1.0, 1.0]}
json_instruct
{"type": "object", "properties": {"size": {"type": "integer"}, "voltages": {"type": "array", "items": {"type": "number"}}, "time_constants": {"type": "array", "items": {"type": "number"}}, "biases": {"type": "array", "items": {"type": "number"}}, "inner_weights": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "outputs": {"type": "array", "items": {"type": "number"}}, "weight_range": {"type": "integer"}, "bias_range": {"type": "integer"}, "tc_min": {"type": "integer"}, "tc_max": {"type": "integer"}, "inv_time_constants": {"type": "array", "items": {"type": "number"}}}, "required": ["size", "voltages", "time_constants", "biases", "inner_weights", "outputs", "weight_range", "bias_range", "tc_min", "tc_max", "inv_time_constants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "string"}, "dist": {"type": "string"}, "release": {"type": "string"}}, "required": ["start", "pack", "dist", "release"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "build": {"type": "object", "properties": {"appId": {"type": "string"}, "mac": {"type": "object", "properties": {"category": {"type": "string"}}, "required": ["category"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["appId", "mac", "files"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-builder": {"type": "string"}}, "required": ["electron", "electron-builder"]}, "dependencies": {"type": "object", "properties": {"electron-updater": {"type": "string"}, "smalltalk": {"type": "string"}}, "required": ["electron-updater", "smalltalk"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "repository", "build", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "moysklad-desktop", "version" : "0.6.5", "description" : "moysklad desktop client", "main" : "main.js", "scripts" : {"start" : "electron main.js", "pack" : "electron-builder --dir", "dist" : "electron-builder", "release" : "build"}, "author" : "Maxim Filimonov", "license" : "MIT", "homepage" : "http://moysklad.ru", "repository" : {"type" : "git", "url" : "git+https://github.com/Maxim-Filimonov/moysklad-desktop.git"}, "build" : {"appId" : "moysklad.ru", "mac" : {"category" : "business"}, "files" : ["**/*", "build/icon.*"]}, "devDependencies" : {"electron" : "^5.0.8", "electron-builder" : "^20.24.4"}, "dependencies" : {"electron-updater" : "^4.1.2", "smalltalk" : "^3.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "pack": {"type": "string"}, "dist": {"type": "string"}, "release": {"type": "string"}}, "required": ["start", "pack", "dist", "release"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "build": {"type": "object", "properties": {"appId": {"type": "string"}, "mac": {"type": "object", "properties": {"category": {"type": "string"}}, "required": ["category"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["appId", "mac", "files"]}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-builder": {"type": "string"}}, "required": ["electron", "electron-builder"]}, "dependencies": {"type": "object", "properties": {"electron-updater": {"type": "string"}, "smalltalk": {"type": "string"}}, "required": ["electron-updater", "smalltalk"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "repository", "build", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "emendatusenigmatica:block/emerald_gravel_ore"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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#"}
[{"name" : "TANAKA", "frequency" : 147, "males" : "10.884353741496598 %", "females" : "89.1156462585034 %"}]
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ajv.bundle.js": {"type": "string"}, "ajv.min.js": {"type": "string"}, "nodent.min.js": {"type": "string"}, "regenerator.min.js": {"type": "string"}}, "required": ["ajv.bundle.js", "ajv.min.js", "nodent.min.js", "regenerator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ajv.bundle.js" : "sha256-X+ZuS3dX64Y59KBEcwTAkxM3xNI7+JiMCdUjcMzVWY8=", "ajv.min.js" : "sha256-kJlVd3iTdB2oGqyKv7qd/CoJ0m8wb0VYrfd76vDkJCM=", "nodent.min.js" : "sha256-P6DrR6ninSdJENNwkXjlTmqS9IqMoPcDbcPg7VQ8Z74=", "regenerator.min.js" : "sha256-SJZCGRDNdlRWQhauWTscg2DWTeEHI6COFahlAgWR83U="}
json_instruct
{"type": "object", "properties": {"ajv.bundle.js": {"type": "string"}, "ajv.min.js": {"type": "string"}, "nodent.min.js": {"type": "string"}, "regenerator.min.js": {"type": "string"}}, "required": ["ajv.bundle.js", "ajv.min.js", "nodent.min.js", "regenerator.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sn11.8:0.3": {"type": "string"}, "sn11.8:2.3": {"type": "string"}, "sn11.8:3.3": {"type": "string"}}, "required": ["sn11.8:0.3", "sn11.8:2.3", "sn11.8:3.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sn11.8:0.3" : "Verocanaasurindasutta \u2192 virocanaasurindasutta\u1e41 (sya-all, pts2ed); virocana-asurindo (attho) (pts1ed)", "sn11.8:2.3" : "Nipphannasobhano \u2192 nipphannasobhino (bj, pts2ed); nippannasobha\u1e47o (pts1ed); nipphannasobha\u1e47o (mr) | attho \u2192 atth\u0101 (bj, pts2ed)", "sn11.8:3.3" : "Nipphannasobhano attho \u2192 nipphannasobhino atth\u0101 (bj, cck, km, pts2ed); nippannasobha\u1e47o attho (pts1ed)"}
json_instruct
{"type": "object", "properties": {"sn11.8:0.3": {"type": "string"}, "sn11.8:2.3": {"type": "string"}, "sn11.8:3.3": {"type": "string"}}, "required": ["sn11.8:0.3", "sn11.8:2.3", "sn11.8:3.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id_9273": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9273"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_9273" : {"publicdate" : "2014-12-01 10:29:02", "title" : "Pro Patria"}}
json_instruct
{"type": "object", "properties": {"id_9273": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9273"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_58brk", "name" : "RockySprinkles"}, "date" : {"day" : 1501113600, "full" : 1501167506, "month" : 1498867200, "week" : 1500768000}, "id" : "t3_6pwgzv", "misc" : {"postHint" : "link"}, "picture" : {"filesize" : 80482, "fullUrl" : "https://external-preview.redd.it/7QU3BhEHco0Lb9yCFPZ-BoYNQznefls-WsW1NiHZiGE.jpg?auto=webp&s=edaff726a871d440a1f79f6e773b6bb64d41156b", "hash" : "74aecfeb5e", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFBv/EACEQAAEEAQQDAQAAAAAAAAAAAAECAwQRABMhMXEFElFh/8QAFAEBAAAAAAAAAAAAAAAAAAAABf/EABcRAQEBAQAAAAAAAAAAAAAAABEBAAL/2gAMAwEAAhEDEQA/AMCz44K0KJ9VbrNgV1+43OiNR4Kg20pW/J+95NiTnkxzRFBO14SJTz7Z1Vk0eucBOnIElN//2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/Kb6ehsScpMrgDQhTxLOyU7V6MwRvdUEBU0fvISIVHtc.jpg", "url" : "https://external-preview.redd.it/7QU3BhEHco0Lb9yCFPZ-BoYNQznefls-WsW1NiHZiGE.jpg?width=640&crop=smart&auto=webp&s=0f1564c372edeeeb39802da3d9ad3e881c4b307b", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "isCurated" : false, "ratio" : 0.84, "ups" : 4, "value" : 4}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Region"], "title" : "Region Map: The Trielta Hills (Faerun)", "url" : "https://www.reddit.com/r/dndmaps/comments/6pwgzv/region_map_the_trielta_hills_faerun/"}
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"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "130127100201", "text" : "\u4e1c\u5173\u6751\u59d4\u4f1a"}, {"id" : "130127100202", "text" : "\u897f\u5173\u6751\u59d4\u4f1a"}, {"id" : "130127100203", "text" : "\u4e1c\u5357\u5173\u6751\u59d4\u4f1a"}, {"id" : "130127100204", "text" : "\u897f\u5357\u5173\u6751\u59d4\u4f1a"}, {"id" : "130127100205", "text" : "\u5317\u5173\u6751\u59d4\u4f1a"}, {"id" : "130127100206", "text" : "\u5317\u8857\u6751\u59d4\u4f1a"}, {"id" : "130127100207", "text" : "\u5b59\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100208", "text" : "\u4e94\u767e\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100209", "text" : "\u5f20\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100210", "text" : "\u4faf\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100211", "text" : "\u674e\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100212", "text" : "\u738b\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100213", "text" : "\u82b1\u56ed\u6751\u59d4\u4f1a"}, {"id" : "130127100214", "text" : "\u5357\u9648\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100215", "text" : "\u738b\u7559\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100216", "text" : "\u79e6\u7559\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100217", "text" : "\u8fde\u7559\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100218", "text" : "\u9a6c\u7559\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100219", "text" : "\u5bfa\u5bb6\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100220", "text" : "\u4e1c\u5824\u6751\u59d4\u4f1a"}, {"id" : "130127100221", "text" : "\u897f\u5824\u6751\u59d4\u4f1a"}, {"id" : "130127100222", "text" : "\u5c0f\u7559\u6751\u6751\u59d4\u4f1a"}, {"id" : "130127100223", "text" : "\u5927\u592b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130127100224", "text" : "\u66f9\u7559\u6751\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:placetype": {"type": "string"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:placetype", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101754795, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "b17772f6219a64d77ad5eddecda7db16", "wof:id" : 101754795, "wof:placetype" : "locality", "wof:repo" : "whosonfirst-data-admin-nl"}, "bbox" : [4.61538466007795, 52.39623280130672, 4.63414140255219, 52.41591383233418], "geometry" : {"coordinates" : [[[4.63254344589791, 52.41105517842885], [4.63120702182857, 52.40838233029029], [4.63414140255219, 52.40639730803633], [4.6340615000006, 52.40626550000059], [4.62858600000033, 52.39921950000058], [4.62782800000014, 52.39848700000056], [4.62701950000059, 52.39757150000048], [4.62430153910049, 52.3962701425346], [4.62347635351716, 52.39623280130672], [4.62325852204714, 52.39802450473871], [4.62179282329259, 52.39795816042272], [4.62168387003658, 52.39885401024941], [4.61728670983388, 52.39865486441357], [4.61717766291838, 52.39955070939027], [4.61571192154122, 52.39948428981432], [4.61538466007795, 52.40217181871776], [4.61685048971839, 52.40223824291206], [4.61674142116578, 52.4031340869501], [4.61820728428592, 52.40320049463639], [4.61744385891819, 52.40947140711461], [4.61597778979007, 52.40940498865166], [4.61554130992732, 52.41298835589868], [4.61700749680659, 52.41305478052129], [4.61678928327456, 52.4148464658208], [4.61825553309779, 52.41491287547086], [4.61813362085059, 52.41591383233418], [4.63291709942968, 52.41558531058786], [4.633135820132, 52.41378425990149], [4.63166958866367, 52.41371803385852], [4.6319959851607, 52.41103045802288], [4.63254344589791, 52.41105517842885]]], "type" : "Polygon"}}
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:placetype": {"type": "string"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:placetype", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"edges" : [[8, 1], [37, 8], [29, 8], [34, 8], [8, 31], [2, 8], [31, 8], [8, 15], [8, 30], [8, 26], [35, 8], [8, 19], [3, 6], [2, 8], [8, 20], [26, 8], [8, 37], [22, 4], [8, 34], [15, 8], [24, 26], [26, 3], [8, 37], [17, 10], [8, 26], [14, 8], [8, 17], [11, 8], [8, 4], [8, 4], [28, 8], [26, 8], [8, 11], [2, 8], [33, 8], [8, 17], [6, 8], [0, 23], [8, 27], [18, 7], [6, 8], [36, 8], [5, 25], [16, 8], [13, 21], [9, 8], [15, 11], [4, 8], [32, 12]], "features" : {"0" : "1", "1" : "1", "2" : "3", "3" : "2", "4" : "4", "5" : "1", "6" : "3", "7" : "1", "8" : "38", "9" : "1", "10" : "1", "11" : "3", "12" : "1", "13" : "1", "14" : "1", "15" : "3", "16" : "1", "17" : "3", "18" : "1", "19" : "1", "20" : "1", "21" : "1", "22" : "1", "23" : "1", "24" : "1", "25" : "1", "26" : "6", "27" : "1", "28" : "1", "29" : "1", "30" : "1", "31" : "2", "32" : "1", "33" : "1", "34" : "2", "35" : "1", "36" : "1", "37" : "3"}}
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Richard Katrovas", "classification" : "", "keywords" : [], "period" : "", "reference" : "http://www.poetryfoundation.org/poetrymagazine/poem/30331", "region" : "", "text" : ["I, as sinned against as sinning,", "take small pleasure from the winning", "of our decades-long guerrilla war.", "For from my job I've wanted more", "than victory over one who'd tried", "to punish me before he died,", "and now, neither of us dead,", "we haunt these halls in constant dread", "of drifting past the other's life", "while long-term memory is rife", "with slights that sting like paper cuts.", "We've occupied our separate ruts", "yet simmered in a single rage.", "We've grown absurd in middle age", "together, and should seek wisdom now", "together, by ending this row.", "I therefore decommission you", "as constant flagship of my rue.", "Below the threshold of my hate", "you now my good regard may rate.", "For I have let my anger pass.", "But, while you're down there, kiss my ass."], "title" : "Love Poem for an Enemy", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"metro-react-native-babel-preset": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["metro-react-native-babel-preset", "prettier"]}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}}, "required": ["prop-types"]}}, "required": ["name", "version", "description", "main", "author", "license", "repository", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "digi-rn-wizard", "version" : "0.0.1", "description" : "React Native Wizard Component", "main" : "index.js", "author" : "Matthew Wood", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/DigiColonyLLC/digiWizard.git"}, "devDependencies" : {"metro-react-native-babel-preset" : "^0.66.0", "prettier" : "^2.3.1"}, "dependencies" : {"prop-types" : "^15.7.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"metro-react-native-babel-preset": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["metro-react-native-babel-preset", "prettier"]}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}}, "required": ["prop-types"]}}, "required": ["name", "version", "description", "main", "author", "license", "repository", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "a helper", "long" : "a helper."}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"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"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0634\u062f\u0645 \u0635\u06cc\u062f\u06cc \u06a9\u0647 \u0646\u062a\u0648\u0627\u0646 \u0632\u062f \u062a\u063a\u0627\u0641\u0644", "m2" : "\u0628\u0647 \u0635\u06cc\u0627\u062f\u06cc \u06a9\u0647 \u062f\u0627\u0646\u062f \u0632\u062e\u0645 \u06a9\u0627\u0631\u06cc \u0627\u0633\u062a"}, "1" : {"m1" : "\u0628\u0644\u0627 \u06af\u0631\u062f\u0627\u0646 \u0622\u0646 \u0635\u06cc\u0627\u062f \u06af\u0631\u062f\u0645", "m2" : "\u06a9\u0647 \u0628\u06cc\u200c\u062f\u0627\u0646\u0647 \u062f\u0631\u06cc\u0646 \u062f\u0627\u0645\u0645 \u0641\u06a9\u0646\u062f\u0647 \u0627\u0633\u062a"}}}
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"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MRRm_new" : 0.4072719787247397, "MRm_new" : 217.3181424692571, "HITS@1m_new" : 0.2948942607251411, "HITS@3m_new" : 0.4574241617091611, "HITS@10m_new" : 0.6383697677186865}
json_instruct
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xywh" : "-649,1571,5482,692"}
json_instruct
{"type": "object", "properties": {"xywh": {"type": "string"}}, "required": ["xywh"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"doofinder.css": {"type": "string"}, "doofinder.js": {"type": "string"}, "doofinder.min.css": {"type": "string"}, "doofinder.min.js": {"type": "string"}}, "required": ["doofinder.css", "doofinder.js", "doofinder.min.css", "doofinder.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"doofinder.css" : "sha256-VggH/Waz7z8yRndBYtMqAD+bb0Uz6sRAbpW5ZMK5BGc=", "doofinder.js" : "sha256-r6yjN1ROp+4kwbIMPcdVtxNfaOT/pmD37DInLd4koLM=", "doofinder.min.css" : "sha256-EXWyk4DraPGOvDXUvPLI3S0rjt2pF0KRWRYxAC48cDI=", "doofinder.min.js" : "sha256-vFQ1mjJRJwn9fCl4Y9Mde3iltBFWOYe0KR6zATtldmE="}
json_instruct
{"type": "object", "properties": {"doofinder.css": {"type": "string"}, "doofinder.js": {"type": "string"}, "doofinder.min.css": {"type": "string"}, "doofinder.min.js": {"type": "string"}}, "required": ["doofinder.css", "doofinder.js", "doofinder.min.css", "doofinder.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "WIZARD MOON", "symbol" : "WIZ", "address" : "0xA126AAce6757a0DD89C60C1c16cf8997F749780b", "decimals" : 8, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following 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"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "Tippecanoe", "state_name" : "Indiana", "state_abbrv" : "IN", "lat" : "41.2166", "long" : "-86.1095"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"LightwaveServer": {"type": "string"}, "PostServer": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "OIDCClientID": {"type": "string"}, "Tenant": {"type": "string"}}, "required": ["LightwaveServer", "PostServer", "OIDCClientID", "Tenant"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"LightwaveServer" : "<server name>", "PostServer" : {"host" : "<host", "port" : 1234}, "OIDCClientID" : "<ID>", "Tenant" : "<tenant_name>"}
json_instruct
{"type": "object", "properties": {"LightwaveServer": {"type": "string"}, "PostServer": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}}, "required": ["host", "port"]}, "OIDCClientID": {"type": "string"}, "Tenant": {"type": "string"}}, "required": ["LightwaveServer", "PostServer", "OIDCClientID", "Tenant"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"users": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "realname": {"type": "string"}, "gravatarHash": {"type": "string"}}, "required": ["username", "realname", "gravatarHash"]}}}, "required": ["users"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"users" : [{"username" : "kbaseuitest", "realname" : "KBase UI Test User", "gravatarHash" : "b4d95f8595104614355e6ee9c4c03e3f"}]}
json_instruct
{"type": "object", "properties": {"users": {"type": "array", "items": {"type": "object", "properties": {"username": {"type": "string"}, "realname": {"type": "string"}, "gravatarHash": {"type": "string"}}, "required": ["username", "realname", "gravatarHash"]}}}, "required": ["users"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x0a6cc3e995ee9fee7f8a90dd8372180ded6adfcd65aa8af84395d806a205788c", "parentHash" : "0xc3491a5424380529dd8333e6b5f2ccc56abe40858039d3929ee5564dd9764238", "number" : 74502, "timestamp" : 1439387051, "nonce" : "0xdc7f6b6792ec2404", "difficulty" : 2215030299331, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf8E0CA3Ed80bd541b94BEdCf259e8CF2141A9523", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"testFiles": {"type": "string"}, "componentFolder": {"type": "string"}}, "required": ["testFiles", "componentFolder"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"testFiles" : "**/*.spec.{js,jsx,tsx,ts}", "componentFolder" : "cypress/pages"}
json_instruct
{"type": "object", "properties": {"testFiles": {"type": "string"}, "componentFolder": {"type": "string"}}, "required": ["testFiles", "componentFolder"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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://json-schema.org/draft-07/schema#"}
{"contract" : "0x68d40d9808c38c5e860872d25a17d269d804c62a", "tool" : "osiris", "start" : 1564592441.3281622, "end" : 1564592444.1960402, "duration" : 2.867877960205078, "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://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "development": {"type": "object", "properties": {}, "required": []}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "repo", "description", "version", "keywords", "dependencies", "development", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "underscore.string.fp", "repo" : "epeli/underscore.string.fp", "description" : "This is an extension for underscore.string to use it as a FP-library or with a library like lodash-fp or ramda", "version" : "1.0.4", "keywords" : ["ramda", "string", "underscore.string"], "dependencies" : {}, "development" : {}, "main" : "index.js", "scripts" : ["*.js"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "repo": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "development": {"type": "object", "properties": {}, "required": []}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "repo", "description", "version", "keywords", "dependencies", "development", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "fs": {"type": "string"}, "helmet": {"type": "string"}, "http": {"type": "string"}, "ms": {"type": "string"}}, "required": ["compression", "cors", "express", "fs", "helmet", "http", "ms"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "main", "private", "engines", "dependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "blob-project-cdn", "version" : "1.0.0", "main" : "server.js", "private" : true, "engines" : {"node" : "14.x"}, "dependencies" : {"compression" : "^1.7.4", "cors" : "^2.8.5", "express" : "^4.17.1", "fs" : "^0.0.1-security", "helmet" : "^4.4.1", "http" : "^0.0.1-security", "ms" : "^2.0.0"}, "scripts" : {"start" : "node --expose-gc --max-old-space-size=2048 server.js", "test" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Blob-Development/cdn.git"}, "author" : "Blob Project", "license" : "MIT", "bugs" : {"url" : "https://github.com/Blob-Development/cdn/issues"}, "homepage" : "https://github.com/Blob-Development/cdn#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"compression": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "fs": {"type": "string"}, "helmet": {"type": "string"}, "http": {"type": "string"}, "ms": {"type": "string"}}, "required": ["compression", "cors", "express", "fs", "helmet", "http", "ms"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "main", "private", "engines", "dependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "The Helix Nebula from Blanco and Hubble", "credit" : "C. R. O'Dell, (Vanderbilt) et al. ESA, NOAO, NASA", "explanation" : "How did a star create the Helix nebula? The shapes of planetary nebula like the Helix are important because they likely hold clues to how stars like the Sun end their lives. Observations by the orbiting Hubble Space Telescope and the 4-meter Blanco Telescope in Chile, however, have shown the Helix is not really a simple helix. Rather, it incorporates two nearly perpendicular disks as well as arcs, shocks, and even features not well understood. Even so, many strikingly geometric symmetries remain. How a single Sun-like star created such beautiful yet geometric complexity is a topic of research. The Helix Nebula is the nearest planetary nebula to Earth, lies only about 700 light years away toward the constellation of Aquarius, and spans about 3 light-years.", "date" : "2020-08-23", "hdurl" : "https://apod.nasa.gov/apod/image/2008/helix_blancoHubble_6145.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/2008/helix_blancoHubble_1080.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
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#"}
[[2003, 6], [2007, 5], [2008, 10], [2009, 5], [2010, 5], [2011, 8], [2012, 5], [2013, 6], [2014, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Setefilla", "id" : "256448", "bbox" : [-5.497602, 37.703559, -5.497602, 37.703559], "description" : "An ancient place, cited: BAtlas 26 E4 Setefilla", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-5.497602, 37.703559]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [-5.497602, 37.703559]}, "id" : "darmc-location-21094", "type" : "Feature", "properties" : {"description" : "1M scale point location", "location_precision" : "precise", "title" : "DARMC location 21094", "link" : "http://pleiades.stoa.org/places/256448/darmc-location-21094"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0686\u0648\u0646 \u0634\u0627\u0646\u0647 \u0648 \u0633\u0646\u06af \u0627\u06af\u0631 \u067e\u0630\u06cc\u0631\u062f \u0631\u0627\u06cc\u062a", "m2" : "\u062a\u0627 \u0641\u0631\u0645\u0627\u0626\u06cc \u0628\u0647 \u0644\u0639\u0644 \u06af\u0648\u0647\u0631\u0632\u0627\u06cc\u062a"}, "1" : {"m1" : "\u062f\u0633\u062a\u06cc \u0628\u0647 \u0635\u062f \u0627\u0646\u06af\u0634\u062a \u0632\u0646\u0645 \u062f\u0631 \u0632\u0644\u0641\u062a", "m2" : "\u0628\u0648\u0633\u06cc \u0628\u0647 \u0647\u0632\u0627\u0631 \u0644\u0628 \u0646\u0647\u0645 \u0628\u0631 \u067e\u0627\u06cc\u062a"}}}
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"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"homePageText": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "searchBarPlaceHolder": {"type": "string"}}, "required": ["title", "description", "searchBarPlaceHolder"]}, "matchRegEx": {"type": "string"}, "searchSuffix": {"type": "string"}, "azureServiceName": {"type": "string"}, "armApiConfig": {"type": "object", "properties": {"armApiVersion": {"type": "string"}}, "required": ["armApiVersion"]}, "isSearchEnabled": {"type": "boolean"}, "keystoneDetectorId": {"type": "string"}, "liveChatConfig": {"type": "object", "properties": {"isApplicableForLiveChat": {"type": "boolean"}, "supportTopicIds": {"type": "array", "items": {}}}, "required": ["isApplicableForLiveChat", "supportTopicIds"]}, "categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "color": {"type": "string"}, "createFlowForCategory": {"type": "boolean"}, "chatEnabled": {"type": "boolean"}}, "required": ["id", "name", "description", "keywords", "color", "createFlowForCategory", "chatEnabled"]}}, "pesId": {"type": "string"}}, "required": ["homePageText", "matchRegEx", "searchSuffix", "azureServiceName", "armApiConfig", "isSearchEnabled", "keystoneDetectorId", "liveChatConfig", "categories", "pesId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"homePageText" : {"title" : "ISE Diagnostics (Preview)", "description" : "Use ISE Diagnostics (Preview) to investigate common issues. Select the problem category that best matches the information or tool that you're interested in:", "searchBarPlaceHolder" : "Search ISE Diagnostics"}, "matchRegEx" : "/Microsoft.Logic/integrationServiceEnvironments/", "searchSuffix" : "ISE", "azureServiceName" : "Integration Service Environments", "armApiConfig" : {"armApiVersion" : "2016-06-01"}, "isSearchEnabled" : true, "keystoneDetectorId" : "", "liveChatConfig" : {"isApplicableForLiveChat" : false, "supportTopicIds" : []}, "categories" : [{"id" : "Provisioning Diagnostics", "name" : "Provisioning Diagnostics", "description" : "Is your ISE experiencing problems during provisioning? Select this category for a step-by-step analysis of the provisioning process.", "keywords" : ["Provisioning Failures", "Deployment", "VNet", "Debug Logs"], "color" : "rgb(186, 211, 245)", "createFlowForCategory" : true, "chatEnabled" : false}], "pesId" : "17030"}
json_instruct
{"type": "object", "properties": {"homePageText": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "searchBarPlaceHolder": {"type": "string"}}, "required": ["title", "description", "searchBarPlaceHolder"]}, "matchRegEx": {"type": "string"}, "searchSuffix": {"type": "string"}, "azureServiceName": {"type": "string"}, "armApiConfig": {"type": "object", "properties": {"armApiVersion": {"type": "string"}}, "required": ["armApiVersion"]}, "isSearchEnabled": {"type": "boolean"}, "keystoneDetectorId": {"type": "string"}, "liveChatConfig": {"type": "object", "properties": {"isApplicableForLiveChat": {"type": "boolean"}, "supportTopicIds": {"type": "array", "items": {}}}, "required": ["isApplicableForLiveChat", "supportTopicIds"]}, "categories": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "color": {"type": "string"}, "createFlowForCategory": {"type": "boolean"}, "chatEnabled": {"type": "boolean"}}, "required": ["id", "name", "description", "keywords", "color", "createFlowForCategory", "chatEnabled"]}}, "pesId": {"type": "string"}}, "required": ["homePageText", "matchRegEx", "searchSuffix", "azureServiceName", "armApiConfig", "isSearchEnabled", "keystoneDetectorId", "liveChatConfig", "categories", "pesId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "tnws", "repos" : 1, "login" : "tnws", "id" : 6431232, "avatar_url" : "https://avatars1.githubusercontent.com/u/6431232?v=3", "url" : "https://api.github.com/users/tnws", "html_url" : "https://github.com/tnws", "followers_url" : "https://api.github.com/users/tnws/followers", "following_url" : "https://api.github.com/users/tnws/following{/other_user}", "gists_url" : "https://api.github.com/users/tnws/gists{/gist_id}", "starred_url" : "https://api.github.com/users/tnws/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/tnws/subscriptions", "organizations_url" : "https://api.github.com/users/tnws/orgs", "repos_url" : "https://api.github.com/users/tnws/repos", "events_url" : "https://api.github.com/users/tnws/events{/privacy}", "received_events_url" : "https://api.github.com/users/tnws/received_events", "type" : "User", "site_admin" : false, "name" : "Trevor", "company" : null, "blog" : "http://trvr.xyz", "location" : "United States", "email" : null, "hireable" : null, "bio" : "I'm a student developer living in the Georgia, USA area.", "public_repos" : 5, "public_gists" : 1, "followers" : 18, "following" : 48, "created_at" : "2014-01-17T16:37:25Z", "updated_at" : "2017-02-14T05:49:19Z"}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "editor.tabSize": {"type": "integer"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "typescript.tsdk": {"type": "string"}}, "required": ["cSpell.words", "editor.tabSize", "editor.codeActionsOnSave", "typescript.tsdk"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["Anilist", "Bookwalker", "Engtl", "Kitsu", "Unfollow", "deepmerge", "hentai", "josei", "mangadex", "scanlation", "seinen", "senko", "shoujo", "shounen"], "editor.tabSize" : 2, "editor.codeActionsOnSave" : {"source.fixAll.eslint" : true}, "typescript.tsdk" : "node_modules/typescript/lib"}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "editor.tabSize": {"type": "integer"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "typescript.tsdk": {"type": "string"}}, "required": ["cSpell.words", "editor.tabSize", "editor.codeActionsOnSave", "typescript.tsdk"], "$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"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "demos": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}}, "required": ["name", "description", "version", "author", "repository", "bugs", "demos", "keywords", "main", "scripts", "licenses", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "credit-card-validation", "description" : "Credit/debit card validation for browsers and Node.js, uses Luhn algo and pattern matching.", "version" : "1.0.0", "author" : "Jack Buckland <[email protected]>", "repository" : {"type" : "git", "url" : "git://github.com/theninja/credit-card-validation"}, "bugs" : {"url" : "https://github.com/theninja/credit-card-validation/issues"}, "demos" : ["example/index.html"], "keywords" : ["credit", "card", "validation", "browser", "luhn", "javascript"], "main" : "src/card.js", "scripts" : {"test" : "mocha -R spec tests/check"}, "licenses" : [{"name" : "MIT", "url" : "http://www.opensource.org/licenses/mit-license.php"}], "devDependencies" : {"mocha" : "1.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "demos": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}}, "required": ["name", "description", "version", "author", "repository", "bugs", "demos", "keywords", "main", "scripts", "licenses", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"slotName": {"type": "string"}, "metadataLocal": {"type": "string"}, "metadataCloud": {"type": "string"}, "sizeLocal": {"type": "integer"}, "sizeCloud": {"type": "integer"}, "lastModifiedLocal": {"type": "integer"}, "lastModifiedCloud": {"type": "integer"}, "lastSync": {"type": "integer"}, "slotSyncStatus": {"type": "integer"}}, "required": ["slotName", "metadataLocal", "metadataCloud", "sizeLocal", "sizeCloud", "lastModifiedLocal", "lastModifiedCloud", "lastSync", "slotSyncStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slotName" : "testSlot", "metadataLocal" : "{'description':'level 1 complete','percentcomplete':0}", "metadataCloud" : "", "sizeLocal" : 42, "sizeCloud" : 0, "lastModifiedLocal" : 1619626703000, "lastModifiedCloud" : 0, "lastSync" : 1619626703000, "slotSyncStatus" : 0}
json_instruct
{"type": "object", "properties": {"slotName": {"type": "string"}, "metadataLocal": {"type": "string"}, "metadataCloud": {"type": "string"}, "sizeLocal": {"type": "integer"}, "sizeCloud": {"type": "integer"}, "lastModifiedLocal": {"type": "integer"}, "lastModifiedCloud": {"type": "integer"}, "lastSync": {"type": "integer"}, "slotSyncStatus": {"type": "integer"}}, "required": ["slotName", "metadataLocal", "metadataCloud", "sizeLocal", "sizeCloud", "lastModifiedLocal", "lastModifiedCloud", "lastSync", "slotSyncStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "JAIDEEN", "frequency" : 0, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"maximum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "site": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "point": {"type": "string"}}, "required": ["maximum-net-dwellings", "site-plan-url", "minimum-net-dwellings", "hectares", "site-address", "organisation", "site", "ownership-status", "notes", "name", "planning-permission-status", "start-date", "slug", "entity", "entry-date", "point"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.981509, 51.450929]}, "properties" : {"maximum-net-dwellings" : "14", "site-plan-url" : "https://images.reading.gov.uk/2020/12/Brownfield-Land-Register-Maps-2020-BL2002-to-BL2055.pdf", "minimum-net-dwellings" : "10", "hectares" : "0.44", "site-address" : "Yeomanry House, Castle Hill, Reading", "organisation" : "local-authority-eng:RDG", "site" : "BL2004", "ownership-status" : "owned by a public authority", "notes" : "Allocation WR3e in Local Plan. Change of use of listed building to residential use or to potential office or restaurant use.. https://images.reading.gov.uk/2019/12/Local_Plan_Adopted_November_2019.pdf", "name" : "BL2004", "planning-permission-status" : "not permissioned", "start-date" : "2017-12-15", "slug" : "/brownfield-land/local-authority-eng/RDG/BL2004", "entity" : 491231, "entry-date" : "2020-12-11", "point" : "POINT(-0.981509 51.450929)"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"maximum-net-dwellings": {"type": "string"}, "site-plan-url": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "hectares": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "site": {"type": "string"}, "ownership-status": {"type": "string"}, "notes": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "point": {"type": "string"}}, "required": ["maximum-net-dwellings", "site-plan-url", "minimum-net-dwellings", "hectares", "site-address", "organisation", "site", "ownership-status", "notes", "name", "planning-permission-status", "start-date", "slug", "entity", "entry-date", "point"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"vhfStatus": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "currentRssi": {"type": "integer"}, "lastRssi": {"type": "integer"}, "afcOffset": {"type": "integer"}}, "required": ["timestamp", "currentRssi", "lastRssi", "afcOffset"]}, "header": {"type": "object", "properties": {"destinationAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "sourceAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "repeaterAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "repeater2Address": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "frameType": {"type": "string"}, "sendSequenceNumber": {"type": "integer"}, "receiveSequenceNumber": {"type": "integer"}, "uControlType": {"type": "string"}, "pid": {"type": "integer"}}, "required": ["destinationAddress", "sourceAddress", "repeaterAddress", "repeater2Address", "frameType", "sendSequenceNumber", "receiveSequenceNumber", "uControlType", "pid"]}, "beginSample": {"type": "integer"}, "beginMillis": {"type": "integer"}}, "required": ["vhfStatus", "header", "beginSample", "beginMillis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vhfStatus" : {"timestamp" : 1604831144, "currentRssi" : 56, "lastRssi" : 0, "afcOffset" : -1346}, "header" : {"destinationAddress" : {"callsign" : "APDST4", "ssid" : 6, "extensionBit" : 0}, "sourceAddress" : {"callsign" : "RS17S", "ssid" : 6, "extensionBit" : 0}, "repeaterAddress" : {"callsign" : "WIDE1", "ssid" : 1, "extensionBit" : 0}, "repeater2Address" : {"callsign" : "WIDE2", "ssid" : 1, "extensionBit" : 1}, "frameType" : "U", "sendSequenceNumber" : 0, "receiveSequenceNumber" : 0, "uControlType" : "UI", "pid" : 240}, "beginSample" : 0, "beginMillis" : 0}
json_instruct
{"type": "object", "properties": {"vhfStatus": {"type": "object", "properties": {"timestamp": {"type": "integer"}, "currentRssi": {"type": "integer"}, "lastRssi": {"type": "integer"}, "afcOffset": {"type": "integer"}}, "required": ["timestamp", "currentRssi", "lastRssi", "afcOffset"]}, "header": {"type": "object", "properties": {"destinationAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "sourceAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "repeaterAddress": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "repeater2Address": {"type": "object", "properties": {"callsign": {"type": "string"}, "ssid": {"type": "integer"}, "extensionBit": {"type": "integer"}}, "required": ["callsign", "ssid", "extensionBit"]}, "frameType": {"type": "string"}, "sendSequenceNumber": {"type": "integer"}, "receiveSequenceNumber": {"type": "integer"}, "uControlType": {"type": "string"}, "pid": {"type": "integer"}}, "required": ["destinationAddress", "sourceAddress", "repeaterAddress", "repeater2Address", "frameType", "sendSequenceNumber", "receiveSequenceNumber", "uControlType", "pid"]}, "beginSample": {"type": "integer"}, "beginMillis": {"type": "integer"}}, "required": ["vhfStatus", "header", "beginSample", "beginMillis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Beroe", "id" : "216730", "bbox" : [28.139477, 44.895529, 28.16459, 44.934392], "description" : "An ancient place, cited: BAtlas 22 F4 Beroe", "names" : ["Beroe"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.1520335, 44.9149605]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [28.16459, 44.934392]}, "id" : "darmc-location-23990", "type" : "Feature", "properties" : {"description" : "1M scale point location", "location_precision" : "precise", "title" : "DARMC location 23990", "link" : "http://pleiades.stoa.org/places/216730/darmc-location-23990"}}, {"geometry" : {"type" : "Point", "coordinates" : [28.139477, 44.895529]}, "id" : "dare-location", "type" : "Feature", "properties" : {"description" : "Representative point location, site precision", "location_precision" : "precise", "title" : "DARE Location", "link" : "http://pleiades.stoa.org/places/216730/dare-location"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "date": {"type": "string"}}, "required": ["title", "author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "hello, world", "author" : "loic_fontaine", "date" : "2012-08-21T08:37:08.676Z"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "date": {"type": "string"}}, "required": ["title", "author", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"camera blocks": {"type": "object", "properties": {"camxyz1": {"type": "object", "properties": {"camera type": {"type": "string"}, "look direction": {"type": "array", "items": {"type": "integer"}}}, "required": ["camera type", "look direction"]}}, "required": ["camxyz1"]}, "representation blocks": {"type": "object", "properties": {}, "required": []}, "imageset blocks": {"type": "object", "properties": {"is_test7a": {"type": "object", "properties": {"camera": {"type": "string"}, "image basedirectory": {"type": "string"}, "image basename": {"type": "string"}}, "required": ["camera", "image basedirectory", "image basename"]}, "is_test7b": {"type": "object", "properties": {"operation": {"type": "string"}, "camera": {"type": "string"}, "image basedirectory": {"type": "string"}, "image basename": {"type": "string"}}, "required": ["operation", "camera", "image basedirectory", "image basename"]}}, "required": ["is_test7a", "is_test7b"]}, "operation blocks": {"type": "object", "properties": {}, "required": []}, "text annotation blocks": {"type": "object", "properties": {}, "required": []}, "scatter plot blocks": {"type": "object", "properties": {}, "required": []}, "plot over time blocks": {"type": "object", "properties": {}, "required": []}, "experimental blocks": {"type": "object", "properties": {}, "required": []}, "onoff criteria blocks": {"type": "object", "properties": {}, "required": []}, "visual marker blocks": {"type": "object", "properties": {}, "required": []}}, "required": ["camera blocks", "representation blocks", "imageset blocks", "operation blocks", "text annotation blocks", "scatter plot blocks", "plot over time blocks", "experimental blocks", "onoff criteria blocks", "visual marker blocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"camera blocks" : {"camxyz1" : {"camera type" : "camera", "look direction" : [-1, -1, -1]}}, "representation blocks" : {}, "imageset blocks" : {"is_test7a" : {"camera" : "camxyz1", "image basedirectory" : "CatalystOutput_test7", "image basename" : "test7_inputA."}, "is_test7b" : {"operation" : "inputB", "camera" : "camxyz1", "image basedirectory" : "CatalystOutput_test7", "image basename" : "test7_inputB."}}, "operation blocks" : {}, "text annotation blocks" : {}, "scatter plot blocks" : {}, "plot over time blocks" : {}, "experimental blocks" : {}, "onoff criteria blocks" : {}, "visual marker blocks" : {}}
json_instruct
{"type": "object", "properties": {"camera blocks": {"type": "object", "properties": {"camxyz1": {"type": "object", "properties": {"camera type": {"type": "string"}, "look direction": {"type": "array", "items": {"type": "integer"}}}, "required": ["camera type", "look direction"]}}, "required": ["camxyz1"]}, "representation blocks": {"type": "object", "properties": {}, "required": []}, "imageset blocks": {"type": "object", "properties": {"is_test7a": {"type": "object", "properties": {"camera": {"type": "string"}, "image basedirectory": {"type": "string"}, "image basename": {"type": "string"}}, "required": ["camera", "image basedirectory", "image basename"]}, "is_test7b": {"type": "object", "properties": {"operation": {"type": "string"}, "camera": {"type": "string"}, "image basedirectory": {"type": "string"}, "image basename": {"type": "string"}}, "required": ["operation", "camera", "image basedirectory", "image basename"]}}, "required": ["is_test7a", "is_test7b"]}, "operation blocks": {"type": "object", "properties": {}, "required": []}, "text annotation blocks": {"type": "object", "properties": {}, "required": []}, "scatter plot blocks": {"type": "object", "properties": {}, "required": []}, "plot over time blocks": {"type": "object", "properties": {}, "required": []}, "experimental blocks": {"type": "object", "properties": {}, "required": []}, "onoff criteria blocks": {"type": "object", "properties": {}, "required": []}, "visual marker blocks": {"type": "object", "properties": {}, "required": []}}, "required": ["camera blocks", "representation blocks", "imageset blocks", "operation blocks", "text annotation blocks", "scatter plot blocks", "plot over time blocks", "experimental blocks", "onoff criteria blocks", "visual marker blocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["assess", "data-hopper", "hlg-angular-lazy-img", "mail-tram", "mini-mongo", "route-depot", "xrm.soap.sdk"]
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": {"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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.21965, 34.798768], [-117.208614, 34.803014], [-117.18977, 34.81916], [-117.1845, 34.82722], [-117.18027, 34.83026], [-117.18671, 34.8345], [-117.1921, 34.835577], [-117.19249, 34.842435], [-117.187504, 34.851248], [-117.174922, 34.860348], [-117.171555, 34.86108], [-117.16206, 34.869722], [-117.15797, 34.875064], [-117.154757, 34.87669], [-117.136378, 34.890561], [-117.120723, 34.897106], [-117.113518, 34.899139], [-117.100808, 34.898859], [-117.093334, 34.900265], [-117.093032, 34.894941], [-117.091118, 34.888384], [-117.092121, 34.886445], [-117.095472, 34.883709], [-117.09475, 34.88207], [-117.05748, 34.89157], [-117.05634, 34.88512], [-117.04756, 34.88616], [-117.04757, 34.885416], [-117.02983, 34.88591], [-117.02987, 34.87696], [-117.04753, 34.87735], [-117.04749, 34.86279], [-117.05623, 34.86292], [-117.055705, 34.854852], [-117.047786, 34.855013], [-117.031248, 34.860584], [-117.01702, 34.86054], [-117.01417, 34.85037], [-117.0147, 34.847], [-117.02024, 34.83854], [-117.02419, 34.83563], [-117.02575, 34.83085], [-117.02817, 34.82706], [-117.02923, 34.82368], [-117.028, 34.81937], [-117.03705, 34.81811], [-117.03857, 34.81696], [-117.0413, 34.81952], [-117.04139, 34.82089], [-117.04288, 34.82252], [-117.046832, 34.824202], [-117.082231, 34.814264], [-117.08266, 34.818045], [-117.08298, 34.81563], [-117.08432, 34.81336], [-117.08913, 34.8108], [-117.09562, 34.81148], [-117.09587, 34.81493], [-117.09737, 34.81044], [-117.100216, 34.806595], [-117.166407, 34.752971], [-117.173228, 34.756598], [-117.180902, 34.764177], [-117.198597, 34.776531], [-117.203627, 34.782004], [-117.21455, 34.788779], [-117.218809, 34.795204], [-117.21965, 34.798768]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 3637}}]}
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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}}, "required": ["cors", "express"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "description", "version", "private", "license", "author", "scripts", "main", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "app-service-hello-world", "description" : "Simple Hello World Node.js sample for Azure App Service", "version" : "0.0.1", "private" : true, "license" : "MIT", "author" : "Microsoft", "scripts" : {"start" : "node index.js"}, "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/DorsetCouncilDev/azure-test.git"}, "bugs" : {"url" : "https://github.com/DorsetCouncilDev/azure-test/issues"}, "homepage" : "https://github.com/DorsetCouncilDev/azure-test#readme", "dependencies" : {"cors" : "^2.8.5", "express" : "^4.16.4"}, "devDependencies" : {"nodemon" : "^1.18.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "express": {"type": "string"}}, "required": ["cors", "express"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "description", "version", "private", "license", "author", "scripts", "main", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"versionEnd" : {"versionNum" : 3656, "commit" : "eac9e86fc5c5e09247294753537f087e786647e2", "date" : "2021-09-17T10:09:04.731Z"}, "versionStart" : {"versionNum" : 3655, "commit" : "4ac1643a17e85c51364bd6a4b210d8c723d6afa5", "date" : "2021-09-17T01:29:39.404Z"}, "changes" : ["blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png"]}
json_instruct
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"period_id" : 1, "rest_mode_state" : 0, "score" : 73, "score_activity_balance" : 79, "score_hrv_balance" : 44, "score_previous_day" : 87, "score_previous_night" : 68, "score_recovery_index" : 100, "score_resting_hr" : 54, "score_sleep_balance" : 87, "score_temperature" : 100, "summary_date" : "2020-12-11"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-curl": {"type": "string"}, "psr/log": {"type": "string"}, "developersrede/erede-php": {"type": "string"}}, "required": ["php", "ext-curl", "psr/log", "developersrede/erede-php"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}}, "required": ["name", "description", "minimum-stability", "license", "require", "authors", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "developersrede/magento1", "description" : "Magento 1.x module", "minimum-stability" : "stable", "license" : "MIT", "require" : {"php" : ">=5.6", "ext-curl" : "*", "psr/log" : ">=1.0", "developersrede/erede-php" : "3.0.0"}, "authors" : [{"name" : "Jo\u00e3o Batista Neto", "email" : "[email protected]"}], "config" : {"vendor-dir" : "lib"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-curl": {"type": "string"}, "psr/log": {"type": "string"}, "developersrede/erede-php": {"type": "string"}}, "required": ["php", "ext-curl", "psr/log", "developersrede/erede-php"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}}, "required": ["name", "description", "minimum-stability", "license", "require", "authors", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "http://data.doremus.org/performance/37611f21-0074-35b5-84dc-d1f266091b5b", "expression" : [{"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/4f80e13a-9178-3732-8090-388b45c67aec"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/8f50276d-f67c-3266-a95d-c78758af393a"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/4ba7b258-e823-334c-a98e-f990e87fa482"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/4fa4e5c1-d417-3369-ac08-4f37d5c69ae3"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/14e02254-d4b1-3857-93c0-7e6f15ec896a"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/dc2c2330-2292-3f93-9542-c647eeaf4e6f"}, {"composer" : "http://data.doremus.org/artist/1d6e7231-f178-322c-aecc-3b3a8d80e8aa", "id" : "http://data.doremus.org/expression/bac50904-68a0-30fc-9a8a-992f8d2aa1c9"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Ta^enek~ `kako~ `a~ `maro'~.\ufffa\ufffb\u6211\u5750\u5f97\u4e0d\u8212\u670d\u3002", "\ufff9`Ta^enek~ `ko~ `kakeli~.\ufffa\ufffb\u7af9\u84c6\u51f9\u51f8\u4e0d\u5e73\u7761\u8d77\u4f86\u4e0d\u8212\u670d\u3002"], "f" : "\u6709\u5c0f\u6771\u897f\u588a\u4f4f\uff0c\u4e0d\u5e73\u5766\uff0c\u4e45\u7ad9\u3001\u4e45\u5750\u800c\u6709\u4e0d\u8212\u670d\u611f\uff0c\u5361\u8173\uff0c\u5361\u5c41\u80a1\u3002"}]}], "t" : "ta^enek"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"localized_object_annotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "name": {"type": "string"}, "score": {"type": "number"}, "bounding_poly": {"type": "object", "properties": {"normalized_vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["normalized_vertices"]}}, "required": ["mid", "name", "score", "bounding_poly"]}}}, "required": ["localized_object_annotations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localized_object_annotations" : [{"mid" : "/m/0d4v4", "name" : "Window", "score" : 0.7743085, "bounding_poly" : {"normalized_vertices" : [{"x" : 0.16410162, "y" : 0.2704452}, {"x" : 0.39756855, "y" : 0.2704452}, {"x" : 0.39756855, "y" : 0.46981037}, {"x" : 0.16410162, "y" : 0.46981037}]}}, {"mid" : "/m/0d4v4", "name" : "Window", "score" : 0.6836981, "bounding_poly" : {"normalized_vertices" : [{"x" : 0.16833365, "y" : 0.4780996}, {"x" : 0.39919576, "y" : 0.4780996}, {"x" : 0.39919576, "y" : 0.6619395}, {"x" : 0.16833365, "y" : 0.6619395}]}}]}
json_instruct
{"type": "object", "properties": {"localized_object_annotations": {"type": "array", "items": {"type": "object", "properties": {"mid": {"type": "string"}, "name": {"type": "string"}, "score": {"type": "number"}, "bounding_poly": {"type": "object", "properties": {"normalized_vertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}}, "required": ["normalized_vertices"]}}, "required": ["mid", "name", "score", "bounding_poly"]}}}, "required": ["localized_object_annotations"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Benefits of matching domain structure for planning software: the right stuff.", "fields" : ["feature oriented domain analysis", "domain", "needs analysis", "domain analysis", "domain engineering"], "abstract" : "We investigated the role of domain structure, in designing for software usefulness and usability. We ran through the whole application development cycle, in miniature, from needs analysis through design, implementation, and evaluation, for planning needs of one NASA Mission Control group. Based on our needs analysis, we developed prototype software that matched domain structure better than did the legacy system. We compared our new prototype to the legacy application in a laboratory, high-fidelity analog of the natural planning work. We found large performance differences favoring the prototype, which better captured domain structure. Our research illustrates the importance of needs analysis (particularly Domain Structure Analysis), and the viability of the design process that we are exploring.", "citation" : "Citations (13)", "year" : "2011", "departments" : ["Ames Research Center", "Ames Research Center", "Ames Research Center", "Ames Research Center", "Ames Research Center"], "conf" : "chi", "authors" : ["Dorrit Billman.....http://dblp.org/pers/hd/b/Billman:Dorrit", "Lucia Arsintescucu.....http://dblp.org/pers/hd/a/Arsintescucu:Lucia", "Michael Feary.....http://dblp.org/pers/hd/f/Feary:Michael", "Jessica Lee.....http://dblp.org/pers/hd/l/Lee:Jessica", "Asha Smith.....http://dblp.org/pers/hd/s/Smith:Asha", "Rachna Tiwary.....http://dblp.org/pers/hd/t/Tiwary:Rachna"], "pages" : 10}
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": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"defaultSchemaName": {"type": "string"}}, "required": ["defaultSchemaName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"defaultSchemaName" : ""}
json_instruct
{"type": "object", "properties": {"defaultSchemaName": {"type": "string"}}, "required": ["defaultSchemaName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 441102347, "name" : "\ub2e4\ub140\uac00\uc694", "dt" : 209110, "ar" : {"id" : 12187042, "name" : "\u8d24\u771f"}, "al" : {"id" : 34923746, "name" : "HyunJin", "picUrl" : "https://p1.music.126.net/5iq0vbe8Qf8pzOvrIYiPGA==/109951164354620212.jpg"}}, {"id" : 446874734, "name" : "The Carol", "dt" : 206432, "ar" : {"id" : 12131402, "name" : "\u59ec\u632f"}, "al" : {"id" : 35052149, "name" : "HaSeul", "picUrl" : "https://p2.music.126.net/7zMKqSy4D3njvR-d6KRUvA==/109951164354620226.jpg"}}, {"id" : 441102346, "name" : "I'll Be There", "dt" : 188558, "ar" : {"id" : 12131402, "name" : "\u59ec\u632f"}, "al" : {"id" : 34923746, "name" : "HyunJin", "picUrl" : "https://p1.music.126.net/5iq0vbe8Qf8pzOvrIYiPGA==/109951164354620212.jpg"}}, {"id" : 453463576, "name" : "My Sunday", "dt" : 182713, "ar" : {"id" : 12131402, "name" : "\u59ec\u632f"}, "al" : {"id" : 35124423, "name" : "YeoJin", "picUrl" : "https://p1.music.126.net/RlRBBKDA71KewCt8Cdz3Hg==/109951164354619405.jpg"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "dt": {"type": "integer"}, "ar": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "al": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "picUrl": {"type": "string"}}, "required": ["id", "name", "picUrl"]}}, "required": ["id", "name", "dt", "ar", "al"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"deprecated" : "false", "authority-code" : "LDD", "identifier" : "LDD", "about" : "http://publications.europa.eu/resource/authority/language/LDD", "prefLabel" : {"@lang" : "ldd", "#text" : "luri"}, "start.use" : "1950-05-09"}
json_instruct
{"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "deploy"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@egjs/axes": {"type": "string"}, "csv-reader": {"type": "string"}, "papaparse": {"type": "string"}, "three": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@egjs/axes", "csv-reader", "papaparse", "three", "webpack"]}, "devDependencies": {"type": "object", "properties": {"@types/papaparse": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "gh-pages": {"type": "string"}, "raw-loader": {"type": "string"}, "shader-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-shader-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-consistent-codestyle": {"type": "string"}, "tslint-eslint-rules": {"type": "string"}, "typescript": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/papaparse", "extract-text-webpack-plugin", "gh-pages", "raw-loader", "shader-loader", "ts-loader", "ts-shader-loader", "tslint", "tslint-consistent-codestyle", "tslint-eslint-rules", "typescript", "webpack-cli", "webpack-dev-server"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "author", "license", "description", "main", "scripts", "repository", "dependencies", "devDependencies", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "three-pixelate-showcase", "version" : "1.0.0", "author" : "WoodNeck", "license" : "MIT", "description" : "", "main" : "webpack.config.js", "scripts" : {"dev" : "webpack-dev-server", "build" : "webpack", "deploy" : "npm run build && gh-pages -d web/"}, "repository" : {"type" : "git", "url" : "git+https://github.com/WoodNeck/three-pixelate-showcase.git"}, "dependencies" : {"@egjs/axes" : "^2.6.0", "csv-reader" : "^1.0.3", "papaparse" : "^5.1.1", "three" : "^0.112.1", "webpack" : "4.33.0"}, "devDependencies" : {"@types/papaparse" : "^5.0.3", "extract-text-webpack-plugin" : "3.0.2", "gh-pages" : "2.0.1", "raw-loader" : "^4.0.0", "shader-loader" : "1.3.1", "ts-loader" : "6.0.2", "ts-shader-loader" : "1.0.5", "tslint" : "^5.15.0", "tslint-consistent-codestyle" : "^1.15.1", "tslint-eslint-rules" : "^5.4.0", "typescript" : "3.5.1", "webpack-cli" : "3.3.3", "webpack-dev-server" : "3.7.1"}, "homepage" : "https://github.com/WoodNeck/three-pixelate-showcase#readme", "bugs" : {"url" : "https://github.com/WoodNeck/three-pixelate-showcase/issues"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "deploy"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@egjs/axes": {"type": "string"}, "csv-reader": {"type": "string"}, "papaparse": {"type": "string"}, "three": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@egjs/axes", "csv-reader", "papaparse", "three", "webpack"]}, "devDependencies": {"type": "object", "properties": {"@types/papaparse": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "gh-pages": {"type": "string"}, "raw-loader": {"type": "string"}, "shader-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-shader-loader": {"type": "string"}, "tslint": {"type": "string"}, "tslint-consistent-codestyle": {"type": "string"}, "tslint-eslint-rules": {"type": "string"}, "typescript": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/papaparse", "extract-text-webpack-plugin", "gh-pages", "raw-loader", "shader-loader", "ts-loader", "ts-shader-loader", "tslint", "tslint-consistent-codestyle", "tslint-eslint-rules", "typescript", "webpack-cli", "webpack-dev-server"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["name", "version", "author", "license", "description", "main", "scripts", "repository", "dependencies", "devDependencies", "homepage", "bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "74580133", "name" : "Honeysuckle yellow vein virus", "abbreviation" : "HYVV", "schema" : []}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[140.75, 39.083333333333336], [140.75, 39.166666666666664], [140.875, 39.166666666666664], [140.875, 39.083333333333336], [140.75, 39.083333333333336]]]}, "properties" : {"code" : 584056, "url" : "http://madefor.github.io/0410/api/v1/584056.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/584056.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"shell_port": {"type": "integer"}, "iopub_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "control_port": {"type": "integer"}, "hb_port": {"type": "integer"}, "ip": {"type": "string"}, "key": {"type": "string"}, "transport": {"type": "string"}, "signature_scheme": {"type": "string"}, "kernel_name": {"type": "string"}}, "required": ["shell_port", "iopub_port", "stdin_port", "control_port", "hb_port", "ip", "key", "transport", "signature_scheme", "kernel_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"shell_port" : 62861, "iopub_port" : 62862, "stdin_port" : 62863, "control_port" : 62864, "hb_port" : 62865, "ip" : "127.0.0.1", "key" : "38b8635b-820e690336bb8c0c5b6f50a8", "transport" : "tcp", "signature_scheme" : "hmac-sha256", "kernel_name" : ""}
json_instruct
{"type": "object", "properties": {"shell_port": {"type": "integer"}, "iopub_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "control_port": {"type": "integer"}, "hb_port": {"type": "integer"}, "ip": {"type": "string"}, "key": {"type": "string"}, "transport": {"type": "string"}, "signature_scheme": {"type": "string"}, "kernel_name": {"type": "string"}}, "required": ["shell_port", "iopub_port", "stdin_port", "control_port", "hb_port", "ip", "key", "transport", "signature_scheme", "kernel_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=egg": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=small": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=large": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=egg", "type=small", "type=large"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"type=egg" : {"model" : "conquest:block/blue_painted_wall_sphere_dragonegg"}, "type=small" : {"model" : "conquest:block/blue_painted_wall_sphere_small"}, "type=large" : {"model" : "conquest:block/blue_painted_wall_sphere"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=egg": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=small": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=large": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=egg", "type=small", "type=large"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["is-int"]
json_instruct
{"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": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "translation", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://www.spanishdict.com/conjugate/desatarse", "word" : "desatarse", "infinitivo" : "desatar", "translation" : "to come undone", "gerundio" : ["desatando"], "participio" : ["desatado"], "tenses" : {"3" : [["me desato"], ["te desatas"], ["se desata"], ["nos desatamos"], ["os desat\u00e1is"], ["se desatan"]], "4" : [["me desat\u00e9"], ["te desataste"], ["se desat\u00f3"], ["nos desatamos"], ["os desatasteis"], ["se desataron"]], "5" : [["me desataba"], ["te desatabas"], ["se desataba"], ["nos desat\u00e1bamos"], ["os desatabais"], ["se desataban"]], "6" : [["me desatar\u00eda"], ["te desatar\u00edas"], ["se desatar\u00eda"], ["nos desatar\u00edamos"], ["os desatar\u00edais"], ["se desatar\u00edan"]], "7" : [["me desatar\u00e9"], ["te desatar\u00e1s"], ["se desatar\u00e1"], ["nos desataremos"], ["os desatar\u00e9is"], ["se desatar\u00e1n"]], "8" : [["me desate"], ["te desates"], ["se desate"], ["nos desatemos"], ["os desat\u00e9is"], ["se desaten"]], "9" : [["me desatara"], ["te desataras"], ["se desatara"], ["nos desat\u00e1ramos"], ["os desatarais"], ["se desataran"]], "10" : [["me desatase"], ["te desatases"], ["se desatase"], ["nos desat\u00e1semos"], ["os desataseis"], ["se desatasen"]], "11" : [["me desatare"], ["te desatares"], ["se desatare"], ["nos desat\u00e1remos"], ["os desatareis"], ["se desataren"]], "12" : {"1" : ["desata"], "2" : ["desate"], "3" : ["desatemos"], "4" : ["desatad"], "5" : ["desaten"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "translation": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "translation", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[127.125, 45.416666666666664], [127.125, 45.5], [127.25, 45.5], [127.25, 45.416666666666664], [127.125, 45.416666666666664]]]}, "properties" : {"code" : 682711, "url" : "http://madefor.github.io/0410/api/v1/682711.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/682711.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"main": {"type": "object", "properties": {"Alias": {"type": "string"}, "Name": {"type": "string"}, "Channels": {"type": "array", "items": {"type": "string"}}}, "required": ["Alias", "Name", "Channels"]}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : {"Alias" : "main", "Name" : "main", "Channels" : ["\u041f\u0435\u0440\u0432\u044b\u0439 \u043a\u0430\u043d\u0430\u043b", "\u0421\u0422\u0421", "\u0421\u0422\u0421 Love", "\u0422\u041d\u0422", "\u041f\u044f\u0442\u043d\u0438\u0446\u0430", "\u0421\u0443\u043f\u0435\u0440", "LIFE78", "\u0421\u0430\u043d\u043a\u0442 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433", "\u0427\u0435", "Paramount Comedy", "Discovery Channel", "National Geographic", "Nat Geo Wild", "Animal Planet", "Russian Extreme", "\u041d\u0430\u0443\u043a\u0430 2.0", "\u042d\u0432\u0440\u0438\u043a\u0430", "\u0422\u0435\u0445\u043d\u043e 24", "\u0418\u0441\u0442\u043e\u0440\u0438\u044f", "\u041c\u043e\u044f \u041f\u043b\u0430\u043d\u0435\u0442\u0430", "\u0420\u0443\u0441\u0441\u043a\u0438\u0439 \u044d\u043a\u0441\u0442\u0440\u0438\u043c", "\u0420\u0443\u0441\u0441\u043a\u0438\u0439 \u044d\u043a\u0441\u0442\u0440\u0438\u043c \u0440\u0435\u0442\u0440\u043e", "\u0420\u0411\u041a", "\u041c\u0430\u0442\u0447!", "\u041c\u0430\u0442\u0447! \u043d\u0430\u0448 \u0441\u043f\u043e\u0440\u0442", "\u041c\u0430\u0442\u0447! \u0430\u0440\u0435\u043d\u0430", "\u041c\u0430\u0442\u0447! \u0431\u043e\u0435\u0446", "\u0420\u043e\u0441\u0441\u0438\u044f 1", "\u0420\u043e\u0441\u0441\u0438\u044f \u041a", "\u0420\u043e\u0441\u0441\u0438\u044f 24", "\u0420\u0435\u043d \u0422\u0412", "\u041d\u0422\u0412", "\u0422\u04123", "\u0417\u0432\u0435\u0437\u0434\u0430", "\u041c\u0418\u0420", "\u041c\u0418\u0420 24", "\u041d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f", "\u0414\u043e\u043c \u041a\u0438\u043d\u043e \u041f\u0440\u0435\u043c\u0438\u0443\u043c HD", "\u041a\u0438\u043d\u043e\u043c\u0435\u043d\u044e HD", "\u0422\u043e\u0447\u043a\u0430 \u0422\u0412", "\u0422\u041d\u0422 Music", "Russian Musicbox", "RU TV", "", "1", "\u041c\u0423\u0417 \u0422\u0412"]}}
json_instruct
{"type": "object", "properties": {"main": {"type": "object", "properties": {"Alias": {"type": "string"}, "Name": {"type": "string"}, "Channels": {"type": "array", "items": {"type": "string"}}}, "required": ["Alias", "Name", "Channels"]}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [630.715, 180.648, 1, 649.378, 225.94, 1, 631.49, 226.237, 1, 627.462, 288.829, 1, 624.168, 344.772, 1, 668.74, 222.449, 1, 681.157, 294.324, 1, 674.916, 359.227, 1, 631.483, 341.22, 1, 643.91, 434.552, 1, 658.54, 509.035, 1, 655.362, 344.623, 1, 659.279, 443.482, 1, 708.997, 480.409, 1, 628.75, 174.45, 1, 644.768, 177.476, 1, 652.882, 187.004, 0, 659.559, 178.615, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Id": {"type": "string"}, "CountryId": {"type": "string"}, "Name": {"type": "string"}, "Code": {"type": "string"}}, "required": ["Id", "CountryId", "Name", "Code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "043a0d4a-f1f5-430d-906d-ebd3d219485f", "CountryId" : "1fcc4a89-0e8f-4fa2-b8d0-4ff5ec2277df", "Name" : "Humberside, England", "Code" : "HUM"}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "CountryId": {"type": "string"}, "Name": {"type": "string"}, "Code": {"type": "string"}}, "required": ["Id", "CountryId", "Name", "Code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"js/jquery.endless-scroll.js": {"type": "string"}, "js/jquery.endless-scroll.min.js": {"type": "string"}}, "required": ["js/jquery.endless-scroll.js", "js/jquery.endless-scroll.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"js/jquery.endless-scroll.js" : "sha256-Fy3xIXiTCCbDhp+JmRuRL1DXh7lizMKu6JN14AGp2Bw=", "js/jquery.endless-scroll.min.js" : "sha256-PLKx14dU2d7dN3Df15hsxqfHalkFkvYsgFBc97QOTQE="}
json_instruct
{"type": "object", "properties": {"js/jquery.endless-scroll.js": {"type": "string"}, "js/jquery.endless-scroll.min.js": {"type": "string"}}, "required": ["js/jquery.endless-scroll.js", "js/jquery.endless-scroll.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "ignify", "definition" : "To form into fire. [R.] Stukeley."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}, "files": {"type": "object", "properties": {"200": {"type": "string"}, "300": {"type": "string"}, "500": {"type": "string"}, "600": {"type": "string"}, "700": {"type": "string"}, "900": {"type": "string"}, "200italic": {"type": "string"}, "300italic": {"type": "string"}, "regular": {"type": "string"}, "italic": {"type": "string"}, "500italic": {"type": "string"}, "600italic": {"type": "string"}, "700italic": {"type": "string"}, "900italic": {"type": "string"}}, "required": ["200", "300", "500", "600", "700", "900", "200italic", "300italic", "regular", "italic", "500italic", "600italic", "700italic", "900italic"]}, "category": {"type": "string"}, "kind": {"type": "string"}}, "required": ["family", "variants", "subsets", "version", "lastModified", "files", "category", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"family" : "Source Code Pro", "variants" : ["200", "200italic", "300", "300italic", "regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic", "900", "900italic"], "subsets" : ["cyrillic", "cyrillic-ext", "greek", "latin", "latin-ext", "vietnamese"], "version" : "v14", "lastModified" : "2021-03-24", "files" : {"200" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf", "300" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf", "500" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf", "600" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf", "700" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf", "900" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf", "200italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMbtecv7Gy0DRzS.ttf", "300italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONN_tucv7Gy0DRzS.ttf", "regular" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf", "italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_QiYsKILxRpg3hIP6sJ7fM7PqlOOvTnsMnx3C9.ttf", "500italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMnt-cv7Gy0DRzS.ttf", "600italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMLsOcv7Gy0DRzS.ttf", "700italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNvsecv7Gy0DRzS.ttf", "900italic" : "http://fonts.gstatic.com/s/sourcecodepro/v14/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNXs-cv7Gy0DRzS.ttf"}, "category" : "monospace", "kind" : "webfonts#webfont"}
json_instruct
{"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}, "files": {"type": "object", "properties": {"200": {"type": "string"}, "300": {"type": "string"}, "500": {"type": "string"}, "600": {"type": "string"}, "700": {"type": "string"}, "900": {"type": "string"}, "200italic": {"type": "string"}, "300italic": {"type": "string"}, "regular": {"type": "string"}, "italic": {"type": "string"}, "500italic": {"type": "string"}, "600italic": {"type": "string"}, "700italic": {"type": "string"}, "900italic": {"type": "string"}}, "required": ["200", "300", "500", "600", "700", "900", "200italic", "300italic", "regular", "italic", "500italic", "600italic", "700italic", "900italic"]}, "category": {"type": "string"}, "kind": {"type": "string"}}, "required": ["family", "variants", "subsets", "version", "lastModified", "files", "category", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "btl"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"source": {"type": "string"}, "data": {"type": "array", "items": {}}}, "required": ["source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "mockoon:1.17.0", "data" : []}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "data": {"type": "array", "items": {}}}, "required": ["source", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[134.625, 39.583333333333336], [134.625, 39.666666666666664], [134.75, 39.666666666666664], [134.75, 39.583333333333336], [134.625, 39.583333333333336]]]}, "properties" : {"code" : 593435, "url" : "http://madefor.github.io/0410/api/v1/593435.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/593435.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack:production": {"type": "string"}, "webpack:analyze": {"type": "string"}, "server": {"type": "string"}, "analyze": {"type": "string"}, "test": {"type": "string"}}, "required": ["webpack", "webpack:production", "webpack:analyze", "server", "analyze", "test"]}, "devDependencies": {"type": "object", "properties": {"html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-bundle-analyzer": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["html-webpack-plugin", "webpack", "webpack-bundle-analyzer", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"dompurify": {"type": "string"}, "marked": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["dompurify", "marked", "react", "react-dom"]}}, "required": ["name", "version", "author", "license", "keywords", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jsoo-react-realworld-example-app", "version" : "1.0.0", "author" : "Javier Ch\u00e1varri", "license" : "MIT", "keywords" : ["OCaml", "js_of_ocaml", "react", "jsoo-react"], "scripts" : {"webpack" : "webpack -w", "webpack:production" : "webpack --mode=production", "webpack:analyze" : "ANALYZE=true webpack --mode=production", "server" : "webpack-dev-server", "analyze" : "webpack --mode=production --profile --json > stats.json && webpack-bundle-analyzer stats.json", "test" : "echo \"Error: no test specified\" && exit 1"}, "devDependencies" : {"html-webpack-plugin" : "^3.2.0", "webpack" : "^4.44.2", "webpack-bundle-analyzer" : "^4.5.0", "webpack-cli" : "^3.3.12", "webpack-dev-server" : "^3.11.0"}, "dependencies" : {"dompurify" : "^2.3.4", "marked" : "^4.0.7", "react" : "^16.13.1", "react-dom" : "^16.13.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack:production": {"type": "string"}, "webpack:analyze": {"type": "string"}, "server": {"type": "string"}, "analyze": {"type": "string"}, "test": {"type": "string"}}, "required": ["webpack", "webpack:production", "webpack:analyze", "server", "analyze", "test"]}, "devDependencies": {"type": "object", "properties": {"html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-bundle-analyzer": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["html-webpack-plugin", "webpack", "webpack-bundle-analyzer", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"dompurify": {"type": "string"}, "marked": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["dompurify", "marked", "react", "react-dom"]}}, "required": ["name", "version", "author", "license", "keywords", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "3321060001", "nama" : "MORODEMAK"}, {"id" : "3321060002", "nama" : "MARGOLINDUK"}, {"id" : "3321060003", "nama" : "GEBANG"}, {"id" : "3321060004", "nama" : "GEBANGARUM"}, {"id" : "3321060005", "nama" : "KARANGREJO"}, {"id" : "3321060006", "nama" : "TLOGOBOYO"}, {"id" : "3321060007", "nama" : "KRAJANBOGO"}, {"id" : "3321060008", "nama" : "KEMBANGAN"}, {"id" : "3321060009", "nama" : "SUMBEREJO"}, {"id" : "3321060010", "nama" : "SUKODONO"}, {"id" : "3321060011", "nama" : "JATIMULYO"}, {"id" : "3321060012", "nama" : "BONANGREJO"}, {"id" : "3321060013", "nama" : "JATIROGO"}, {"id" : "3321060014", "nama" : "TRIDONOREJO"}, {"id" : "3321060015", "nama" : "PURWOREJO"}, {"id" : "3321060016", "nama" : "BETAHWALANG"}, {"id" : "3321060017", "nama" : "SERANGAN"}, {"id" : "3321060018", "nama" : "PONCOHARJO"}, {"id" : "3321060019", "nama" : "WONOSARI"}, {"id" : "3321060020", "nama" : "JALI"}, {"id" : "3321060021", "nama" : "WEDING"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05", "tool" : "osiris", "start" : 1564618203.917892, "end" : 1564618266.0149934, "duration" : 62.09710144996643, "analysis" : [{"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "BasicToken"}, {"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "MintableAndBurnableToken"}, {"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "Ownable"}, {"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "QuasacoinCodeToken"}, {"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/36/0xa3d3bf5f650a47f53bc49f512761d4de15bc0e05.sol", "name" : "StandardToken"}]}
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": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "6c26b528c66f7c9d0ceb", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var __jsx = React.createElement;\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nimport React from 'react';\nimport clsx from 'clsx';\nimport { makeStyles } from \"../../../../packages/material-ui/src/styles\";\nimport Container from \"../../../../packages/material-ui/src/Container\";\nconst useStyles = makeStyles(theme => ({\n root: {\n paddingTop: 80 + 16,\n [theme.breakpoints.up('lg')]: {\n paddingLeft: theme.spacing(6),\n paddingRight: theme.spacing(6)\n }\n }\n}));\nexport default function AppContainer(props) {\n const {\n className\n } = props,\n other = _objectWithoutProperties(props, [\"className\"]);\n\n const classes = useStyles();\n return __jsx(Container, _extends({\n component: \"main\",\n id: \"main-content\",\n maxWidth: \"md\",\n tabIndex: -1,\n className: clsx(classes.root, className)\n }, other));\n}", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}